Is Nameplate Visible = 1 (Byte)
Is Nameplate not visible = 0 (Byte)
WarZ.exe+3F7F6A - test byte ptr [eax+06],01
Okay here is my simple Script, DO NOT USE THIS SCRIPT, WHEN U DONT KNOW WHAT YOU DO. YOU ARE NOT SCREENSHOT PROTECTED!
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
pushad
mov byte ptr [eax+06],#1
originalcode:
popad
test byte ptr [eax+06],01
je WarZ.exe+3F7FE9
exit:
jmp returnhere
"WarZ.exe"+3F7F6E:
jmp newmem
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"WarZ.exe"+3F7F6E:
test byte ptr [eax+06],01
je WarZ.exe+3F7FE9
//Alt: db F6 40 06 01 74 75