Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- prontera,155,171,5 script Sample 757,{
- if( getgmlevel() > 80 ){
- mes "Input new item ID.";
- do{
- input .@item,0,32767;
- if( !.@item ) break;
- }while( getitemname( .@item ) == "null" );
- .itemid = .@item;
- if( .@itemid ) mes "Updated with "+getitemname( .itemid );
- }
- close2;
- OnInit:
- getmapxy( .map$,.x,.y,1 );
- while( 1 ){
- if( .itemid ){
- makeitem .itemid,1,.map$,( .x + rand( -5,5 ) ),( .y + rand( -5,5 ) );
- }
- sleep 1000;
- }
- end;
- }
Advertisement
Add Comment
Please, Sign In to add comment