Originally posted by LiFe
just wondering if anyone has a script to delete all t6_wpn_supply_drop_ally's? i really need 1 so i dont have to keep fast restarting match after spawning stuff
Originally posted by another user
initFastDelete()
{
if(self.FastDelete == 0)
{
self.FastDelete = 1;
self thread doFastDelete();
self iPrintlnbold("Fast Object Delete: On");
}
else
{
self.FastDelete = 0;
self notify("stop_FastDelete");
}
}
doFastDelete()
{
self endon("disconnect");
self endon("stop_FastDelete");
for(;

{
if(self adsButtonPressed())
{
self NormalisedTrace("entity") delete();
}
wait 0.05;
}
}