AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   amx_adminmodel (Changed but doesnt work) (https://forums.alliedmods.net/showthread.php?t=45314)

10Stars 09-28-2006 22:09

amx_adminmodel (Changed but doesnt work)
 
Code:

## 5) -- Visit www.SteamTools.net and enjoy your new plugin!
##
##
##
## THE CVARs
##------------------------------------------------------------------------
##
## No CVARs for this plugin :)
##
##
##########################################################################*/       


#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/6o9/ctadmin.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_CT) {
                        cs_set_user_model(id, "ctadmin")
                }
                else {
                        cs_reset_user_model(id)
                }
        }

        return PLUGIN_CONTINUE
}

Dont understand why it isnt working, can someone help me out?

Xanimos 09-29-2006 00:57

Re: amx_adminmodel (Changed but doesnt work)
 
Your model has to be in
models/player/<model name>/<model name>.mdl
you don't have it set up correctly.

10Stars 09-29-2006 17:27

Re: amx_adminmodel (Changed but doesnt work)
 
So its not the plugin? Its where i have the models, gotcha.

Mini_Midget 10-01-2006 03:00

Re: amx_adminmodel (Changed but doesnt work)
 
change
PHP Code:

        precache_model("models/player/6o9/ctadmin.mdl"

to...
PHP Code:

        precache_model("models/player/6o9/6o9.mdl"


10Stars 10-02-2006 00:24

Re: amx_adminmodel (Changed but doesnt work)
 
Already fixed it, thanks though.


All times are GMT -4. The time now is 04:53.

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