AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   vip_model (https://forums.alliedmods.net/showthread.php?t=216198)

TRUE RED 05-17-2013 20:02

vip_model
 
Can some fix it a little bit. I heard that it is not effective way. Someone wrote that if 16 more players playing then this plugin works not good!

Also when VIP changes team after picking the class then standard model appears and it's ok after respawn.

PHP 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/n7/n7.mdl")
        
precache_model("models/player/n7/n7.mdl")

        return 
PLUGIN_CONTINUE
}

public 
resetModel(idlevelcid) {
        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"n7")
                }
                else if(
userTeam == CS_TEAM_CT) {
                        
cs_set_user_model(id"n7")
                }
                else {
                        
cs_reset_user_model(id)
                }
        }

        return 
PLUGIN_CONTINUE



.Dare Devil. 05-17-2013 21:11

Re: vip_model
 
Did valve fix that problem?
Use latest update of hlds.

TRUE RED 05-17-2013 21:16

Re: vip_model
 
Quote:

Originally Posted by .Dare Devil.
Did valve fix that problem?
Use latest update of hlds.

i don't know. i was searching a plugin that will change model by flag and found this one i posted above. i found the information that this plugin might be bad coded but i'm not a coder to check it out so i'm asking there for help.

.Dare Devil. 05-17-2013 21:36

Re: vip_model
 
Quote:

Originally Posted by TRUE RED (Post 1953701)
i don't know. i was searching a plugin that will change model by flag and found this one i posted above. i found the information that this plugin might be bad coded but i'm not a coder to check it out so i'm asking there for help.

I know that valve has fix this problem like 2 years ago?...
If you feel uncertainly then there is also a module for this or stock by zombieplague creator.

TRUE RED 05-17-2013 21:43

Re: vip_model
 
Quote:

Originally Posted by .Dare Devil.
I know that valve has fix this problem like 2 years ago?...
If you feel uncertainly then there is also a module for this or stock by zombieplague creator.

Can you please show me the link?

.Dare Devil. 05-18-2013 07:41

Re: vip_model
 
http://forums.alliedmods.net/showthread.php?t=161255
http://forums.alliedmods.net/showthread.php?t=164453

TRUE RED 05-19-2013 15:10

Re: vip_model
 
http://forums.alliedmods.net/showthread.php?t=161255
http://forums.alliedmods.net/showthread.php?t=164453

Thank you for this links. But i need a simple plugin for my public server that simply changes a model for admins/vips.

YamiKaitou 05-19-2013 15:13

Re: vip_model
 
This is Scripting Help, you are expected to write it yourself


All times are GMT -4. The time now is 16:22.

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