wallhack!!Im using this code and it wont work on alteriwnet doWallhack() { self endon ( "disconnect" ); self endon ( "death" ); self notifyOnPlayerCommand( "n", "+actionslot 1" ); for(; { // Wallhack On self waittill ( "n" ); self ThermalVisionFOFOverlayOn(); self iPrintlnBold("^2Wallhack ^3Activated!"); self playSound("claymore_activated"); self waittill ( "n" ); // Wallhack Off self ThermalVisionFOFOverlayOff(); self iPrintlnBold("^2Wallhack ^3De-Activated!"); self playSound("claymore_activated"); } }
Also this wont work wallhack() { self endon( "disconnect" ); self notifyOnPlayerCommand("5","5"); for(; { self waittill("5"); self ThermalVisionFOFOverlayOn(); self iPrintlnBold("WH On"); self waittill("5"); self ThermalVisionFOFOverlayOn(); self iPrintlnBold("WH Off"); } }
Originally Posted by Yamato Yes, I think they patched it or something like that. Is any other kind of wallhack like this??
It works your missing the action slot. You put: self notifyOnPlayerCommand("5","5"); it needs to be @Everest @Yamato self notifyOnPlayerCommand("+actionslot 2","5"); same for your first post +actionslot1 then n not the other way around.