Revision 1, 0.6 kB
(checked in by jinshiro, 17 years ago)
|
|
Rev | Line | |
---|
[1] | 1 | prontera,160,182,5 script Deleter2 51,{ |
---|
| 2 | mes "Input item ID"; |
---|
| 3 | next; |
---|
| 4 | input @nameid; |
---|
| 5 | mes "Amount?"; |
---|
| 6 | next; |
---|
| 7 | input @amount; |
---|
| 8 | mes "Identified?"; |
---|
| 9 | next; |
---|
| 10 | input @iden; |
---|
| 11 | mes "How many times refined?"; |
---|
| 12 | next; |
---|
| 13 | input @ref; |
---|
| 14 | mes "Attribute?"; |
---|
| 15 | next; |
---|
| 16 | input @attr; |
---|
| 17 | mes "4 cards (one after another):"; |
---|
| 18 | next; |
---|
| 19 | input @c1; |
---|
| 20 | input @c2; |
---|
| 21 | input @c3; |
---|
| 22 | input @c4; |
---|
| 23 | mes "Your command is:"; |
---|
| 24 | mes "delitem2 "+@nameid+","+@amount+","+@iden+","+@ref+","+@attr+","+@c1+","+@c2+","+@c3+","+@c4; |
---|
| 25 | next; |
---|
| 26 | delitem2 @nameid,@amount,@iden,@ref,@attr,@c1,@c2,@c3,@c4; |
---|
| 27 | mes "And here is the moment when Your item should disappear :P"; |
---|
| 28 | close; |
---|
| 29 | } |
---|