I dont think this will work on rAthena since these are not available. the Oridecon_Stone part now
// automatically turn all oridecon and elunium stone into pure stone to reduce player's weight
.@ori = countitem(Oridecon_Stone);
if ( .@ori >= 5 ) {
delitem Oridecon_Stone, .@ori / 5 * 5;
getitem Oridecon, .@ori / 5;
message strcharinfo(0), "Refined "+ ( .@ori / 5 * 5 ) +" Oridecon Stones, got "+ ( .@ori / 5 ) +" Oridecons.";
}
.@elu = countitem(Elunium_Stone);
if ( .@elu >= 5 ) {
delitem Elunium_Stone, .@elu / 5 * 5;
getitem Elunium, .@elu / 5;
message strcharinfo(0), "Refined "+ ( .@elu / 5 * 5 ) +" Elunium Stones, got "+ ( .@elu / 5 ) +" Eluniums.";
}
change that part into this
// automatically turn all oridecon and elunium stone into pure stone to reduce player's weight
.@ori = countitem(756);
if ( .@ori >= 5 ) {
delitem 756, .@ori / 5 * 5;
getitem 984, .@ori / 5;
message strcharinfo(0), "Refined "+ ( .@ori / 5 * 5 ) +" Oridecon Stones, got "+ ( .@ori / 5 ) +" Oridecons.";
}
.@elu = countitem(757);
if ( .@elu >= 5 ) {
delitem 757, .@elu / 5 * 5;
getitem 985, .@elu / 5;
message strcharinfo(0), "Refined "+ ( .@elu / 5 * 5 ) +" Elunium Stones, got "+ ( .@elu / 5 ) +" Eluniums.";
}