caspa Posted January 9, 2013 Posted January 9, 2013 can i request an npc that exchange 100 cashpoints to 10 donations pods/TCG card, i dont want the normal way like settting a cashshop and selling the pods on it. i just kinda want it to be unique =D thx in advanced Quote
1 Capuche Posted January 12, 2013 Posted January 12, 2013 prontera,155,155,4 script Converter 83,{ .@name$ ="[^FF0000Converter^000000]"; mes .@name$; mes "Hello, 10 cashpoints is equals to 1 TCG."; mes "What would you like to do?"; next; switch( select("Cash to TCG","TCG to Cash") ) { case 1: mes .@name$; mes "How many TCG(s) do you want?"; input .@num; next; if( .@num <= 0 || #CASHPOINTS < .@num * 10 ) { mes .@name$; mes "Sorry, you don't have enough cashpoints!"; close; } mes .@name$; mes "This will cost ^FF0000" +(.@num * 10)+ " cashpoints^000000."; next; if( select("Proceed:Nevermind") -1 ) { mes .@name$; mes "Goodbye!"; close; } set #CASHPOINTS, #CASHPOINTS - .@num * 10; dispbottom "Lost: " +(.@num * 10)+ " cashpoints. Total: " +#CASHPOINTS+" cashpoints."; getitem 7227, .@num; break; case 2: mes .@name$; mes "How many TCG(s) will you give?"; input .@num; next; if( .@num <= 0 || countitem(7227) < .@num ) { mes .@name$; mes "Sorry, you don't have enough TCG!"; close; } mes .@name$; mes "I can give you ^FF0000" +(.@num * 10)+ " cashpoints^000000 for this."; next; if( select("Proceed:Nevermind") -1 ) { mes .@name$; mes "Goodbye!"; close; } set #CASHPOINTS, #CASHPOINTS + .@num * 10; dispbottom "Gained: " +(.@num * 10)+ " cashpoints. Total: " +#CASHPOINTS+" cashpoints."; delitem 7227,.@num; } close; } 1 Quote
Capuche Posted January 9, 2013 Posted January 9, 2013 i just kinda want it to be unique =D thx in advanced Tell us what you think to be unique and we will do it for you ! Quote
ICEROCK Posted January 9, 2013 Posted January 9, 2013 http://www.eathena.ws/board/index.php?showtopic=255331 Quote
Capuche Posted January 12, 2013 Posted January 12, 2013 replace mes "What would you like to do? to mes "What would you like to do?"; And mes "Sorry, you don't have enough cashpoints! to mes "Sorry, you don't have enough cashpoints!"; Quote
mrlongshen Posted January 12, 2013 Posted January 12, 2013 prontera,155,155,4 script Converter 83,{ .@name$ ="[^FF0000Converter^000000]"; mes .@name$; mes "Hello, 10 cashpoints is equals to 1 TCG."; mes "What would you like to do?"; next; switch( select("Cash to TCG","TCG to Cash") ) { case 1: mes .@name$; mes "How many TCG(s) do you want?"; input .@num; next; if( .@num <= 0 || #CASHPOINTS < .@num * 10 ) { mes .@name$; mes "Sorry, you don't have enough cashpoints!"; close; } mes .@name$; mes "This will cost ^FF0000" +(.@num * 10)+ " cashpoints^000000."; next; if( select("Proceed:Nevermind") -1 ) { mes .@name$; mes "Goodbye!"; close; } set #CASHPOINTS, #CASHPOINTS - .@num * 10; dispbottom "Lost: " +(.@num * 10)+ " cashpoints. Total: " +#CASHPOINTS+" cashpoints."; getitem 7227, .@num; break; case 2: mes .@name$; mes "How many TCG(s) will you give?"; input .@num; next; if( .@num <= 0 || countitem(7227) < .@num ) { mes .@name$; mes "Sorry, you don't have enough TCG!"; close; } mes .@name$; mes "I can give you ^FF0000" +(.@num * 10)+ " cashpoints^000000 for this."; next; if( select("Proceed:Nevermind") -1 ) { mes .@name$; mes "Goodbye!"; close; } set #CASHPOINTS, #CASHPOINTS + .@num * 10; dispbottom "Gained: " +(.@num * 10)+ " cashpoints. Total: " +#CASHPOINTS+" cashpoints."; delitem 7227,.@num; } close; } thanks. problem fix Quote
Emistry Posted January 12, 2013 Posted January 12, 2013 try these ? Exchanger [ Cashpoint to Coins ] Exchanger [ Poring Coin - Zeny ] Exchanger [ Points to Tickets ] Exchanger [ Item to Item ] Exchanger [ Item to Item ] Exchanger [ Multi Item to 1 Item ] 1 Quote
n0stalgia Posted September 12, 2013 Posted September 12, 2013 try these ? Exchanger [ Cashpoint to Coins ] Exchanger [ Poring Coin - Zeny ] Exchanger [ Points to Tickets ] Exchanger [ Item to Item ] Exchanger [ Item to Item ] Exchanger [ Multi Item to 1 Item ] Sir Emistry.. how bout PODS to Cash Points?.. is it possible?.. cuz im lookin for a script like that.. havent seen a working script of pods to cashpoints exchanger.. Quote
d706109 Posted October 4, 2013 Posted October 4, 2013 @n0stalgic, just edit the item number of cash point and Proof of donation and you'll have your answer to those scripts. Quote
Question
caspa
can i request an npc that exchange 100 cashpoints to 10 donations pods/TCG card, i dont want the normal way like settting a cashshop and selling the pods on it. i just kinda want it to be unique =D thx in advanced
11 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.