Forum

> > CS2D > Scripts > people and zombies wrench
ForenübersichtCS2D-Übersicht Scripts-ÜbersichtEinloggen, um zu antworten

Englisch people and zombies wrench

4 Antworten
Zum Anfang Vorherige 1 Nächste Zum Anfang

alt people and zombies wrench

kewixasd
User Off Offline

Zitieren
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

alt Re: people and zombies wrench

Amaguya
User Off Offline

Zitieren
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
3× editiert, zuletzt 01.12.17 13:17:11
Zum Anfang Vorherige 1 Nächste Zum Anfang
Einloggen, um zu antworten Scripts-ÜbersichtCS2D-ÜbersichtForenübersicht