Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ra_temsky,60,135,3 script Converter 83,{
- mes "[Converter]";
- mes "what can I do for you?";
- Goto L_cash;
- L_cash:
- next;
- mes "[Converter]";
- mes "Here the rates about the exchange:";
- mes "^FF33552 Cash^000000 - ^FF33551 Sacred Token^000000";
- mes "^FF33551 Sacred Token^000000 - ^FF33552 Cash^000000";
- mes "Tell me, what choice do you take?";
- next;
- menu "^FF33552 Cash^000000 - ^FF33551 Sacred Token^000000",M_10cash,"^FF33551 Sacred Token^000000 - ^FF33552 Cash^000000",M_1coin,"No ^FF3355Thanks^000000",L_No;
- M_10cash:
- next;
- mes "[Converter]";
- mes "Please wait a minute";
- if (#CASHPOINTS < 1) goto L_no;
- set #CASHPOINTS,(#CASHPOINTS - 2);
- getitem 20291,1;
- goto L_thanks;
- M_1coin:
- next;
- mes "[Converter]";
- mes "Please wait a minute";
- if (countitem(20291) < 1) goto L_no;
- set #CASHPOINTS,#CASHPOINTS + 2;
- delitem 20291,1;
- goto L_thanks;
- L_Thanks:
- mes "[Converter]";
- mes "Pleasure doing business with you.";
- close;
- L_No:
- mes "[Converter]";
- mes "Okay~ Bye!";
- close;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement