How can I make the ecl files fron .src?

Here you can post threads requesting help on the official POL Ultima Online Emulator Core 095. Note: Core 095 is no longer officially supported.
Post Reply
tizu

How can I make the ecl files fron .src?

Post by tizu »

How can I make the ecl files fron .src?
ecall.bat err
Warning: DBGHELP.DLL too old, version 5.1+ required.
Firedancer
Grandmaster Poster
Posts: 104
Joined: Fri Feb 03, 2006 6:32 am

Post 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.
tizu

thxs Firedancer

Post by tizu »

I can compile my src.files,Thxs lot.
Dev Impy
Neophyte Poster
Posts: 30
Joined: Thu Aug 10, 2006 6:38 am

Post 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!
Firedancer
Grandmaster Poster
Posts: 104
Joined: Fri Feb 03, 2006 6:32 am

Post 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 ;)
Post Reply