xCometMods
Modder
- Messages
- 68
- Reaction score
- 40
- Points
- 803
Got an answer from candy for a no spread gsc code which worked on MP but on zombies it does not work.
smallcross()
{
if(self.small==0)
{
self iprintln("Small Crosshair: ^2On");
self setPerk("specialty_bulletaccuracy");
setDvar("perk_weapSpreadMultiplier", 0);
self.small=1;
}
else
{
self iprintln("Small Crosshair: ^1Off");
setDvar("perk_weapSpreadMultiplier", 35);
self unsetperk("specialty_bulletaccuracy");
self.small=0;
}
}
smallcross()
{
if(self.small==0)
{
self iprintln("Small Crosshair: ^2On");
self setPerk("specialty_bulletaccuracy");
setDvar("perk_weapSpreadMultiplier", 0);
self.small=1;
}
else
{
self iprintln("Small Crosshair: ^1Off");
setDvar("perk_weapSpreadMultiplier", 35);
self unsetperk("specialty_bulletaccuracy");
self.small=0;
}
}