AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Need help on the plugin admin girl for [ZP] (https://forums.alliedmods.net/showthread.php?t=194021)

fum4uk 08-24-2012 15:34

Need help on the plugin admin girl for [ZP]
 
Hello! I'm from Russia, and I wrote this post through Google Translate I need your help! The fact that I played a girl and I admin
I have a zombie server, and I need to make a model girl administrator, but that the server had 2 models, ie model, the girls through the plug and zombieplague.ini model administrator standard
Who can help?
I changed the code, but does not work

Code:

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

public plugin_init() {
        register_plugin("AMX Admin Girl", "1.0", "whitemike & homorapian")
        register_event("ResetHUD", "resetModel", "b")
        return PLUGIN_CONTINUE
}

public plugin_precache() {
        precache_model("models/player/****/****.mdl")
        precache_model("models/player/****/****.mdl")

        return PLUGIN_CONTINUE
}

public resetModel(id, level, cid) {
        if (get_user_flags(id) & ADMIN_USER) {
                new CsTeams:userTeam = cs_get_user_team(id)
                if (userTeam == CS_TEAM_T) {
                        cs_set_user_model(id, "****")
                }
                else if(userTeam == CS_TEAM_CT) {
                        cs_set_user_model(id, "****")
                }
                else {
                        cs_reset_user_model(id)
                }
        }

        return PLUGIN_CONTINUE
}



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

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