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

[CS:GO] I created this plugin to block weapon buy


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
shadow10
Junior Member
Join Date: Jan 2023
Old 01-30-2023 , 10:01   [CS:GO] I created this plugin to block weapon buy
Reply With Quote #1

I need to know if this works properly without any mistakes !

I'm trying to get the round number and if the round is 1 or 16 it

will block the buy of the specific weapons. The block buy code

works. But when im tryin to get the round number sometimes it

works sometimes not. EDIT : this code i didnt tried so i wanna

make sure it works properly.

CODE :

public Action CS_OnBuyCommand(int iClient, const char[] chWeapon)
{

if (GameRules_GetProp("m_totalRoundsPlayed") == 0 || GameRules_GetProp("m_totalRoundsPlayed") == 15)
{
char blocked_weapons[][] = { "ump45", "p90", "mp9", "mp7", "mp5sd", "mac10", "bizon", "ssg08", "sg556", "scar20", "m4a1_silencer", "m4a1", "galilar", "g3sg1", "famas", "awp", "aug", "ak47", "xm1014", "sawedoff", "nova", "negev", "mag7", "m249" };
for (int i = 0; i < sizeof(blocked_weapons); i++)
{
if (StrEqual(chWeapon, blocked_weapons[i]))
{
PrintToChat(iClient, "'You're rich BUT I FORBID YOU TO BUY' - shadowbringer.");
return Plugin_Handled;
}
}
}
return Plugin_Continue; // Continue as normal.
}

im using GameRules_GetProp("m_totalRoundsPlayed") == 0 set to 0 because i think to get the first round it means that totalroundplayed needs to be 0. IF IM WRONG CORRECT ME.

Last edited by shadow10; 01-30-2023 at 10:03.
shadow10 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 15:12.


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