Jump to content
  • 0
lakasmonk

Poring coin to Zeny and Zeny to Poring coin exchanger

Question

8 answers to this question

Recommended Posts

  • 1

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( [email protected] || (( .Rates * @Amount ) + Zeny ) > 1000000000 ){
   mes "Deal Cancelled.";
  }else{
   delitem 7539,@Amount;
   mes "Converted "[email protected]+" 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( [email protected] ){
   mes "Deal Cancelled.";
  }else{
   set Zeny,Zeny - ( @Amount * .Rates );
   mes "Converted "+( @Amount * .Rates )+" Zeny into "[email protected]+" Poring Coin.";
   getitem 7539,@Amount;
  }
 }
 next;
 break;
}
}
close;
}

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

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

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

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...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.