Forum

> > CS2D > Scripts > people and zombies wrench
Forums overviewCS2D overview Scripts overviewLog in to reply

English people and zombies wrench

4 replies
To the start Previous 1 Next To the start

old people and zombies wrench

kewixasd
User Off Offline

Quote
Hi

my zombie server should be zombies and people wrench
I do not know how to set this up

thank you in advance for helping people

old Re: people and zombies wrench

Amaguya
User Off Offline

Quote
Add codes the following to sys/lua/server.lua

1
2
3
4
5
6
7
-- Spawn with USP + Knife + Wrench
addhook("spawn", "_spawn")
function _spawn(id)
	if (player(id, "team") == 2) then
		return "1, 74,"
	end
end

or

1
2
3
4
5
6
7
8
-- Spawn with USP + Wrench
addhook("spawn", "_spawn")
function _spawn(id)
	if (player(id, "team") == 2) then
		parse("strip "..id.." 50")
		return "1, 74,"
	end
end
edited 3×, last 01.12.17 01:17:11 pm
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview