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 :
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.