What is the problem if this one of eathena?
@edit
Oh, its offline.
Well, I maked this looking the code on post
I can make with sql if you want. Didn't test it.
-%TAB%Script%TAB%Sharingan%TAB%-1,{
OnInit:
set $idss1,sharingan lvl 1 id here;
set $idss2,sharingan lvl 2 id here;
set $idss3,sharingan lvl 3 id here;
set $ptsu2,points to up sharingan here to lvl 2;
set $ptsu3,points to up sharingan here to lvl 3;
end;
OnPcKillEvent:
if(isequipped($idss1) || isequipped($idss2) || isequipped($idds3)){
set pts,pts+1;
if(pts==$ptsu2){
unequip 9;
delitem $idss2,1;
getitem $idss3,1;
equip $idss3;
message strcharinfo(0),"Sharingan Upped!";
end;
}
if(pts==$ptsu3){
unequip 9;
delitem $idss1,1;
getitem $idss2,1;
equip $idss2;
message strcharinfo(0),"Sharingan Upped to Max LvL!";
end;
}
}
end;
}