Forum
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 07:52:52 am
, can you help me?
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
Coolhand: That required one's on Dead only, which is like Kamikaze Zombie. Anyways, spawning gut bomb on attack, don't you think it is too much overpowered?
Talented Doge: Uff, i forgot that he wanted it on death. btw yeah it would be better if it is on attack2 and not in attack1.
nmcpoyaesl: Just adding class zombie named Kamikaze zombie on zp_classes.lua in zombieplague 1.15, done!
nmcpoyaesl: check my zombielua script (zombie! mode in lua) , you can teach yourself by watching other scripts, systems, and other interesting things you can will do
1

Offline