Page 1 of 1

Reloading scripts

Posted: Thu Aug 20, 2015 8:25 am
by bomjik
Hello.
In L2j you have the ability to replace some .java files, run reload scripts (for example), new .java files will recompile at live server without restart.
How's that process or ability called ? I want to read about it, but don't even know what to google. And anyone knows if there is the same thing in C# ?

Re: Reloading scripts

Posted: Thu Aug 20, 2015 9:13 am
by Zoey76
The reload command takes the files and compiles it using ECJ (Eclipse Compiler for Java), you can do the same on C# with CodeDom.

Re: Reloading scripts

Posted: Thu Aug 20, 2015 9:29 am
by bomjik
Thanks.