F2>Spawn
You will now spawn normally.
You will now spawn on your house.
Scripts
Spawn on Pos Lua
Spawn on Pos Lua
1

tbl = {99999}
isfine = {}
addhook("join","whoiswho")
function whoiswho(id)
	isfine[id]=0
end
addhook("serveraction","makefine")
function makefine(id,b)
	if b == 1 then
		for _,usgn in ipairs(tbl) do
			if player(id,"usgn")==usgn then
				if isfine[id]==0 then
					isfine[id]=1
					msg2(id,"Your text here")
				elseif isfine[id]==1 then
					isfine[id]=0
					msg2(id,"Your text here")
				end
			end
		end
	end
end
addhook("spawn","magic")
function magic(id)
	if isfine[id]==1 then
		timer(1000,"parse","setpos "..id.." 999 999")
	end
end
1
