Strs Posted May 26 Share Posted May 26 as title says i need this opcode 0736: NOP_false memory address read and write value Link to comment Share on other sites More sharing options...
OrionSR Posted May 26 Share Posted May 26 You might be able to math out the memory offset based on the limited data available. 0x8A6168 – "Master" jumptable, each dword points to one of 27 different functions, each one handling approx 100 opcodes 0x466C50 – Opcodes 0000 – 0063. Array of dword, each pointing to the function for that opcode 0x468364 – Opcodes 0064 – 00C4. Array of dword, each pointing to the function for that opcode Link to comment Share on other sites More sharing options...
Strs Posted May 26 Author Share Posted May 26 thanks for help i was wondering what key is that they use function key or what ever that is debug key are for 0736: NOP_false 83 is just that. wanted to make script that do job as i have pressed debug key 83 in game Link to comment Share on other sites More sharing options...
OrionSR Posted May 26 Share Posted May 26 I'm not expecting 0736 to do anything at all other than return a logical false. "NOP" describes No Operation. This command may have done something for the developers but is of no use now - the function has been disabled. People used to track NOP opcodes as any command that could be issued that would do nothing without crashing the game. Later, NOP commands without a function behind it were dropped as not really commands at all. These days the opcode lists tend to stick with NOP commands that are intended to do nothing or were included in SCM for debug purposes and disabled in release. I'm not sure where 0736 falls on that list. Link to comment Share on other sites More sharing options...
Strs Posted May 26 Author Share Posted May 26 "disabled in release" ok i got it now so its useless maybe in future some new opcodes will replace it thanks Link to comment Share on other sites More sharing options...