Script is already given, you just have to put them together.
// http://rathena.org/board/topic/73163-helpplease-edit-this-script/#entry150560
prontera,147,186,5 script Healer 834,{
if (getbrokenid(1) >= 1) {
repairall;
}
set @NonIDCount, 0;
getinventorylist;
for(set @i, 0; @i < @inventorylist_count; set @i, @i + 1) {
if (@inventorylist_identify[@i] == 0) {
set @NonIDCount, @NonIDCount + 1;
}
}
if (@NonIDCount >= 1) {
for(set @i, 0; @i < @inventorylist_count; set @i, @i + 1) {
if (!@inventorylist_identify[@i]) {
delitem2 @inventorylist_id[@i],1,0,0,0,0,0,0,0;
getitem @inventorylist_id[@i],1;
}
}
}
skilleffect 28,9999;
percentheal 100,100;
skilleffect 33,0; sc_start SC_ANGELUS,360000,10;
skilleffect 34,0; sc_start SC_BLESSING,360000,10;
skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10;
emotion e_kis;
end;
}