Jump to content
  • 0

Need Help Poring coin to Skull & Skull to Poring coin


Question

2 answers to this question

Recommended Posts

Posted

Here's my Skull and Poring Coin conversion NPC.

Please edit to your liking and sorry for the 'newbie' script. I'm still learning though.. /meh

///////
//uDe//
///////
new_1-2,95,29,5	script	NeutralRO Trader	421,{
mes "[^FF0000NeutralRO Trader^000000]";
mes "Hi..! ";
mes "I can convert your Skull to Poring Coin also Poring Coin to Skull.";
mes "";
mes "Both item needed for buying item or quest.";
mes " ";
next;
menu "[75]Skull to Poring Coin[25]",SK7525,"[150]Skull to Poring Coin[50]",SK15050,"[300]Skull to Poring Coin[100]",SK300100,"[600]Skull to Poring Coin[200]",SK600200,"[200]Poring Coin to Skull[600]",PC200600,"[100]Poring Coin to Skull[300]",PC100300,"[50]Poring Coin to Skull[150]",PC50150,"[25]Poring Coin to Skull[75]",PC2575,"Leave",CHOW;

SK7525:
if(countitem(7420) < 75) goto NOX;
mes "[^FF0000NeutralRO Trader^000000]";
mes "Oh, Great! Thanks..";
delitem 7420,75;
getitem 7539,25;
close;

SK15050:
if(countitem(7420) < 150) goto NOX;
mes "[^FF0000NeutralRO Trader^000000]";
mes "Oh, Great! Thanks..";
delitem 7420,150;
getitem 7539,50;
close;

SK300100:
if(countitem(7420) < 300) goto NOX;
mes "[^FF0000NeutralRO Trader^000000]";
mes "Oh, Great! Thanks..";
delitem 7420,300;
getitem 7539,100;
close;

SK600200:
if(countitem(7420) < 600) goto NOX;
mes "[^FF0000NeutralRO Trader^000000]";
mes "Oh, Great! Thanks..";
delitem 7420,600;
getitem 7539,200;
close;

PC200600:
if(countitem(7539) < 200) goto NOX;
mes "[^FF0000NeutralRO Trader^000000]";
mes "Oh, Great! Thanks..";
delitem 7539,200;
getitem 7420,600;
close;

PC100300:
if(countitem(7539) < 100) goto NOX;
mes "[^FF0000NeutralRO Trader^000000]";
mes "Oh, Great! Thanks..";
delitem 7539,100;
getitem 7420,300;
close;

PC50150:
if(countitem(7539) < 50) goto NOX;
mes "[^FF0000NeutralRO Trader^000000]";
mes "Oh, Great! Thanks..";
delitem 7539,50;
getitem 7420,150;
close;

PC2575:
if(countitem(7539) < 25) goto NOX;
mes "[^FF0000NeutralRO Trader^000000]";
mes "Oh, Great! Thanks..";
delitem 7539,25;
getitem 7420,75;
close;


NOX:
mes "[^FF0000NeutralRO Trader^000000]";
mes "Sorry, you don't have the required items to convert.";
close;

CHOW:
mes "[^FF0000NeutralRO Trader^000000]";
mes "Have a nice day.";
close;
}

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...