Jump to content
  • 0

Sell Status Point & Skill Point in Zeny / Item.


Yugosh

Question


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  65
  • Reputation:   0
  • Joined:  05/09/12
  • Last Seen:  

Follow the Topic.

i want the npc sell status / skill point in zeny or any item.

and the npc can buy your status / skill point also..

thanks /kis2

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  65
  • Reputation:   0
  • Joined:  05/09/12
  • Last Seen:  

Up2....

if it cant in item use zeny is np for me...

please share for me master /kis2

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  754
  • Reputation:   186
  • Joined:  05/22/12
  • Last Seen:  

prontera,136,203,4 script Skill Point Merchant 758,{
set @skprice, 1000000;
set @sksellprice, 500000;
mes "[^CC0000Skill Point Merchant^000000]";
mes "Hello "+strcharinfo(0)+"!";
mes "Each point will cost [^ff0000" +@skprice+ "z^000000] zeny.";
mes "and I can buy it for [^ff0000" +@sksellprice+ "z^000000] zeny.";
mes  "What do you want to do?";
next;
menu "Buy skill points!",L_skill,"Sell skill points!",L_sellskill,"No, thanks.",L_decline;
L_decline:
mes "[^CC0000Skill Point Merchant^000000]";
mes "Please come back soon.";
close;

L_skill:
if(Zeny<@skprice){
emotion 17;
mes "[^CC0000Skill Point Merchant^000000]";
mes "Sorry. You don't have enough money";
close;
}
else {
mes "[^CC0000Skill Point Merchant^000000]";
mes "How many skill points do you want to buy?";
input @skpoints;
next;
if(Zeny<@skpoints*@skprice){
mes "[^CC0000Skill Point Merchant^000000]";
mes"I'm sorry you don't have enough money for that...";
close;}
else{
set Zeny, Zeny-(@skpoints*@skprice);
set skillpoint, skillpoint+ @skpoints;
mes "[^CC0000Skill Point Merchant^000000]";
mes "There you go! Have a nice day.";
emotion 15;
close;
end;
}}

L_sellskill:
if(skillpoint<1){
emotion 17;
mes "[^CC0000Skill Point Merchant^000000]";
mes "Sorry. You don't have any skillpoint.";
close;
}
else {
mes "[^CC0000Skill Point Merchant^000000]";
mes "How many skill points do you want to sell?";
input @skpoints;
next;
if(@skpoints>skillpoint){
mes "[^CC0000Skill Point Merchant^000000]";
mes"I'm sorry you don't have enough skillpoints for that...";
close;}
if(@skpoints<1){
mes "[^CC0000Skill Point Merchant^000000]";
mes"Huh?!";
close;}
else{
set Zeny, Zeny+(@skpoints*@sksellprice);
set skillpoint, skillpoint- @skpoints;
mes "[^CC0000Skill Point Merchant^000000]";
mes "There you go! Have a nice day.";
emotion 15;
close;
end;
}
}
}

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