Page 1 of 1

How can I make the ecl files fron .src?

Posted: Tue Sep 19, 2006 10:34 pm
by tizu
How can I make the ecl files fron .src?
ecall.bat err
Warning: DBGHELP.DLL too old, version 5.1+ required.

Posted: Wed Sep 20, 2006 12:49 am
by Firedancer
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.

thxs Firedancer

Posted: Wed Sep 20, 2006 3:19 am
by tizu
I can compile my src.files,Thxs lot.

Posted: Thu Sep 21, 2006 8:34 am
by Dev Impy
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

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
So Handy!

Posted: Fri Sep 22, 2006 7:20 am
by Firedancer
Dev 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

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
So Handy!
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" line ;)