How can I make the ecl files fron .src?
ecall.bat err
Warning: DBGHELP.DLL too old, version 5.1+ required.
How can I make the ecl files fron .src?
-
Firedancer
- Grandmaster Poster
- Posts: 104
- Joined: Fri Feb 03, 2006 6:32 am
ecompile.exe (which is part of the pol core files you d/l, located in the /scripts folder) is the program that lets you compile your files from src's to ecl's.
you may ignore the warning... but I think the DBGHELP.DLL is available for d/l somewhere on this page. used to be at least.
ecompile.exe can either be executed from a dos window with the proper parameters, or you may want to check your ecompile.cfg file.... depending on the settings there, it will automatically try to compile your files.
As an alternative you can d/l a script editor like ultraedit or SciTe (http://www.etheria.org/filemanager/fileview/111/), which will not only support syntax highlighting and other nifty features, but which will also make use of ecompile to allow compiling your scripts straight from within the editor.
you may ignore the warning... but I think the DBGHELP.DLL is available for d/l somewhere on this page. used to be at least.
ecompile.exe can either be executed from a dos window with the proper parameters, or you may want to check your ecompile.cfg file.... depending on the settings there, it will automatically try to compile your files.
As an alternative you can d/l a script editor like ultraedit or SciTe (http://www.etheria.org/filemanager/fileview/111/), which will not only support syntax highlighting and other nifty features, but which will also make use of ecompile to allow compiling your scripts straight from within the editor.
Make a bulk compiler or even better here you go
Compile-all.bat
Compiler Config
impyecompile.cfg
So Handy!
Compile-all.bat
Code: Select all
@echo off
D:\POL\scripts\ecompile.exe -C impyecompile.cfg
PAUSE
Compiler Config
impyecompile.cfg
Code: Select all
ModuleDirectory D:\pol\scripts
IncludeDirectory D:\pol\scripts
PolScriptRoot D:\pol\scripts
PackageRoot D:\pol\pkg
GenerateDependencyInfo 1
GenerateListing 0
GenerateDebugInfo 0
GenerateDebugTextInfo 0
DisplayWarnings 1
CompileAspPages 1
AutoCompileByDefault 1
UpdateOnlyOnAutoCompile 1
OnlyCompileUpdatedScripts 1
DisplaySummary 1
DisplayUpToDateScripts 0
-
Firedancer
- Grandmaster Poster
- Posts: 104
- Joined: Fri Feb 03, 2006 6:32 am
if you name the cfg ecompile.cfg and not impyecompile.cfg you can just dclick the exe as well. no extra efford. though you can use the bat file for the "pause" lineDev Impy wrote:Make a bulk compiler or even better here you go
Compile-all.bat
Code: Select all
@echo off D:\POL\scripts\ecompile.exe -C impyecompile.cfg PAUSE
Compiler Config
impyecompile.cfg
So Handy!Code: Select all
ModuleDirectory D:\pol\scripts IncludeDirectory D:\pol\scripts PolScriptRoot D:\pol\scripts PackageRoot D:\pol\pkg GenerateDependencyInfo 1 GenerateListing 0 GenerateDebugInfo 0 GenerateDebugTextInfo 0 DisplayWarnings 1 CompileAspPages 1 AutoCompileByDefault 1 UpdateOnlyOnAutoCompile 1 OnlyCompileUpdatedScripts 1 DisplaySummary 1 DisplayUpToDateScripts 0