WhatFT Posted February 9, 2014 Group: Members Topic Count: 142 Topics Per Day: 0.03 Content Count: 511 Reputation: 7 Joined: 02/15/12 Last Seen: April 11, 2014 Share Posted February 9, 2014 Can I request for an Orb Exchanger NPC? How It Works : Exchanges 7257 to 7255 & 7256 via. 3 pcs 7257 = 1 7255 & 7256 via Thank you Quote Link to comment Share on other sites More sharing options...
nanakiwurtz Posted February 9, 2014 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 1654 Reputation: 583 Joined: 08/09/12 Last Seen: January 14, 2020 Share Posted February 9, 2014 (edited) prontera,155,180,3 script Exchanger 1002,{ mes "Hi, what do you want?"; next; menu "Exchange 3 "+getitemname(7257)+" to 1 "+getitemname(7255)+"",a1, "Exchange 3 "+getitemname(7257)+" to 1 "+getitemname(7256)+"",a2, "Exchange 1 "+getitemname(7255)+" to 3 "+getitemname(7257)+"",a3, "Exchange 1 "+getitemname(7256)+" to 3 "+getitemname(7257)+"",a4, "Cancel",quit; quit: mes "Come again later!"; close; quit2: mes "Thank you!"; close; a1: if (countitem(7257)<3) { mes "Sorry, but you need 3 "+getitemname(7257); goto quit; } else { delitem 7257,3; getitem 7255,1; goto quit2; } a2: if (countitem(7257)<3) { mes "Sorry, but you need 3 "+getitemname(7257); goto quit; } else { delitem 7257,3; getitem 7256,1; goto quit2; } a3: if (countitem(7255)<1) { mes "Sorry, but you need 1 "+getitemname(7255); goto quit; } else { delitem 7255,1; getitem 7257,3; goto quit2; } a4: if (countitem(7256)<1) { mes "Sorry, but you need 1 "+getitemname(7256); goto quit; } else { delitem 7256,1; getitem 7257,3; goto quit2; } } Edited February 9, 2014 by nanakiwurtz 1 Quote Link to comment Share on other sites More sharing options...
Kido Posted February 9, 2014 Group: Members Topic Count: 127 Topics Per Day: 0.03 Content Count: 1445 Reputation: 164 Joined: 08/17/13 Last Seen: July 11, 2019 Share Posted February 9, 2014 Can I request for an Orb Exchanger NPC? How It Works : Exchanges 7257 to 7255 & 7256 via. 3 pcs 7257 = 1 7255 & 7256 via Thank you 3pcs 7257 to exchange for a 7255 3pcs 7257 to exchange for a 7256 or 3pcs 7257 for 1 7255 and 1 7256? Quote Link to comment Share on other sites More sharing options...
WhatFT Posted February 9, 2014 Group: Members Topic Count: 142 Topics Per Day: 0.03 Content Count: 511 Reputation: 7 Joined: 02/15/12 Last Seen: April 11, 2014 Author Share Posted February 9, 2014 Can I request for an Orb Exchanger NPC? How It Works : Exchanges 7257 to 7255 & 7256 via. 3 pcs 7257 = 1 7255 & 7256 via Thank you 3pcs 7257 to exchange for a 7255 3pcs 7257 to exchange for a 7256 or 3pcs 7257 for 1 7255 and 1 7256? Yes it's vice versa Quote Link to comment Share on other sites More sharing options...
Kido Posted February 9, 2014 Group: Members Topic Count: 127 Topics Per Day: 0.03 Content Count: 1445 Reputation: 164 Joined: 08/17/13 Last Seen: July 11, 2019 Share Posted February 9, 2014 huh sry had to go D: 3 x 3 then? because it doesn't make sense hive 3 pcs 7257 for 1 7255 and 7256 D: Quote Link to comment Share on other sites More sharing options...
WhatFT Posted February 9, 2014 Group: Members Topic Count: 142 Topics Per Day: 0.03 Content Count: 511 Reputation: 7 Joined: 02/15/12 Last Seen: April 11, 2014 Author Share Posted February 9, 2014 huh sry had to go D: 3 x 3 then? because it doesn't make sense hive 3 pcs 7257 for 1 7255 and 7256 D: You can exchange 3 pcs 7257 to 1 pc 7255 You can exchange 3 pcs 7257 to 1 pc 7256 You can exchange 1 pc 7255 to 3 pcs 7257 You can exchange 1 pc 7256 to 3 pcs 7257 Quote Link to comment Share on other sites More sharing options...
Kido Posted February 11, 2014 Group: Members Topic Count: 127 Topics Per Day: 0.03 Content Count: 1445 Reputation: 164 Joined: 08/17/13 Last Seen: July 11, 2019 Share Posted February 11, 2014 cool o: mine was pretty bad xD WhatEft nanakiwurlz did it already ;D Quote Link to comment Share on other sites More sharing options...
WhatFT Posted February 11, 2014 Group: Members Topic Count: 142 Topics Per Day: 0.03 Content Count: 511 Reputation: 7 Joined: 02/15/12 Last Seen: April 11, 2014 Author Share Posted February 11, 2014 prontera,155,180,3 script Exchanger 1002,{ mes "Hi, what do you want?"; next; menu "Exchange 3 "+getitemname(7257)+" to 1 "+getitemname(7255)+"",a1, "Exchange 3 "+getitemname(7257)+" to 1 "+getitemname(7256)+"",a2, "Exchange 1 "+getitemname(7255)+" to 3 "+getitemname(7257)+"",a3, "Exchange 1 "+getitemname(7256)+" to 3 "+getitemname(7257)+"",a4, "Cancel",quit; quit: mes "Come again later!"; close; quit2: mes "Thank you!"; close; a1: if (countitem(7257)<3) { mes "Sorry, but you need 3 "+getitemname(7257); goto quit; } else { delitem 7257,3; getitem 7255,1; goto quit2; } a2: if (countitem(7257)<3) { mes "Sorry, but you need 3 "+getitemname(7257); goto quit; } else { delitem 7257,3; getitem 7256,1; goto quit2; } a3: if (countitem(7255)<1) { mes "Sorry, but you need 1 "+getitemname(7255); goto quit; } else { delitem 7255,1; getitem 7257,3; goto quit2; } a4: if (countitem(7256)<1) { mes "Sorry, but you need 1 "+getitemname(7256); goto quit; } else { delitem 7256,1; getitem 7257,3; goto quit2; } } Thank you Quote Link to comment Share on other sites More sharing options...
Question
WhatFT
Can I request for an Orb Exchanger NPC?
How It Works :
Thank you
Link to comment
Share on other sites
7 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.