Jump to content
  • 0

how to make skill points trader


Question

7 answers to this question

Recommended Posts

Posted

here the source link http://rathena.org/board/topic/88368-skill-points-seller-only/

 

 

here you need

prontera,150,150,0    script    Sample    -1,{
    mes "Input the points you want to purchase";
    next;
    input .@amount;
    set .@amount2 = 10*.@amount;
    if ((countitem(518) < .@amount2 ) // honey
        ||(countitem(1040) < .@amount2 ) //ELder Pixie's
        ||(countitem(1098) < .@amount2 ) //Manacles
        ||(countitem(7298) < .@amount2 ) //Fig Leaf

) {
        mes "You don't have enough Item Requirement.";
        mes "The requirements are:";
        mes "10 Honey";
        mes "10 Elder Pixie's Moustache";
        mes "10 Manacles";
        mes "10 Fig Leaf";
        close;
    }
    delitem 518, .@amount2;
    delitem 1040, .@amount2;
    delitem 1098, .@amount2;
    delitem 7298, .@amount2;
    SkillPoint += .@amount;
    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...