Page 1 of 1
How I recompile Scripts?
Posted: Tue Dec 31, 2002 5:00 am
by Helios2000
Hi
Ich have decompile a Script to a ipp file.
Then I have modify the file.
Now I want recompile it to an int file.But it work not.
I use the comiler/decompiler.
Posted: Tue Dec 31, 2002 5:03 am
by Red
You might want to post the error message you get back from it...
The decompiler doesn't always generate scripts which can be properly recompiled... You need to rework some stuff in it...
Posted: Tue Dec 31, 2002 8:56 am
by Jargo
or you tray to copile script with Decompiler (Dec.exe).
You must use compiler (ipp.exe) to compile it properly.
ipp.exe decompiled_filename.ipp
Posted: Wed Jan 01, 2003 8:38 pm
by Helios2000
Mhm
Yes I know the programm.But I get a error Message:
Excepition EInOutError in module IPP.exe at 0000D338.
File not found.
But the file is in the direction.
Posted: Thu Jan 02, 2003 4:21 pm
by Jargo
hmm
You need this (standart) files in same directory:
ipp.exe
System.ipp
Stdlib.ipp
karma.ipp
stats.ipp
critter.ipp
scripts.lst
scrname.msg
and the file you want to compile ( acklint.ipp)
you type
ipp.exe acklint.ipp
Posted: Fri Jan 03, 2003 11:05 am
by Wasteland Ghost
You need this (standart) files in same directory
Yes. And do not forget about uses directive.
Example (for "acklint"):
uses system,stdlib,stats;
When you must change all ";" at the end of variable definition to "," except of last definition, of course ;).
And you must check the files you include with uses directive and delete variables with the same names as in your script defined there.
PS Complier and decompiler are not working together now, but they will ;) as authors say.