Jump to content
  • 0

Help > to do this script


coconutswt

Question


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  32
  • Reputation:   0
  • Joined:  01/13/14
  • Last Seen:  

prontera,155,170,4 script Ore Exchanger 100,{

mes "^3363A6[ Ore Exchanger ]^000000";
mes "Hello, dear Adventure! How can i help you?";
next;
menu "Exchange Bronze Coins 2 Silver Coins", BrC2SiC,
"Exchange Silver Coins 2 Gold Coins", SiC2GoC,
"Exchange Gold Coins 2 Platinum Coins", GoC2PlC;

BrC2SiC:
mes "^3363A6[ Ore Exchanger ]^000000";
mes "I want to note, that 1 Silver Coin cost 10 Brozne Coins, so do you want to continue?";
next;
if( select( "No, i want to leave", "Yes, exchange please" ) == 1 ) {
mes "^3363A6[ Ore Exchanger ]^000000";
mes "So, see you next time, and good luck!";
close;
}
if( countitem(673) < 1 ) {
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Excuse me, but you have no even 1 Bronze Coin... Come back later.";
emotion e_sry;
close;
}
if( countitem(673) < 10 ) {
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Excuse me, but you dont have enought Bronze Coins to exchange for our today course. You must have at least 10 Bronze Coins.";
close;
}
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Do you want to exchange all your Bronze Coins or just step by step 10 to 1?";
next;
switch( select( "Exchange all my Bronze Coins", "Exchange 10 to 1" ) ) {
case 1:
//set .@curr_bc_count, countitem(673);
set .@exchanged_coins, ( countitem(673) / 10 );
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Here you are!";
delitem 673, .@exchanged_coins * 10;
getitem 675, .@exchanged_coins;
close;

case 2:
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Here you are!";
delitem 673, 10;
getitem 675, 1;
close;
}

SiC2GoC:
mes "^3363A6[ Ore Exchanger ]^000000";
mes "I want to note, that 1 Gold Coin cost 10 Silver Coins, so do you want to continue?";
next;
if( select( "No, i want to leave", "Yes, exchange please" ) == 1 ) {
mes "^3363A6[ Ore Exchanger ]^000000";
mes "So, see you next time, and good luck!";
close;
}
if( countitem(675) < 1 ) {
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Excuse me, but you have no even 1 Bronze Coin... Come back later.";
emotion e_sry;
close;
}
if( countitem(675) < 10 ) {
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Excuse me, but you dont have enought Silver Coins to exchange for our today course. You must have at least 10 Silver Coins.";
close;
}
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Do you want to exchange all your Bronze Coins or just step by step 10 to 1?";
next;
switch( select( "Exchange all my Silver Coins", "Exchange 10 to 1" ) ) {
case 1:
//set .@curr_gc_count, countitem(675);
set .@exchanged_coins, ( countitem(675) / 10 );
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Here you are!";
delitem 675, .@exchanged_coins * 10;
getitem 671, .@exchanged_coins;
close;

case 2:
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Here you are!";
delitem 675, 10;
getitem 671, 1;
close;
}

GoC2PlC:
mes "^3363A6[ Ore Exchanger ]^000000";
mes "I want to note, that 1 Platinum Coin cost 10 Gold Coins, so do you want to continue?";
next;
if( select( "No, i want to leave", "Yes, exchange please" ) == 1 ) {
mes "^3363A6[ Ore Exchanger ]^000000";
mes "So, see you next time, and good luck!";
close;
}
if( countitem(671) < 1 ) {
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Excuse me, but you have no even 1 Bronze Coin... Come back later.";
emotion e_sry;
close;
}
if( countitem(671) < 10 ) {
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Excuse me, but you dont have enought Silver Coins to exchange for our today course. You must have at least 10 Silver Coins.";
close;
}
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Do you want to exchange all your Gold Coins or just step by step 10 to 1?";
next;
switch( select( "Exchange all my Gold Coins", "Exchange 10 to 1" ) ) {
case 1:
//set .@curr_pc_count, countitem(671);
set .@exchanged_coins, ( countitem(671) / 10 );
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Here you are!";
delitem 671, .@exchanged_coins * 10;
getitem 677, .@exchanged_coins;
close;

case 2:
mes "^3363A6[ Ore Exchanger ]^000000";
mes "Here you are!";
delitem 671, 10;
getitem 677, 1;
close;
}
}

Can anyone give me a little change to this script , i want this script to exchange :

 

1. 30 silver ore = 1 silver coin

2. 20 gold ore = 1 gold coin

3. 10 mithril ore = 1 mithril coin

Edited by sandbox
codebox'd
Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

Please try using code tags when posting scripts! It'll preserve tabs and add pretty colors both of which help us to complete your request.

[code]Like this![/code]
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...