Raised This Month: $ Target: $400
 0% 

Solved [HELP]Vip Skin


Post New Thread Reply   
 
Thread Tools Display Modes
Old 04-02-2017, 13:37
EFFx
This message has been deleted by EFFx. Reason: nvm
edon1337
Penguin Enthusiast
Join Date: Jun 2016
Location: Macedonia
Old 04-02-2017 , 15:08   Re: [HELP]Vip Skin
Reply With Quote #2

I tested it before posting, you probably have a plugin that affects the models.
__________________
edon1337 is offline
Restart
Senior Member
Join Date: Nov 2016
Location: Lithuania
Old 04-02-2017 , 15:11   Re: [HELP]Vip Skin
Reply With Quote #3

I have this in umbrella_swarm.sma:
new const g_priv_models[][] = { "umbrella", "umbrella", "umbrella", "umbrella" }
Restart is offline
Send a message via Skype™ to Restart
D3XT3R
AlliedModders Donor
Join Date: Nov 2016
Location: Lithuania, Bomb A (Kauna
Old 04-02-2017 , 17:32   Re: [HELP]Vip Skin
Reply With Quote #4

Quote:
Originally Posted by Restart View Post
I have this in umbrella_swarm.sma:
new const g_priv_models[][] = { "umbrella", "umbrella", "umbrella", "umbrella" }
lol mine umbrella since 2014 of psychical and my edtion so look now

in this like it has access levels of ct normal players and vip and admin and s admin skins
first one for all and other one for vip just change from umbrella to other ur model as Bill
__________________
D3XT3R is offline
Send a message via Skype™ to D3XT3R
Restart
Senior Member
Join Date: Nov 2016
Location: Lithuania
Old 04-02-2017 , 18:03   Re: [HELP]Vip Skin
Reply With Quote #5

So do you mean, that
new const g_priv_models[][] = { "umbrella", "umbrella", "umbrella", "umbrella" }

Is vip models or what?
Restart is offline
Send a message via Skype™ to Restart
Restart
Senior Member
Join Date: Nov 2016
Location: Lithuania
Old 04-02-2017 , 18:06   Re: [HELP]Vip Skin
Reply With Quote #6

Yes, it's your's, because it is what i can find for free
Restart is offline
Send a message via Skype™ to Restart
D3XT3R
AlliedModders Donor
Join Date: Nov 2016
Location: Lithuania, Bomb A (Kauna
Old 04-03-2017 , 07:05   Re: [HELP]Vip Skin
Reply With Quote #7

Quote:
Originally Posted by Restart View Post
So do you mean, that
new const g_priv_models[][] = { "umbrella", "umbrella", "umbrella", "umbrella" }

Is vip models or what?
i mean with it this:

new const g_priv_models[][] = { "NORMAL PLAYERS MODEL", "VIPS MODEL", "ADMINS MODEL", "SADMINS MODEL" }
__________________
D3XT3R is offline
Send a message via Skype™ to D3XT3R
edon1337
Penguin Enthusiast
Join Date: Jun 2016
Location: Macedonia
Old 04-02-2017 , 16:50   Re: [HELP]Vip Skin
Reply With Quote #8

That probably messes with it, you could try setting a delay on Ham_Spawn and check if it would reset the model of Umbrella mod.
Code:
#include < amxmodx > #include < fakemeta > #include < hamsandwich > new const g_szModel[ ] = "bill" ; #define ADMIN_FLAG ADMIN_KICK public plugin_init( ) {     register_plugin( "Admin Skin", "1.0", "DoNii" ) ;     RegisterHam( Ham_Spawn, "player", "fw_HamSpawnPost", 1 ) ;     register_forward( FM_SetClientKeyValue, "fw_SetClientKeyValue" ) } public plugin_precache( ) {     new szBuffer[ 64 ] ;     formatex( szBuffer, charsmax( szBuffer ), "models/player/%s/%s.mdl", g_szModel, g_szModel ) ;         precache_model( szBuffer ) ; } public fw_HamSpawnPost( id ) {     if( ! is_user_alive( id ) )     return HAM_IGNORED ;     if( ~ get_user_flags( id ) & ADMIN_FLAG )     return HAM_IGNORED ;     if( get_user_team( id ) != 2 )     return HAM_IGNORED ;     set_task( 1.0, "fw_HamSpawnPostDelay", id ) ;         return HAM_HANDLED ; } public fw_SetClientKeyValue( id, const infobuffer[ ], const key[ ] ) {     if( get_user_team( id ) != 2 )     return FMRES_IGNORED ;     if( ~ get_user_flags( id ) & ADMIN_KICK )     return FMRES_IGNORED ;     if( equal( key, "model" ) ) {         set_user_info( id, "model", g_szModel ) ;         return FMRES_SUPERCEDE ;     }         return FMRES_IGNORED ; } public fw_HamSpawnPostDelay( id ) {     set_user_info( id, "model", g_szModel ) ;     remove_task( id ) ; }
__________________
edon1337 is offline
Restart
Senior Member
Join Date: Nov 2016
Location: Lithuania
Old 04-02-2017 , 16:52   Re: [HELP]Vip Skin
Reply With Quote #9

How?I don't know how to do it?
Restart is offline
Send a message via Skype™ to Restart
Restart
Senior Member
Join Date: Nov 2016
Location: Lithuania
Old 04-02-2017 , 16:57   Re: [HELP]Vip Skin
Reply With Quote #10

I mean, when i transfer to ct it shows, but than repalaces with umbrella skin.

Last edited by Restart; 04-02-2017 at 16:59.
Restart is offline
Send a message via Skype™ to Restart
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 00:52.


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