Forum

> > CS2D > Scripts > Spawn zombies at mouse position
ForenübersichtCS2D-Übersicht Scripts-ÜbersichtEinloggen, um zu antworten

Englisch Spawn zombies at mouse position

3 Antworten
Zum Anfang Vorherige 1 Nächste Zum Anfang

alt Re: Spawn zombies at mouse position

training
BANNED Off Offline

Zitieren
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
mousepos = {}
npc = 1

addhook("join","_join")
function _join(id)
mousepos[id] = {x=0 ,y=0} 
end

addhook("clientdata","cltdata")
function cltdata(id, mode, x, y)
if mode == 2 then
mousepos[id].x, mousepos[id].y = x, y
end
end

function spawn(id)
reqcld(id,2)
local x, y = math.floor(mousepos[id].x/32), math.floor(mousepos[id].y/32) 
parse('spawnnpc '..npc.." "..x.." "..y)
end

addhook("say","actn")
function actn(id,txt)
if txt == "npc" then
spawn(id)
return 1
end
end
Zum Anfang Vorherige 1 Nächste Zum Anfang
Einloggen, um zu antworten Scripts-ÜbersichtCS2D-ÜbersichtForenübersicht