Raised This Month: $ Target: $400
 0% 

[HELP] Player Models


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
DruGzOG
Veteran Member
Join Date: Nov 2007
Location: Unknown
Old 11-01-2008 , 16:12   [HELP] Player Models
Reply With Quote #1

I want to make this only for the CT, and for all players, can someone help me with this?


Code:
 
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
public plugin_init() {
        register_plugin("AvP Models", "1.2.0", "whitemike")
        register_event("ResetHUD", "resetModel", "b")
        return PLUGIN_CONTINUE
}
public plugin_precache() {
        precache_model("models/player/NGPred/NGPred.mdl")
        precache_model("models/player/admin_te/admin_te.mdl")
        return PLUGIN_CONTINUE
}
public resetModel(id, level, cid) {
        if (get_user_flags(id) & ADMIN_KICK) {
                new CsTeams:userTeam = cs_get_user_team(id)
                if (userTeam == CS_TEAM_T) {
                        cs_set_user_model(id, "NGPred")
                }
                else if(userTeam == CS_TEAM_CT) {
                        cs_set_user_model(id, "NGPred")
                }
                else {
                        cs_reset_user_model(id)
                }
        }
        return PLUGIN_CONTINUE
}
I want to make this only for the CT, and for all players, can someone help me with this?
__________________
DruGzOG is offline
Send a message via AIM to DruGzOG
 



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 12:08.


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