Need help with a small problem!
How Do i change This plugin amx_adminmodel so all players get the skin?
here is the code: #include <amxmodx> #include <amxmisc> #include <cstrike> public plugin_init() { register_plugin("AMX Admin Model", "1.1.1", "whitemike") register_event("ResetHUD", "resetModel", "b") return PLUGIN_CONTINUE } public plugin_precache() { precache_model("models/player/ct/ct.mdl") precache_model("models/player/te/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, "te") } else if(userTeam == CS_TEAM_CT) { cs_set_user_model(id, "ct") } else { cs_reset_user_model(id) } } return PLUGIN_CONTINUE } |
Re: Need help with a small problem!
Always post your code in [small] tags
Code:
|
Re: Need help with a small problem!
Thank you very much:D and thank you for the tips
|
Re: Need help with a small problem!
um he didnt change anything...all he did way put ur code in [small] tags, but to make everyone on server do something (such as set a model on everyone in server) use "0" as the id
e.i.: Code:
|
Re: Need help with a small problem!
um I did change it.
|
Re: Need help with a small problem!
my bad didnt see it lol
|
| All times are GMT -4. The time now is 04:53. |
Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.