(05-15-2019 - 02:04 PM)NoNameV2345 Wrote:(05-15-2019 - 07:12 AM)BIGMARK Wrote: An alternative code so they do not freeze you
Lol. This, if I'm not mistaken, blocks all vehicles.
(05-15-2019 - 01:14 PM)XBLxPhantom Wrote:(05-15-2019 - 07:12 AM)BIGMARK Wrote: An alternative code so they do not freeze you
WriteInt32 Definition ?
Code:void WriteInt32(int Addr, int inp) {
*(int*)Addr = inp;
}
Hmmm.. i mean, Cool but why bother doing it like this when you could just set it as void Freezecarprotect(bool enable) {
if (enable) {
*(int*)0x830FBA = 0x43552;
}
else {
*(int*)0x830FBA = 0x7E235;
}
}