Jump to content
  • 0
Sign in to follow this  
mybitch

R> Script that uses Battle Ground Points and Items

Question

I would like to request a script that uses KVM Points and badges that's given by the battlegrounds. I don't want to use the current script which gives glorious items or sets. 

 

Is it possible to request a script that can buy items using the said points and badges above.. 

 

E.G.

 

For KVM Points - 1 NPC

Badges - 1 NPC

 

Thanks!

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Yes : 

dispbottom "You currently have " +kvm_point+ " KVM points";
Edited by Patskie

Share this post


Link to post
Share on other sites
  • 0

 

Yes : 

dispbottom "You currently have " +kvm_point+ " KVM points";

 

How to use this in an NPC shop? Like for example you can buy items using this points or badges..

Share this post


Link to post
Share on other sites
  • 0

Something like this :

switch(select("Mithril Coin:Yggdrasilberry:Nothing")) {	case 1:		// 1 Mithril Coin = 5 KVM points		geitem 674,1;		set kvm_point, kvm_point - 5;		dispbottom "You have remaining " +kvm_point+ " KVM points";		break;	case 2:		// 5 Yggdrasilberry = 10 KVM points		getitem 607,5;		set kvm_point, kvm_point - 10;		dispbottom "You have remaining " +kvm_point+ " KVM points";		break;	case 3:		mes "nothing";		break;	default:		 mes "Invalid choice";		break;} 

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.