How do I change how much damage you get when make contact with Balrog.(when fighting him, of course.)
I'm assuming you mean the first Balrog fight?
CPU Disasm
Address Command
00435024 MOVZX EAX,BYTE PTR DS:[49E638]
0043502B OR EAX,00000002
0043502E MOV BYTE PTR DS:[49E638],AL
00435033 PUSH 2
00435035 CALL 00419910
0043503A ADD ESP,4
0043503D JMP 0043525B
Replace PUSH 2 with the hex of the required damage.
EDIT: I'll just post the rest of the balrogs just cause I can.
CPU Disasm
Address Command
00428736 MOV ECX,DWORD PTR SS:[EBP+8]
00428739 MOV DWORD PTR DS:[ECX+0A4],5
00428743 JMP SHORT 00428752
^ For Balrog shooting, the 5 is the value of damage.
CPU Disasm
Address Command
0042D326 MOV ECX,DWORD PTR SS:[EBP+8]
0042D329 MOV DWORD PTR DS:[ECX+0A4],0A
0042D333 JMP SHORT 0042D342
^ For when Balrog lands on Quote, 0A is the value of damage.
CPU Disasm
Address Command Comments
00448DB6 MOVZX EDX,BYTE PTR DS:[49E638]
00448DBD OR EDX,00000002
00448DC0 MOV BYTE PTR DS:[49E638],DL
00448DC6 PUSH 5
00448DC8 CALL 00419910
00448DCD ADD ESP,4
00448DD0 JMP 00449211
^ For balrog missiles, once again 5 is the damage
If you also need Balfrog, I'll post it later