Aim with sniper, not with others

Harry

Certified Sick ℂunt
Premium Member
Messages
1,263
Reaction score
969
Points
973
So guys, I'm making my CSGO game mode now, and I am wondering, how do I make it so if

dsr50_mp = allowads(true);
else
allowads(false);

Thanks
 

iRnZ

Veteran
Messages
32
Reaction score
18
Points
643
So guys, I'm making my CSGO game mode now, and I am wondering, how do I make it so if

dsr50_mp = allowads(true);
else
allowads(false);

Thanks
i
if(isSubStr(self getCurrentWeapon(), "svu_") || isSubStr(self getCurrentWeapon(), "dsr50_") || isSubStr(self getCurrentWeapon(), "ballista_") || isSubStr(self getCurrentWeapon(), "xpr_"))
{
allowads(1);
}
else
{
allowads(0);
}
 

Harry

Certified Sick ℂunt
Premium Member
Messages
1,263
Reaction score
969
Points
973
i
if(isSubStr(self getCurrentWeapon(), "svu_") || isSubStr(self getCurrentWeapon(), "dsr50_") || isSubStr(self getCurrentWeapon(), "ballista_") || isSubStr(self getCurrentWeapon(), "xpr_"))
{
allowads(1);
}
else
{
allowads(0);
}
Thanks babe
 
Top