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

Replace admin skin weapons


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
sir_PaBlo
Member
Join Date: Sep 2020
Location: Urmia
Old 11-20-2020 , 12:29   Replace admin skin weapons
Reply With Quote #1

Hello
I need a plugin to replace the gun skin for admins
Can you help with that?
sir_PaBlo is offline
redivcram
Veteran Member
Join Date: Jul 2014
Location: Serbia
Old 11-20-2020 , 13:48   Re: Replace admin skin weapons
Reply With Quote #2

https://www.google.com/search?client...n+weapon+skins
redivcram is offline
ho83
Senior Member
Join Date: Aug 2020
Location: iran
Old 11-20-2020 , 13:55   Re: Replace admin skin weapons
Reply With Quote #3

Hi.
What Weapons You Want? What Flag? Tell Me.
ho83 is offline
sir_PaBlo
Member
Join Date: Sep 2020
Location: Urmia
Old 11-20-2020 , 14:38   Re: Replace admin skin weapons
Reply With Quote #4

Quote:
Originally Posted by ho83 View Post
Hi.
What Weapons You Want? What Flag? Tell Me.
ak47
m4a1
deagle

Flag all admins
for example:
ADMIN_KICK
sir_PaBlo is offline
redivcram
Veteran Member
Join Date: Jul 2014
Location: Serbia
Old 11-20-2020 , 14:41   Re: Replace admin skin weapons
Reply With Quote #5

How can you be so lazy to click on a few links and literally find it there and not be lazy enough to wait out for someone to do everything for you?
redivcram is offline
sir_PaBlo
Member
Join Date: Sep 2020
Location: Urmia
Old 11-20-2020 , 14:43   Re: Replace admin skin weapons
Reply With Quote #6

Quote:
Originally Posted by redivcram View Post
How can you be so lazy to click on a few links and literally find it there and not be lazy enough to wait out for someone to do everything for you?
Lol
I searched a lot
I did not find what I was looking for, so I came here
sir_PaBlo is offline
amirwolf
Senior Member
Join Date: Feb 2019
Location: Iran
Old 11-20-2020 , 14:48   Re: Replace admin skin weapons
Reply With Quote #7

https://forums.alliedmods.net/showthread.php?t=250244
amirwolf is offline
redivcram
Veteran Member
Join Date: Jul 2014
Location: Serbia
Old 11-20-2020 , 14:50   Re: Replace admin skin weapons
Reply With Quote #8

Quote:
Originally Posted by sir_PaBlo View Post
Lol
I searched a lot
I did not find what I was looking for, so I came here

I gave you a link that literally contains your solution. More than one result actually. You can't be that lazy.
redivcram is offline
sir_PaBlo
Member
Join Date: Sep 2020
Location: Urmia
Old 11-20-2020 , 14:51   Re: Replace admin skin weapons
Reply With Quote #9

Quote:
Originally Posted by amirwolf View Post
I searched a lot
I did not find what I was looking for, so I came here
sir_PaBlo is offline
ho83
Senior Member
Join Date: Aug 2020
Location: iran
Old 11-20-2020 , 14:54   Re: Replace admin skin weapons
Reply With Quote #10

i don't know this is helpful or not but here : Ak
PHP Code:
#include <amxmodx> 
#include <amxmisc> 
#include <fakemeta> 

#define NEW_MODEL    "models/YoureFolder/v_ak47.mdl" 

public plugin_init( ) 

    
register_plugin"AK47 model""1.0""amxteam" ); 
    
register_event("CurWeapon""cdxw""be""1=1"); 


public 
plugin_precache()
{
    
precache_model(NEW_MODEL);
}
public 
cdxwid 

    if( 
has_all_flags(id"c" ) && get_user_weaponid ) == CSW_AK47 
    { 
        
set_pevidpev_viewmodel2NEW_MODEL ); 
    } 

M4a1
PHP Code:
#include <amxmodx> 
#include <amxmisc> 
#include <fakemeta> 

#define NEW_MODEL    "models/YoureFolder/v_m4a1.mdl" 

public plugin_init( ) 

    
register_plugin"M4A1 model""1.0""amxteam" ); 
    
register_event("CurWeapon""cdxw""be""1=1"); 


public 
plugin_precache()
{
    
precache_model(NEW_MODEL);
}
public 
cdxwid 

    if( 
has_all_flags(id"c" ) && get_user_weaponid ) == CSW_M4A1 
    { 
        
set_pevidpev_viewmodel2NEW_MODEL ); 
    } 

deagle:
PHP Code:
#include <amxmodx> 
#include <amxmisc> 
#include <fakemeta> 

#define NEW_MODEL    "models/yourefolder/v_deagle.mdl" 

public plugin_init( ) 

    
register_plugin"DEAGLE model""1.0""amxteam" ); 
    
register_event("CurWeapon""cdxw""be""1=1"); 


public 
plugin_precache()
{
    
precache_model(NEW_MODEL);
}
public 
cdxwid 

    if( 
has_all_flags(id"c" ) && get_user_weaponid ) == CSW_DEAGLE 
    { 
        
set_pevidpev_viewmodel2NEW_MODEL ); 
    } 

ho83 is offline
Reply


Thread Tools
Display Modes

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 08:21.


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