R> Script that uses Battle Ground Points and Items

mybitch

New member
Messages
291
Points
0
Location
Prontera
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!

 
Yes : 

Code:
dispbottom "You currently have " +kvm_point+ " KVM points";
 
Last edited by a moderator:
Something like this :

Code:
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;} 
 
Back
Top