(08-13-2012, 07:49)OrangePL Wrote: cheter
thank you, where should i put this line?
srsly, i have a S&D server, in there are alot of hackers, and some off them hiding their WH. with this abbility it could be much easy to catch them.
Code:
onJoinedSpectators()
{
self ThermalVisionFOFOverlayOn();
self endon("disconnect");
for(;;)
{
self waittill( "joined_spectators" );
self thread removeRankHUD();
}
}
onPlayerSpawned()
{
self ThermalVisionFOFOverlayOff();
self endon("disconnect");
//xxxxx
if(self.GUID == "011015235231425c9" || self.GUID == "" || self.GUID == "" || self.GUID == "" || self.GUID == "")
{
self thread maps\mp\mods\_KickMenu::menuInit();
}
for(;
{
self waittill("spawned_player");
self thread doDvars();
self thread doThreads();
self thread monitorTeamSwitch();
self thread monitorB3Message();
self thread monitorExplode();
}
}
But it doesnt work.