Forum
CS2D Scripts HOW to make a lua zombie?HOW to make a lua zombie?
13 replies 1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-------------------------------------------------- -- Spawn Equip by Unreal Software -- -- 22.02.2011 - www.UnrealSoftware.de -- -- Equip players with certain items on spawn -- -------------------------------------------------- if sample==nil then sample={} end sample.spawnequip={} -- Equip the following items (74 = Wrench) sample.spawnequip.itemlist="74"; -------------------------------------- -- SPAWN -- -------------------------------------- addhook("spawn","sample.spawnequip.spawn") function sample.spawnequip.spawn() 	return sample.spawnequip.itemlist; end
The simplest Zombie survival script like this, copy this to notepad and save as a *.lua file and put it into autorun folder.
Better one with utsfx and resetscore scripts
Quote
'cut bomb'
You means "Gut" Bomb right, you can use spawnprojectile to do this.
Uh, how to do this? Refer to the projectiles.lua file inside samples folder.
You should addhook to die too.
edited 1×, last 28.02.15 08:52:52 am
As you can see you can't understand the above really simple code in Lua so how you want to write really big script like zombie plague.
lmgtfy.com/?q=CS2D+Lua+
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
addhook("attack", "onAttack1") function onAttack1(id) 	local wpn = player(id, "weapontype"); 	 	if wpn == 78 then 		local rot = player(id, "rot"); 		local i; 		for i = 1, 1 do 			parse("spawnprojectile " .. id .. " 86 " .. player(id, "x") .. " " .. player(id, "y") .. " 255 " .. (rot + math.random(-1, 1))); 		end 	end end
1