caspa Posted January 9, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Share 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 Link to comment Share on other sites More sharing options...
1 Capuche Posted January 12, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share 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 Link to comment Share on other sites More sharing options...
Capuche Posted January 9, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share 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 Link to comment Share on other sites More sharing options...
ICEROCK Posted January 9, 2013 Group: Members Topic Count: 46 Topics Per Day: 0.01 Content Count: 228 Reputation: 33 Joined: 11/15/12 Last Seen: July 22, 2016 Share Posted January 9, 2013 http://www.eathena.ws/board/index.php?showtopic=255331 Quote Link to comment Share on other sites More sharing options...
caspa Posted January 9, 2013 Group: Members Topic Count: 194 Topics Per Day: 0.04 Content Count: 499 Reputation: 3 Joined: 03/11/12 Last Seen: September 18, 2023 Author Share Posted January 9, 2013 thx ya'll Quote Link to comment Share on other sites More sharing options...
mrlongshen Posted January 11, 2013 Group: Members Topic Count: 98 Topics Per Day: 0.02 Content Count: 1302 Reputation: 79 Joined: 12/04/12 Last Seen: September 26, 2019 Share Posted January 11, 2013 there are error. how to fix it ? Quote Link to comment Share on other sites More sharing options...
Capuche Posted January 12, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share 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 Link to comment Share on other sites More sharing options...
mrlongshen Posted January 12, 2013 Group: Members Topic Count: 98 Topics Per Day: 0.02 Content Count: 1302 Reputation: 79 Joined: 12/04/12 Last Seen: September 26, 2019 Share Posted January 12, 2013 still error ;( Quote Link to comment Share on other sites More sharing options...
mrlongshen Posted January 12, 2013 Group: Members Topic Count: 98 Topics Per Day: 0.02 Content Count: 1302 Reputation: 79 Joined: 12/04/12 Last Seen: September 26, 2019 Share 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 Link to comment Share on other sites More sharing options...
Emistry Posted January 12, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share 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 Link to comment Share on other sites More sharing options...
n0stalgia Posted September 12, 2013 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 47 Reputation: 0 Joined: 01/16/12 Last Seen: April 6 Share 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 Link to comment Share on other sites More sharing options...
d706109 Posted October 4, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 4 Reputation: 0 Joined: 09/30/13 Last Seen: May 8, 2016 Share 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 Link to comment Share on other sites More sharing options...
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
Link to comment
Share on other sites
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.