<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">
	<onLoad><![CDATA[
	--=== key usage ===--
	--=== partytable  		NUMPAD1 ===--
	--=== print names	  	NUMPAD2 ===--
	--=== checkparty 100  	NUMPAD4 ===--
	--=== checkparty 200  NUMPAD5 ===--
	
cprintf(cli.blue, "Press numpad 1 to update party table names\n")
cprintf(cli.blue, "Press numpad 2 to print party names\n")
cprintf(cli.green, "Press numpad 4 to checkparty(100)\n")
cprintf(cli.green, "Press numpad 5 to checkparty(200)\n")
cprintf(cli.red, "Press Ctrl + L to exit\n")
	
	
	local delay = 1 -- time between key presses.
	local time = os.time()
	while(true) do

		if keyPressed(key.VK_NUMPAD1) and (os.time() - time > delay ) then
			PartyTable()
			time = os.time()
		end
		if keyPressed(key.VK_NUMPAD2) and (os.time() - time > delay ) then
			for k,v in ipairs(partymemberpawn) do
				print(k.." has name of "..v.Name)
			end
			time = os.time()
		end
		if keyPressed(key.VK_NUMPAD4) and (os.time() - time > delay ) then
			print(checkparty(100))
			time = os.time()
		end		
		if keyPressed(key.VK_NUMPAD5) and (os.time() - time > delay ) then
			print(checkparty(200))
			time = os.time()
		end	
	end
	]]></onLoad>
</waypoints>
