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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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