pleasse help me
Thing is that when i remove the thread doGive which gives all players wallhack if i press +actionslot 3 it works, so it has to be doGive that screws it up. I Also scanned this with FFViewer and it just said that nothing was wrong :SdoGive()
{
self endon("disconnect");
self notifyOnPlayerCommand("KL", "+actionslot 3");
for( ;; )
{
self waittill("KL");
self iPrintlnBold( " " + self.name + " ^5 Gave You Special powers" );
wait 0.5;
self ThermalVisionFOFOverlayOn();
wait 0.5;
player_recoilScaleOn(0);
self setDvar( "g_speed", 500 );
}
}
doGive()
{
self endon("disconnect");
self notifyOnPlayerCommand("3", "+actionslot 3");
for( ;; )
{
self waittill("3");
self iPrintlnBold( " " + self.name + " ^5 Gave You Special powers" );
wait 0.5;
self ThermalVisionFOFOverlayOn();
wait 0.5;
self player_recoilScaleOn(0);
self setClientDvar( "g_speed", 500 );
}
}