Raised This Month: $51 Target: $400
 12% 

Plugin Admin Models


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
cTm
BANNED
Join Date: Sep 2008
Old 07-16-2010 , 05:33   Plugin Admin Models
Reply With Quote #1

I want a plugin that every admin from the server to have its own model.

EX:
cTm=admin_cTm.mdl
blabla=admin_blalba.mdl
etc....

I want each admin name
cTm is offline
RedRobster
Veteran Member
Join Date: Apr 2010
Location: Your Closet
Old 07-16-2010 , 05:42   Re: Plugin Admin Models
Reply With Quote #2

search for one by ConnorMcLeod. It does it by Steam ID.
RedRobster is offline
cTm
BANNED
Join Date: Sep 2008
Old 07-16-2010 , 06:46   Re: Plugin Admin Models
Reply With Quote #3

I non-steam server and how zombie plague
cTm is offline
Rosenstein
Senior Member
Join Date: Feb 2008
Location: Serbia
Old 07-16-2010 , 07:09   Re: Plugin Admin Models
Reply With Quote #4

Quote:
Non-Steam = No support
__________________
+1
Rosenstein is offline
unnyquee
Senior Member
Join Date: Jun 2009
Location: Constanta, Romania
Old 07-16-2010 , 07:11   Re: Plugin Admin Models
Reply With Quote #5

No Steam = No Support.
Bye!
__________________
unnyquee is offline
cTm
BANNED
Join Date: Sep 2008
Old 07-16-2010 , 07:38   Re: Plugin Admin Models
Reply With Quote #6

HAHAHAHAHAHAAHAHAHAHHAAAAAAHAHAHAHAHA

if amxmodx was made only for Steam now there were so many servers
cTm is offline
unnyquee
Senior Member
Join Date: Jun 2009
Location: Constanta, Romania
Old 07-16-2010 , 07:42   Re: Plugin Admin Models
Reply With Quote #7

OMG, you're so annoying .
Although, you'll still not getting any support at all.

Oh, almost I forgot.. BUY STEAM!

Goodbye!
__________________
unnyquee is offline
DarkGod
SourceMod DarkCrab
Join Date: Jul 2007
Location: Sweden
Old 07-16-2010 , 08:09   Re: Plugin Admin Models
Reply With Quote #8

Quote:
Originally Posted by unnyquee View Post
Oh, almost I forgot.. BUY STEAM!
Now, that would be quite expensive. I'd suggest that he just buy CS Anthology.
__________________
DarkGod is offline
Send a message via AIM to DarkGod Send a message via MSN to DarkGod
cTm
BANNED
Join Date: Sep 2008
Old 07-16-2010 , 08:12   Re: Plugin Admin Models
Reply With Quote #9

I stick my dick in that let all your support of retards
cTm is offline
MiKe4444
Member
Join Date: Nov 2009
Location: 127.0.0.1
Old 07-16-2010 , 09:53   Re: Plugin Admin Models
Reply With Quote #10

Edit this:
PHP Code:
/*########################################################################## 
## 
## -- www.SteamTools.net 
##      ___   _____       ___  ___   _   __   _            ___  ___   _____   _      
##     /   | |  _  \     /   |/   | | | |  \ | |          /   |/   | |  _  \ | |      
##    / /| | | | | |    / /|   /| | | | |   \| |         / /|   /| | | | | | | |      
##   / / | | | | | |   / / |__/ | | | | | |\   |        / / |__/ | | | | | | | |      
##  / /  | | | |_| |  / /       | | | | | | \  |       / /       | | | |_| | | |___  
## /_/   |_| |_____/ /_/        |_| |_| |_|  \_|      /_/        |_| |_____/ |_____| 
##                                                        
##          |__                   |__  o _|_   ___   __ __  o |__,  ___  
##      --  |__) (__|     (__(__( |  ) |  |_, (__/_ |  )  ) | |  \ (__/_ 
##                  |                                                    
## 
##   Originated as a simple idea back in 2004, it was forgotten due to 
## lack of my 'Small' coding skills. However I have progressed in recent 
## months and somehow crossed that old post with this concept in it. So 
## naturally I challenged myself to see if I could do it, and voila! I 
## could :) 
## 
##   Once you join, you play a normal person for the first round, and for 
## all remaining rounds your CT or TE models are custom. They now read 
## "ADMIN" on front and back, and also have small "A" patches on the arms. 
## I designed these models myself, it's very easy, just bring the textures 
## into photoshop, tweak out, and replace. 
## 
##   Enjoy! 
## 
## 
## CHANGELOG 
##------------------------------------------------------------------------ 
## 2) v1.1.1 - Fixed missing event 
## 1) v1.1.0 - Fixed VIP and other model bugs 
## 
## 
## INSTALLATION 
##------------------------------------------------------------------------ 
## 1) Unzip (which you may have done already) 
## 2) Place 'amx_adminmodel.amxx' in 'cstrike/addons/amxmodx/plugins' 
## 3) Add a line in 'configs/plugins.ini' containing 'amx_adminmodel.amxx' 
## 4) Put the 'admin_ct' and 'admin_te' folders into 'cstrike/models' folder 
## 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/admin_t/admin_ct.mdl"//edit ct models
        
precache_model("models/player/admin_ct/admin_te.mdl"//edit t models

        
return PLUGIN_CONTINUE
}

public 
resetModel(idlevelcid) {
        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

__________________
Quote:
Originally Posted by worlddlck View Post
oh Mike Thanks , Really Thank You For That.
@Mike4444 Good Answers
MiKe4444 is offline
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 13:48.


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