prontera,155,181,5 script Sample 757,{ if( getgmlevel() > 80 ){ mes "Input new item ID."; do{ input .@item,512,32767; }while( geitemname( .@item ) == "null" ); .itemid = .@item; mes "Updated with "+getitemname( .itemid ); } close; OnInit: getmapxy( .map$,.x,.y,1 ); while( 1 ){ if( .itemid ){ makeitem .itemid,1,.map$,( .x + rand( -5,5 ) ),( .y + rand( -5,5 ) ); } sleep 60000; } end; }