Jump to content
  • 0

how to make skill points trader


unknownuser

Question


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  43
  • Reputation:   0
  • Joined:  10/13/13
  • Last Seen:  

how to add skill points trader !! and the requirements per skill points is

 

 

10 x fig leaf

10 x elder pixie's moustache

10 x manacle's

10 x honey pot

 

 

 

please help me :))

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  509
  • Reputation:   80
  • Joined:  11/20/11
  • Last Seen:  

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;
}


Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  509
  • Reputation:   80
  • Joined:  11/20/11
  • Last Seen:  

thanks

mark it as answered

 /ok

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  43
  • Reputation:   0
  • Joined:  10/13/13
  • Last Seen:  

thanks

mark it as answered

  /ok

 

sir i have problem in your script can you help me to fix ?? my players cant click the sptrader ..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  509
  • Reputation:   80
  • Joined:  11/20/11
  • Last Seen:  

it was not my script
i just edit the exist script sir

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

Show error if any

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