User bio
404 bio not found
Member since Jun 24, 2016
Replies:

Sorry to hear you no longer have your .int code.  Unfortunately, there is no way to reconstruct the .int code from the .obj code.  Even if you were able to dump out and understand the pcode/tokens, your resulting reconstructed .int code would not necessarily be the same as what you started with, and you may very well end up with un runnable nonsense, after many hours of work.  

One thing that may help you get some hints as to what your old developer did, would be to use the command line debugger and single step through the code.  You would not see the lines of code, of course, but you would be able to display the local variables.  This may help you figure out what the developer did, especially if they used execute commands.  The use of the command line debugger could be a separate article in itself, but briefly, you would go to the command line in the namespace where the routine is, issue an argumentless kill command to remove all existing variables, zl ^rou, and then issue the break command of your choice, (b "s", b "s+", b "l" b "l+"), and then d ^rou.  You will get a blank line because there is no int code, but you will be able to write out any variables that have been set.  Issue the 'go' command, and you will run the next line or command in the routine, depending on which break command you issued.  Continue to issue the 'go' command followed by the 'write' command until you finish the routine.  You may first want to practice this with a short and simple routine that does have .int code, if you are unfamiliar with how to use the command line debugger.

Hope this helps.

Certifications & Credly badges:
Cindy has no Certifications & Credly badges yet.
Global Masters badges:
Followers:
Cindy has no followers yet.
Following:
Cindy has not followed anybody yet.