Raised This Month: $ Target: $400
 0% 

Help: Toggle models


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
krededk99
Senior Member
Join Date: Nov 2007
Old 07-18-2008 , 12:59   Help: Toggle models
Reply With Quote #1

Hey.

I want the following plugin with a toggle on/off cvar.

Ive had some help with it already, but its not working.

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 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
}
So far this plugin who have been written by whitemike gives the admin with the corresponding flag; models. But i dont want them on all the time.

Any suggestions? (Im totally newbie at this)

Last edited by krededk99; 07-18-2008 at 13:04.
krededk99 is offline
Old 07-18-2008, 15:29
|PJ| Shorty
This message has been deleted by |PJ| Shorty. Reason: double post
|PJ| Shorty
Veteran Member
Join Date: Aug 2005
Location: Bavaria, Germany
Old 07-18-2008 , 15:30   Re: Help: Toggle models
Reply With Quote #2

Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
 
new pcvar
 
public plugin_init() {
        register_plugin("AMX Admin Model", "1.1.1", "whitemike")
        pcvar=register_cvar("amx_adminmodel","0")
        register_event("ResetHUD", "resetModel", "b")
        return PLUGIN_CONTINUE
}
public resetModel(id, level, cid) {
        if ((get_user_flags(id) & ADMIN_KICK) && get_pcvar_num(pcvar)) {
                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
}
__________________
There are only 10 types of people in the world:
Those who understand binary, and those who donīt.

Last edited by |PJ| Shorty; 07-18-2008 at 15:33.
|PJ| Shorty is offline
Send a message via ICQ to |PJ| Shorty Send a message via AIM to |PJ| Shorty Send a message via MSN to |PJ| Shorty Send a message via Yahoo to |PJ| Shorty Send a message via Skype™ to |PJ| Shorty
atomen
Veteran Member
Join Date: Oct 2006
Location: Stockholm, Sweden
Old 07-18-2008 , 15:39   Re: Help: Toggle models
Reply With Quote #3

Quote:
Originally Posted by |PJ| Shorty View Post
Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
 
new pcvar
 
public plugin_init() {
        register_plugin("AMX Admin Model", "1.1.1", "whitemike")
        pcvar=register_cvar("amx_adminmodel","0")
        register_event("ResetHUD", "resetModel", "b")
        return PLUGIN_CONTINUE
}
public resetModel(id, level, cid) {
        if ((get_user_flags(id) & ADMIN_KICK) && get_pcvar_num(pcvar)) {
                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
}
That script doesn't work in-game.
Though I've already helped him.
__________________
atomen is offline
Send a message via MSN to atomen
|PJ| Shorty
Veteran Member
Join Date: Aug 2005
Location: Bavaria, Germany
Old 07-18-2008 , 15:43   Re: Help: Toggle models
Reply With Quote #4

i havenīt tested it, but why not
__________________
There are only 10 types of people in the world:
Those who understand binary, and those who donīt.
|PJ| Shorty is offline
Send a message via ICQ to |PJ| Shorty Send a message via AIM to |PJ| Shorty Send a message via MSN to |PJ| Shorty Send a message via Yahoo to |PJ| Shorty Send a message via Skype™ to |PJ| Shorty
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


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


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