Jump to content

Recommended Posts

  • 4 months later...
Posted

thanks for the script..can i use cashpoints instead of kafrapoints?

Sure you can but you need to change the variable..

What i mean is.. maybe from @points(Kafra_Points) into @cash(Cash_Points)..

Correct me if im were wrong.

Posted

Yea, replace this part

	.@amount2 = (.@amount * .NP); 
	.@points = (#KAFRAPOINTS);
	if (.@amount2 > .@points) {
		mes .NPC$;
		mes "You do not have enough points!";
		close;
	}
	if (#KAFRAPOINTS == 0) {
		mes .NPC$;
		mes "You have 0 kafra points!";
		close;
	}
	mes .NPC$;
    mes "Here you go!";
    set #KAFRAPOINTS,#KAFRAPOINTS - .@amount2;
    getitem .ID,.@amount;
    close;

into this

	.@amount2 = (.@amount * .NP); 
	.@points = (#CASHPOINTS);
	if (.@amount2 > .@points) {
		mes .NPC$;
		mes "You do not have enough points!";
		close;
	}
	if (#CASHPOINTS == 0) {
		mes .NPC$;
		mes "You have 0 kafra points!";
		close;
	}
	mes .NPC$;
    mes "Here you go!";
    set #CASHPOINTS,#CASHPOINTS - .@amount2;
    getitem .ID,.@amount;
    close;
Posted

 

thanks for the script..can i use cashpoints instead of kafrapoints?

Sure you can but you need to change the variable..

What i mean is.. maybe from @points(Kafra_Points) into @cash(Cash_Points)..

Correct me if im were wrong.

 

 

 

 

Yea, replace this part

	.@amount2 = (.@amount * .NP); 
	.@points = (#KAFRAPOINTS);
	if (.@amount2 > .@points) {
		mes .NPC$;
		mes "You do not have enough points!";
		close;
	}
	if (#KAFRAPOINTS == 0) {
		mes .NPC$;
		mes "You have 0 kafra points!";
		close;
	}
	mes .NPC$;
    mes "Here you go!";
    set #KAFRAPOINTS,#KAFRAPOINTS - .@amount2;
    getitem .ID,.@amount;
    close;

into this

	.@amount2 = (.@amount * .NP); 
	.@points = (#CASHPOINTS);
	if (.@amount2 > .@points) {
		mes .NPC$;
		mes "You do not have enough points!";
		close;
	}
	if (#CASHPOINTS == 0) {
		mes .NPC$;
		mes "You have 0 kafra points!";
		close;
	}
	mes .NPC$;
    mes "Here you go!";
    set #CASHPOINTS,#CASHPOINTS - .@amount2;
    getitem .ID,.@amount;
    close;

 

ok will try it on my test server..

  • 6 years later...
Posted
On 10/25/2014 at 3:11 PM, Radian said:

Yea, replace this part


	.@amount2 = (.@amount * .NP); 
	.@points = (#KAFRAPOINTS);
	if (.@amount2 > .@points) {
		mes .NPC$;
		mes "You do not have enough points!";
		close;
	}
	if (#KAFRAPOINTS == 0) {
		mes .NPC$;
		mes "You have 0 kafra points!";
		close;
	}
	mes .NPC$;
    mes "Here you go!";
    set #KAFRAPOINTS,#KAFRAPOINTS - .@amount2;
    getitem .ID,.@amount;
    close;

into this


	.@amount2 = (.@amount * .NP); 
	.@points = (#CASHPOINTS);
	if (.@amount2 > .@points) {
		mes .NPC$;
		mes "You do not have enough points!";
		close;
	}
	if (#CASHPOINTS == 0) {
		mes .NPC$;
		mes "You have 0 kafra points!";
		close;
	}
	mes .NPC$;
    mes "Here you go!";
    set #CASHPOINTS,#CASHPOINTS - .@amount2;
    getitem .ID,.@amount;
    close;

hi sir how about item to kafrapoints?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

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