Forum

> > CS2D > Scripts > wen man ne gutbomb schiest sol ein npc spawn
Forums overviewCS2D overview Scripts overviewLog in to reply

German wen man ne gutbomb schiest sol ein npc spawn

5 replies
To the start Previous 1 Next To the start

old Re: wen man ne gutbomb schiest sol ein npc spawn

hundesohn
User Off Offline

Quote
Meinst du wenn du die gut bomb wirfst das du dann spawnst auf dem fleck ?

vielleicht meinst du das :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- Projectile --

addhook("projectile","point.pro")
function point.pro(id,weapon,x,y)
if (weapon==53) then
parse("setweapon "..id.." 53")
parse("setpos "..id.." "..x.." "..y.."")
end
end

-- Spawn --

addhook("spawn","point.spawn")
function point.spawn(id)
parse("equip "..id.." 53")
end

old Re: wen man ne gutbomb schiest sol ein npc spawn

EngiN33R
Moderator Off Offline

Quote
1
2
3
4
addhook("projectile","spawnnpc")
function spawnnpc(id,weapon,x,y)
parse("spawnnpc 1 "..math.floor(x/32).." "..math.floor(y/32).." 0")
end
Dieser code wird ein zombie spawnen wo du dein gut bomb geworfen hast.

old Re: wen man ne gutbomb schiest sol ein npc spawn

DC
Admin Off Offline

Quote
ja, mit dem script spawnt bei jeder art von projektil (raketen/granaten) ein NPC (ausgeschlossen normale schüsse).

man müsste noch die if-bedingung mit weapon einbauen, welche hundesohn genannt hat.
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview