Raised This Month: $32 Target: $400
 8% 

Add restric awp


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
szogun
Senior Member
Join Date: Apr 2016
Old 04-20-2019 , 12:53   Add restric awp
Reply With Quote #1

Hi, there is someone who is able to add me a condition here to limit the awp for teams except the flag

HTML Code:
#include <sourcemod>

public Action CS_OnBuyCommand(client, const String:weapon[])
{
    if(StrEqual(weapon, "g3sg1", false)  || StrEqual(weapon, "scar20", false) || StrEqual(weapon, "aug", false) || StrEqual(weapon, "sg556", false))
    {
        PrintToChat(client, "\x01[\x04RESTRICT\x01] \x02Kupowanie tej broni jest zablokowane!");
        return Plugin_Handled;
    }
    return Plugin_Continue;
}
szogun is offline
farawayf
Senior Member
Join Date: Jan 2019
Old 04-20-2019 , 13:45   Re: Add restric awp
Reply With Quote #2

PHP Code:
public Action CS_OnBuyCommand(int client, const char[] weapon)
{
    if(
StrEqual(weapon"g3sg1"false)  || StrEqual(weapon"scar20"false) || StrEqual(weapon"aug"false) || StrEqual(weapon"sg556"false) || StrEqual(weapon"awp"false))
    {
        if (!
GetAdminFlag(GetUserAdmin(client), Admin_Reservation)) //Admin_Reservation is flag "a"
        

            
PrintToChat(client"\x01[\x04RESTRICT\x01] \x02Kupowanie tej broni jest zablokowane!");
            return 
Plugin_Handled;
        }
    }
    return 
Plugin_Continue;


Last edited by farawayf; 04-20-2019 at 13:55.
farawayf 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 02:21.


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