Jump to content
  • 0

Poring coin to Zeny and Zeny to Poring coin exchanger


lakasmonk

Question


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  231
  • Reputation:   24
  • Joined:  12/18/11
  • Last Seen:  

please can someone make me a poring coin to zeny and zeny to poring coin in one NPC exchanger

it will be very much appreciated thank you

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 1

  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

try this

prontera,155,181,5 script Sample 718,{
// 1 Poring Coin = How Many Zeny ?
set .Rates,100000;
while( 1 ){
switch( select("Poring Coin to Zeny:Zeny to Poring Coin") ){
Case 1:
 if( !countitem(7539) ){
  mes "You didnt have enough Poring Coin.";
 }else{
  mes "You have "+countitem(7539)+" Poring Coin.";
  mes "How many Poring Coin will be convert to zeny ?";
  input @Amount,0,countitem(7539);
  if( !@Amount || (( .Rates * @Amount ) + Zeny ) > 1000000000 ){
   mes "Deal Cancelled.";
  }else{
   delitem 7539,@Amount;
   mes "Converted "+@Amount+" of Poring Coin into Zeny.";
   mes "Gained Total of "+( .Rates * @Amount )+" of Zeny.";
   set Zeny,Zeny + ( .Rates * @Amount );
  }
 }
 next;
 break;
Case 2:
 if( Zeny < .Rates ){
  mes "You didnt have enough Zeny.";
 }else{
  mes "You have "+Zeny+" Zeny.";
  mes "How many Poring Coin you want ?";
  mes "You can get maximum of "+( Zeny / .Rates )+" Poring Coin.";
  input @Amount,0,( Zeny / .Rates );
  if( !@Amount ){
   mes "Deal Cancelled.";
  }else{
   set Zeny,Zeny - ( @Amount * .Rates );
   mes "Converted "+( @Amount * .Rates )+" Zeny into "+@Amount+" Poring Coin.";
   getitem 7539,@Amount;
  }
 }
 next;
 break;
}
}
close;
}

Edited by Emistry
  • Upvote 3
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  138
  • Topics Per Day:  0.03
  • Content Count:  835
  • Reputation:   25
  • Joined:  11/22/11
  • Last Seen:  

well. kinda usefull i also need. but for the poring coin exchange zeny not working =)

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

well. kinda usefull i also need. but for the poring coin exchange zeny not working =)

Can you please spend just few minutes / even few seconds to write it abit more details ?

:) Dang !! Explain !! Explain !! ~ . ~

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  231
  • Reputation:   24
  • Joined:  12/18/11
  • Last Seen:  

i use emistry script and it works perfect

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  120
  • Reputation:   0
  • Joined:  01/03/12
  • Last Seen:  

erm .. poring coin to cash point .. n skull to tcg .. emistry can u gv me that script?

sry bad english~~

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  68
  • Topics Per Day:  0.02
  • Content Count:  436
  • Reputation:   31
  • Joined:  02/19/12
  • Last Seen:  

how bout poring coin to poring coin box ? max of 300 pc in box? just tell me what line to add or change.. thanks :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   0
  • Joined:  03/16/12
  • Last Seen:  

work fine to me ~ Thanks emistry ! /ok

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  200
  • Reputation:   1
  • Joined:  09/25/13
  • Last Seen:  

can i also have,

1 proof of donation = 1,000 pcs 9524 (vice-versa)  // 9524 is the item ID on my server only /meh /meh

Thanks in advance

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...