Raised This Month: $ Target: $400
 0% 

Need help with a small problem!


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
ahmadgbg
Junior Member
Join Date: Mar 2005
Old 10-22-2006 , 06:54   Need help with a small problem!
Reply With Quote #1

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
}
ahmadgbg is offline
[ --<-@ ] Black Rose
ANNIHILATED
Join Date: Sep 2005
Location: Stockholm, Sweden.
Old 10-22-2006 , 06:59   Re: Need help with a small problem!
Reply With Quote #2

Always post your code in [small] tags
Code:
#include <amxmodx> #include <amxmisc> #include <cstrike> public plugin_init() {     register_plugin("AMX Admin Model", "1.1.1", "whitemike")     register_event("ResetHUD", "resetModel", "b") } public plugin_precache() {     precache_model("models/player/ct/ct.mdl")     precache_model("models/player/te/te.mdl") } public resetModel(id, level, cid) {         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) }
[ --<-@ ] Black Rose is offline
ahmadgbg
Junior Member
Join Date: Mar 2005
Old 10-22-2006 , 18:17   Re: Need help with a small problem!
Reply With Quote #3

Thank you very much and thank you for the tips
ahmadgbg is offline
Rolnaaba
Veteran Member
Join Date: May 2006
Old 10-24-2006 , 12:44   Re: Need help with a small problem!
Reply With Quote #4

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:
cs_set_user_model(0,"te")
that would make everyone have the model te.mdl
__________________
DO NOT PM me about avp mod.
Rolnaaba is offline
[ --<-@ ] Black Rose
ANNIHILATED
Join Date: Sep 2005
Location: Stockholm, Sweden.
Old 10-26-2006 , 20:01   Re: Need help with a small problem!
Reply With Quote #5

um I did change it.
[ --<-@ ] Black Rose is offline
Rolnaaba
Veteran Member
Join Date: May 2006
Old 10-27-2006 , 08:21   Re: Need help with a small problem!
Reply With Quote #6

my bad didnt see it lol
__________________
DO NOT PM me about avp mod.
Rolnaaba is offline
Reply



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 04:53.


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