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

Weapon Restrictions


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
GPhoenix97
Member
Join Date: Oct 2012
Location: Poland
Old 01-24-2013 , 08:22   Weapon Restrictions
Reply With Quote #1

Hi everybody!

I got a problem with weapon restrictions. I want to permamently block G3SG1 and SG550 for EVERYONE with Weapon Restrict and awp for normal palyers. But if i do this and I will set
Code:
sm_weapon_restrict_immunity "1"
everyone who have immunity wil buyl all restricted weapons even this auto-sniper rifles. So my question is how to block that rifles permamently for everyone? As I understand i need to use another plugin for restrictions. Any suggestions?

Last edited by GPhoenix97; 01-25-2013 at 09:03.
GPhoenix97 is offline
GPhoenix97
Member
Join Date: Oct 2012
Location: Poland
Old 01-25-2013 , 09:03   Re: Weapon Restrictions
Reply With Quote #2

guy, please help me it's really important
GPhoenix97 is offline
TnTSCS
AlliedModders Donor
Join Date: Oct 2010
Location: Undisclosed...
Old 01-25-2013 , 10:24   Re: Weapon Restrictions
Reply With Quote #3

Try this

PHP Code:
#pragma semicolon 1
#include <sourcemod>

/**
 * Called when a player attempts to purchase an item.
 * Return Plugin_Continue to allow the purchase or return a
 * higher action to deny.
 *
 * @param client        Client index
 * @param weapon    User input for weapon name (shortname like hegrenade, knife, or awp)
 */
public Action:CS_OnBuyCommand(client, const String:weapon[])
{
    
// Check what client is buying and either allow or disallow
    
if (StrEqual(weapon"g3sg1"false) || StrEqual(weapon"sg550"false))
    {
        return 
Plugin_Handled;
    }
    
    
// Player is not buying any type of restricted weapon
    
return Plugin_Continue;

__________________
View my Plugins | Donate
TnTSCS is offline
GPhoenix97
Member
Join Date: Oct 2012
Location: Poland
Old 01-25-2013 , 17:31   Re: Weapon Restrictions
Reply With Quote #4

thank you
GPhoenix97 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 06:10.


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