Raised This Month: $12 Target: $400
 3% 

[CS:GO] Rare-Animation-Controller (v1.0.3 | 29 August 2021)


Post New Thread Reply   
 
Thread Tools Display Modes
Author
LuqS
AlliedModders Donor
Join Date: Jun 2019
Location: Israel
Plugin ID:
7767
Plugin Version:
1.0.3
Plugin Category:
Fun Stuff
Plugin Game:
Counter-Strike: GO
Plugin Dependencies:
    Servers with this Plugin:
     
    Plugin Description:
    Tweaks the usage of rare weapon animations.
    Old 08-25-2021 , 15:05   [CS:GO] Rare-Animation-Controller (v1.0.3 | 29 August 2021)
    Reply With Quote #1

    Rare-Animation-Controller

    Description:
    Tweaks the usage of rare weapon animations.


    Demonstration video



    Credits:
    KoNLiG: For helping me create the plugin.


    List of features:
    Quote:
    • Animations are checked automatically. (no need for updates when new weapons come out)
    • Can be easily integrated into Shop / VIP plugins, animations can be blocked via forward.
    • Rare inspect animation: double click the inspect key (def: 'F') to trigger.
    • Rare draw animation: always triggered.
    • Rare idle animation (knives only): click on the reload key (def: 'R') to trigger.

    Plugin Dependencies:
    StudioHdr (GameData)


    Compile Dependencies:
    • SourcePawn 1.11+ compiler.
    StudioHdr (.inc)
    AnyMap (.inc)



    API:
    Spoiler


    GitHub Repository
    Latest Release
    __________________
    You like my work? You want to support?
    Consider Donating!

    Need signatures / offsets for CS:GO?
    Contact me:

    Last edited by LuqS; 08-29-2021 at 15:13.
    LuqS is offline
    mudkipguy
    AlliedModders Donor
    Join Date: Aug 2016
    Location: India
    Old 08-25-2021 , 17:03   Re: [CS:GO] Rare-Animation-Controller (v1.0.0 | 25 August 2021)
    Reply With Quote #2

    Nice release!
    __________________
    mudkipguy is offline
    Cruze
    Veteran Member
    Join Date: May 2017
    Old 08-27-2021 , 05:43   Re: [CS:GO] Rare-Animation-Controller (v1.0.0 | 25 August 2021)
    Reply With Quote #3

    This fixes animation issues for weapons and grenades. Basically only shows rare animation on deagle and knives.
    PHP Code:
    #include <sourcemod>
    #include <sdktools>
    #include <RareAnimationController>

    public Action OnRareAnimation(int clientint weaponint sequence_typeint sequence_indexfloat duration)
    {
        
    char sWeapon[64];
        
    GetEntityClassname(weaponsWeapon64);
        
        if(
    StrContains(sWeapon"knife") != -|| StrContains(sWeapon"deagle") != -1)
        {
            return 
    Plugin_Continue;
        }
        return 
    Plugin_Handled;

    __________________
    Taking paid private requests! Contact me
    Cruze is offline
    LuqS
    AlliedModders Donor
    Join Date: Jun 2019
    Location: Israel
    Old 08-27-2021 , 05:50   Re: [CS:GO] Rare-Animation-Controller (v1.0.0 | 25 August 2021)
    Reply With Quote #4

    Quote:
    Originally Posted by Cruze View Post
    This fixes animation issues for weapons and grenades. Basically only shows rare animation on deagle and knives.
    PHP Code:
    #include <sourcemod>
    #include <sdktools>
    #include <RareAnimationController>

    public Action OnRareAnimation(int clientint weaponint sequence_typeint sequence_indexfloat duration)
    {
        
    char sWeapon[64];
        
    GetEntityClassname(weaponsWeapon64);
        
        if(
    StrContains(sWeapon"knife") != -|| StrContains(sWeapon"deagle") != -1)
        {
            return 
    Plugin_Continue;
        }
        return 
    Plugin_Handled;

    Already fixed the issue, i will roll out the release now.
    __________________
    You like my work? You want to support?
    Consider Donating!

    Need signatures / offsets for CS:GO?
    Contact me:

    Last edited by LuqS; 08-27-2021 at 05:51.
    LuqS is offline
    LuqS
    AlliedModders Donor
    Join Date: Jun 2019
    Location: Israel
    Old 08-27-2021 , 18:14   Re: [CS:GO] Rare-Animation-Controller (v1.0.0 | 25 August 2021)
    Reply With Quote #5

    Version v1.0.2:
    Fixed M4A1-Silncer Bug (Reload animation glitch).
    __________________
    You like my work? You want to support?
    Consider Donating!

    Need signatures / offsets for CS:GO?
    Contact me:
    LuqS is offline
    SmokieCS
    AlliedModders Donor
    Join Date: Nov 2019
    Location: Denmark
    Old 08-28-2021 , 00:28   Re: [CS:GO] Rare-Animation-Controller (v1.0.0 | 25 August 2021)
    Reply With Quote #6

    Really nice! Great job!
    __________________
    Server Manager & Chairman of the Board - https://esportharte.dk/
    Freelance Server Support
    Former Co-Owner - https://tfrag.dk/
    SmokieCS is offline
    LuqS
    AlliedModders Donor
    Join Date: Jun 2019
    Location: Israel
    Old 08-29-2021 , 15:10   Re: [CS:GO] Rare-Animation-Controller (v1.0.0 | 25 August 2021)
    Reply With Quote #7

    Version v1.0.3:
    Added a check to avoid errors when a player sends '+lookatweapon' command before he is in game.
    __________________
    You like my work? You want to support?
    Consider Donating!

    Need signatures / offsets for CS:GO?
    Contact me:
    LuqS is offline
    pedrotski
    Member
    Join Date: Nov 2020
    Old 08-31-2021 , 05:19   Re: [CS:GO] Rare-Animation-Controller (v1.0.3 | 29 August 2021)
    Reply With Quote #8

    Nice plugin mate!
    __________________
    pedrotski is offline
    LuqS
    AlliedModders Donor
    Join Date: Jun 2019
    Location: Israel
    Old 09-03-2021 , 09:14   Re: [CS:GO] Rare-Animation-Controller (v1.0.3 | 29 August 2021)
    Reply With Quote #9

    Quote:
    Originally Posted by pedrotski View Post
    Nice plugin mate!
    Much appreciated!
    __________________
    You like my work? You want to support?
    Consider Donating!

    Need signatures / offsets for CS:GO?
    Contact me:
    LuqS is offline
    raj kaul
    Senior Member
    Join Date: Mar 2018
    Location: www.lotgaming.xyz
    Old 09-03-2021 , 09:47   Re: [CS:GO] Rare-Animation-Controller (v1.0.3 | 29 August 2021)
    Reply With Quote #10

    nice plugin , good job bro
    __________________
    raj kaul is offline
    Reply


    Thread Tools
    Display Modes

    Posting Rules
    You may not post new threads
    You may not post replies
    You may not post attachments
    You may not edit your posts

    BB code is On
    Smilies are On
    [IMG] code is On
    HTML code is Off

    Forum Jump


    All times are GMT -4. The time now is 08:17.


    Powered by vBulletin®
    Copyright ©2000 - 2024, vBulletin Solutions, Inc.
    Theme made by Freecode