• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[JASS] A JASS Creep respawn system

Status
Not open for further replies.
Level 4
Joined
Jul 3, 2006
Messages
61
Currently I am searching after a good system to respawn creeps on their ORIGINAL position.
Meanwhile the game is running, the creeps also grow stronger (replaced).
Does someone has any suggestion for this?
I am trying to gather some idea's :).
Maybe important : its for a hero arena.
 
Level 6
Joined
May 19, 2004
Messages
267
3 most used respawn techuniqes: (from what I can think of now)
1.Random Point in Region
2.Dying Position
3.Units Position at map init

He wants to use 3
 
Level 5
Joined
Feb 16, 2006
Messages
151
Thunder_eye said:
3 most used respawn techuniqes: (from what I can think of now)
1.Random Point in Region
2.Dying Position
3.Units Position at map init

He wants to use 3
......
So those are the legendary most used respawn techniques...................
Lol.
Well, at least I don't care how most used they are.

Code:
Unit - Create 1 Footman for Player 1 (Red) at (Point(0.00, 0.00)) facing Default building facing (270.0) degrees
You can get the Point(x,y) in the map editor by pointing on a point with the mouse.(Bottom Left)
 
Level 4
Joined
Jul 3, 2006
Messages
61
You can get the Point(x,y) in the map editor by pointing on a point with the mouse.(Bottom Left)
.
oh thats right, I forgot that.
Thanks, I'll use that stuff for it :)
But in another way there has to be a code that activates the spawning and confirms the death of the previous unit.
 
Level 4
Joined
Jul 3, 2006
Messages
61
Hey SteelGopher, thanks for the script dude!
But what if I place already units and then
use X/Y to place them with triggers ?
Would the trigger-placed units also be under the command of the script?

Edit : I just came by the idea to use the X/Y placing triggers because this would prevent long-loading from the map, and lag.
 
Status
Not open for further replies.
Top