prontera,155,181,4 script Sample#point 757,{
if( #POINT1 < 50 ){
mes "you need 50 point 1 to change to point 2";
}
else{
.@amount = ( #POINT1 / 50 );
#POINT1 -= ( .@amount * 50 );
#POINT2 += .@amount;
message strcharinfo(0),"You converted "+( .@amount * 50 )+" Point 1 to "+.@amount+" Point 2";
}
end;
}