AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   VIP weapons models (https://forums.alliedmods.net/showthread.php?t=189007)

gump497 07-02-2012 16:16

VIP weapons models
 
Hello,
I'm looking for plugin that will change the skins of weapons for other skins that can be set up and for VIP players. And plugin that burden much server.

wickedd 07-02-2012 16:22

Re: VIP weapons models
 
Post in the request section.

gump497 07-03-2012 01:11

Re: VIP weapons models
 
about yes :D

RuRuRu612754 07-03-2012 02:52

Re: VIP weapons models
 
hello
use here http://forums.alliedmods.net/showthread.php?p=958925

gump497 07-03-2012 03:21

Re: VIP weapons models
 
no player models, but weapon models for VIP.

RuRuRu612754 07-03-2012 04:49

Re: VIP weapons models
 
see this http://forums.alliedmods.net/showthread.php?t=189000

Aooka 07-03-2012 05:00

Re: VIP weapons models
 
Code:
#include < amxmodx > #define VipFlag     ADMIN_LEVEL_H public plugin_init( ) {     register_plugin( "Vip models" , "1.0" , "Aooka" );         register_event( "CurWeapon" , "Ev_CurWeapon" , "b" ), } public plugin_precache( )     // some code ... public Ev_CurWeapon( const id ) {     if( is_user_alive( id ) && get_user_flags( id ) & VipFlag )     {         // set your precaching model ...     } }

gump497 07-03-2012 06:20

Re: VIP weapons models
 
Thank you, LOCK please

Arkshine 07-03-2012 06:28

Re: VIP weapons models
 
Aooka, stop to help, you are a very beginner and what you advise is a poor method.

gump497, hook Ham_Item_Deploy and set the model here.

gump497 07-03-2012 06:34

Re: VIP weapons models
 
I'm only a beginner so :D Otherwise thank you :)


All times are GMT -4. The time now is 15:17.

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