/* - Artifact God Mode (real god mode) - BIG Thanks to MPGH members for constant help. You guys are the best. - Multiplayer status - UNKNOWN. I Suggest not use it there. - IMPORTANT!!!!!! - Enable at mission start - disable at mission end. Script may be flawed so be careful. - MPGH - Made by Narc0tix, modified Lepage's 2-3 hit kill and whitegun's instant wave respawn script. Based on nilath research and development. - OPCODES by Nightshadess. */ [ENABLE] AOBSCAN(AOB_HEALTH_OPCODE_ADDRESS,8B 11 33 D1 89 01 81 F2 B1 0F 44 2F C1 CA 03 C1 C0 03 33 C1 35 B1 0F 44) AOBSCAN(AOB_NPC_HEALTH_FUNC_RET,80 BB BD 04 00 00 00 66 0F 6E 46 40 0F 5B C0 F3 0F 58 83 20 09 00 00 F3) alloc(newmem,2048) label(returnhere) label(originalcode) label(exit) label(HEALTH_OPCODE_ADDRESS) registersymbol(HEALTH_OPCODE_ADDRESS) newmem: originalcode: mov edx,[ecx] xor edx,ecx pushfd cmp [esp+1C], AOB_NPC_HEALTH_FUNC_RET jne exit cmp eax, 5 jle exit mov eax ,0 mov [ecx],eax exit: popfd mov [ecx],eax jmp returnhere AOB_HEALTH_OPCODE_ADDRESS: HEALTH_OPCODE_ADDRESS: jmp newmem nop returnhere: [DISABLE] dealloc(newmem) HEALTH_OPCODE_ADDRESS: db 8B 11 33 D1 89 01 unregistersymbol(HEALTH_OPCODE_ADDRESS)

