I wanna ask something..
Possible to make a specific area to VIPs?
So only specific(USGN) players can across this areas?
other players die if walk to this area..
Scripts
Specific VIP Area
Specific VIP Area
1

kalis: I think he is asking for help for making it
VIPmove = {}
addhook("movetile","_movetile")
function _movetile(id,x,y)
	local state = true
	if player not vip then
		parse("setpos "..id.." "..((VIPmove[id][1]*32)+16).." "..((VIPmove[id][2]*32)+16))
		state = false
	end
end
1
