AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Can you please help me? (https://forums.alliedmods.net/showthread.php?t=77273)

chris2008 09-09-2008 09:25

Can you please help me?
 
What im asking is if you guys can make this to be seened by dead/spectators players too
-the model is not viewible anymore after the player dies :(
-thank you in advance
#include <amxmodx>
#include <amxmisc>
#include <cstrike>

public plugin_init() {
register_plugin("Adminvip")
register_event("ResetHUD", "resetModel", "b")
return PLUGIN_CONTINUE
}

public plugin_precache() {
precache_model("models/player/vip/vip.mdl")
precache_model("models/player/vip/vip.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, "vip")
}
else if(userTeam == CS_TEAM_CT) {
cs_set_user_model(id, "vip")
}
else {
cs_reset_user_model(id)
}
}

return PLUGIN_CONTINUE
}

[X]-RayCat 09-09-2008 12:01

Re: Can you please help me?
 
Use more descriptive topic name.

Also put your code in [small][/.small] / [php][/.php] tags (without the dots), and use proper intending. :)

ConnorMcLeod 09-09-2008 12:31

Re: Can you please help me?
 
1 Attachment(s)
Sure.


All times are GMT -4. The time now is 03:10.

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