View Single Post
Drixevel
AlliedModders Donor
Join Date: Sep 2009
Location: Somewhere headbangin'
Old 06-04-2015 , 19:45   Re: [Request] CSGO HeadShot Only Plugin !
Reply With Quote #4

Quote:
Originally Posted by klexen View Post
It's not tested. But this might work.
Just a suggestion for your code:

This:
Code:
g_bEnabled = StringToInt(newValue) == 1 ? true : false;
Can be this:
Code:
g_bEnabled = bool:StringToInt(newValue);
Drixevel is offline