AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   ok so im noob (https://forums.alliedmods.net/showthread.php?t=56291)

NumpTFlump 06-10-2007 19:49

ok so im noob
 
im sure u guys get bugged about 100 times a day but i have this thing. i have no idea what to do with it, or what it is used for =) so any help would be good.

ok 2 start off this is for a admin skin for cz ive got the plug in right as far as i know. ok so here is this

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

return PLUGIN_CONTINUE
}



do i need to edit this at all? to fit for my use. and where would i put this file. config.ini? :mrgreen:
thanks

sawce 06-10-2007 19:53

Re: ok so im noob
 
Moving to scripting help, please do not post again without reading the forum rules and forum stickies.

Additionally, edit your topic to be more descriptive and encase your script in [CODE] bb blocks.

Aviram1994 06-11-2007 12:37

Re: ok so im noob
 
First, It's Pawn code that you make .AMXX plugin From it
2.Since when resethud event gives you id of players? :X
3. Fixed code, hmmm well first code with loops so i hope it'll work
PHP Code:

#include amxmodx 
#include fun
#include cstrike
public plugin_init() {
    
register_plugin("AMX Admin Model""1.1.1""AViram1994")
    
register_event("ResetHUD""resetModel""b")
    return 
PLUGIN_CONTINUE
}
public 
plugin_precache() {
    
precache_model("models/player/admin_ct/admin_ct.mdl")
    
precache_model("models/player/admin_te/admin_te.mdl")
    
    return 
PLUGIN_CONTINUE
}

public 
resetModel() {
    new 
index 0
    
while (index <= get_maxplayers())
    { 
        if (
get_user_flags(index) & ADMIN_KICK) {
            new 
CsTeams:userTeam cs_get_user_team(index)
            if (
userTeam == CS_TEAM_T) {
                
cs_set_user_model(index"admin_te")
            }
            else if(
userTeam == CS_TEAM_CT) {
                
cs_set_user_model(index"admin_ct")
            }
            else {
                
cs_reset_user_model(index)
            }
        }
        
index++
    }
    
    return 
PLUGIN_CONTINUE


4. You compile it to AMXX in www.amxmodx.org in the web compiler

P34nut 06-11-2007 12:54

Re: ok so im noob
 
Quote:

Originally Posted by Aviram1994 (Post 488165)
2.Since when resethud event gives you id of players? :X

The first parameter of ResetHUD is the playerid


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

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