If you want scripts / features made for you, then contact me by PM or email / skype etc it will cost you tho so if you have no intention of reciprocating don't even waste my time
Can you explain more on how to change the model? I really want to change it. I am almost done with my map I was working on for 3 months...It's my first one.
this looks REALLY good but if I wanted this zombie to spawn after a door/debris has been bought, would this KVP work with setting him to spawn after the door has been bought? target napalboss
or would it interfere with the KVP? target (zombiespawner name)
this looks REALLY good but if I wanted this zombie to spawn after a door/debris has been bought, would this KVP work with setting him to spawn after the door has been bought? target napalboss
or would it interfere with the KVP? target (zombiespawner name)
Code Snippet
Plaintext
napalm_spawn_cycle() { door = getEnt("doorname", "targetname"); // change kvp to your door trigger while(1) { door waittill("trigger",player); if(player.score >= door.cost) { thread spawn_napalm(); break; } } }