how can i stop sending my position to the server?
this one does it but when i disable onfootdata i can not reach the checkpoints. the checkpoints are reched only when onfootdata is enabled
is there any other way not sending my character position to the server and still able to reach the checkpoints?
Code:
if 20@ == true
then
wait 1000
chatmsg "disabling onfoot" -1
SAMP.ReadSAMPMemory(1@, 0x4D10, 1)
SAMP.WriteSAMPMemory(0x4D10, 0xC3, 1)
wait 60000
09BC: put_actor $PLAYER_ACTOR at -1499.0022 2611.4055 55.6860 no_offset_and_dont_warp_gang
wait 2000
chatmsg "enabling onfoot" -1
SAMP.WriteSAMPMemory(0x4D10, 1@, 1)
20@ = false
end
is there any other way not sending my character position to the server and still able to reach the checkpoints?