
pvp_y_room,52,27,4	trader	PvP Shop	4_F_KAFRA7,{
	OnInit:
	tradertype(NST_CUSTOM);

	sellitem 30060,1;
	sellitem 30061,1;	
	sellitem 30062,1;
	end;

/* allows currency to be item 501 and 502 */
OnCountFunds:
	setcurrency(#PCTIME);
	end;

/* receives @price (total cost) and @points (the secondary input field for cash windows) */
OnPayFunds:
	if((#PCTIME) < @points) end;
	set #PCTIME,#PCTIME-@price;
	purchaseok();
	end;
}