Jump to content
  • 0

[Guide] Convert Script to eAthena compatible version.


Question

Posted (edited)

Since nobody really want to search in the forum before ask how to make it compatible with eAthena emulator ... I will just split the topics and PIN it ...


Random Questions :

  • Please help me convert the Script to eAthena / 3CEAM  !!!!
  • rAthena script doesnt work in eAthena ... HELP!!!!
  • Variables error / not recognized !!

 

Your Solution :

HlsudzW.jpg


 
Example : in latest rAthena /Hercules or other latest emulators

.@value = 12345;
.@value++;
.@value += 123;

.@string$ = "ABC";

for( .@i = 0; .@i < .@size; .@i++ )
for( .@i = 0; .@i < .@size; .@i += 3 )

 
When converted back to eAthena / 3CeaM / etc :

set .@value,12345;
set .@value,.@value + 1;
set .@value,.@value + 123;

set .@string$,"ABC";

for( set .@i,0; .@i < .@size; set .@i,.@i + 1 )
for( set .@i,0; .@i < .@size; set .@i,.@i + 3 )

** Did you noticed the pattern ?? it's the same for everywhere ...
 
Just Find and Replace these lines.

** To be honest, I really don't see what's the points of still using eAthena when it's already outdated.

Edited by Emistry
Updated.
  • Upvote 4
  • MVP 1

4 answers to this question

Recommended Posts

  • 0
Posted

If it's unknown script command in your eathena ...

 

add the missing script command  yourself ...

or update to either rathena or compatible version of emulators.

  • Upvote 1
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...