when the player started
1
2
3
4
5
6
2
3
4
5
6
addhook("spawn","_spawn")
function _spawn(id,type)
if ("type<=51 and type>=49") then
return x
	end
end
can you help me fix it?
Scripts
Strip Usp/Glock at start
Strip Usp/Glock at start
1

addhook("spawn","_spawn")
function _spawn(id,type)
if ("type<=51 and type>=49") then
return x
	end
end
addhook("spawn","_spawn")
function _spawn(id)
	return "x" -- or parse("strip "..id) will do the same thing either way.
end
Thank you.
Rainoth: awesome! love you!
omg has written
omg.
alex72super has writtenaddhook('spawn','spawn_hook')
function spawn_hook(id)
if player(id,'team')==1 then
parse('strip '..id..' 2')
else
parse('strip '..id..' 1')
end
end
IRAN TOWN has written
alex72super has writtenaddhook('spawn','spawn_hook')
function spawn_hook(id)
if player(id,'team')==1 then
parse('strip '..id..' 2')
else
parse('strip '..id..' 1')
end
end
Rainoth already gave me a code and its more simpler i guess thanks anyway.
1
