AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   model plugin help (https://forums.alliedmods.net/showthread.php?t=26441)

AAleaderNik 04-02-2006 04:26

model plugin help
 
Code:

#include <amxmodx>
#include <cstrike>
#include <amxmisc>

public plugin_init()
{
        register_plugin("Model basis","1.0","AANik")
        register_event("Resethud","resetModel","b")
        return PLUGIN_CONTINUE
}

public plugin_precache() {
        precache_model("models/player/arctic/arctic.mdl")
       
        return PLUGIN_CONTINUE
}

public resetModel(id, level, cid) {
        if (get_user_flags(id) & ADMIN_CFG) {
                new CsTeams:userTeam = cs_get_user_team(id)
                if (userTeam == CS_TEAM_T) {
                        cs_set_user_model(id, "arctic")
                }
                else {
                        cs_reset_user_model(id)
                }
        }
        return PLUGIN_CONTINUE
}

whats wrong with this that would make it not work supposedly nobody has to dl the model maybe my path is wrong i dont know but i need some help

v3x 04-02-2006 06:17

"Resethud" should be "ResetHUD" ;)

AAleaderNik 04-02-2006 06:29

thanks pimpin lol

AAleaderNik 04-03-2006 01:37

ok i tryed to add the ct model from the amx_adminmodel plugin but it didnt work it wont download when i go to get on server but t model still works

Code:

#include <amxmodx>
#include <cstrike>
#include <amxmisc>

public plugin_init()
{
        register_plugin("Model basis","1.0","AANik")
        register_event("ResetHUD","resetModel","b")
        return PLUGIN_CONTINUE
}

public plugin_precache() {
        precache_model("models/player/arctic/arctic.mdl")
        precache_model("models/player/gign/gign.mdl")
       
        return PLUGIN_CONTINUE
}

public resetModel(id, level, cid) {
        if (get_user_flags(id) & ADMIN_RCON) {
                new CsTeams:userTeam = cs_get_user_team(id)
                if (userTeam == CS_TEAM_T) {
                        cs_set_user_model(id, "arctic")
                }
                else if (userTeam == CS_TEAM_CT) {
                        cs_set_user_model(id, "gign")
                }
                else {
                        cs_reset_user_model(id)
                }
        }
       
        return PLUGIN_CONTINUE
}

any suggestions?

AAleaderNik 04-04-2006 10:35

none?? :(

[ --<-@ ] Black Rose 04-04-2006 11:05

arctic?

AAleaderNik 04-04-2006 18:42

the ct model doesnt work but the arctic one does i dont know why ct model wont work

v3x maybe a little bit more help lol


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

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