Raised This Month: $ Target: $400
 0% 

i cant see new models


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
Tristanaa1
New Member
Join Date: Jul 2019
Old 07-21-2019 , 10:10   i cant see new models
Reply With Quote #1

Hey, i have a little problem? eh.. i cant see new models on server...

here is code:
Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>

public plugin_init() {
    register_plugin("Models", "1.0", "u")
    register_event("ResetHUD", "resetModel", "b")
    return PLUGIN_CONTINUE
}

public plugin_precache() {
    precache_model("models/player/bb_admin_i/bb_admin_i.mdl")
    precache_model("models/player/bb_vip_i/bb_vip_i.mdl")

    return PLUGIN_CONTINUE
}

public resetModel(id, level, cid) {
        if (get_user_flags(id) & ADMIN_LEVEL_G) 
        {
                new CsTeams:userTeam = cs_get_user_team(id)

                if(userTeam == CS_TEAM_CT) 
                {
                        cs_set_user_model(id, "bb_vip_i")
                }
                else 
                {
                      cs_reset_user_model(id)
                }
        }
        if (get_user_flags(id) & ADMIN_LEVEL_F) 
        {
                new CsTeams:userTeam = cs_get_user_team(id)

                if(userTeam == CS_TEAM_CT) 
                {
                        cs_set_user_model(id, "bb_admin_i")
                }
                else 
                {
                        cs_reset_user_model(id)
                }
        }


        return PLUGIN_CONTINUE
}
Yes, i have "cl_minmodels 0"
Someone can help? Thanks..
Tristanaa1 is offline
 



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 17:19.


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