How to: Create a Creep Revival System

Tinki3

Special Member
Reaction score
418
Post your current code. It is most likely a typo.

Keep in mind that when referencing global variables in JASS, or with Custom Script,
you must use the correct syntax, with everything being case sensitive:

'udg_' is always put before any global variable in JASS/CS.
'_' is used instead of spaces in variable names.

So..

Creep X, would become: udg_Creep_X, in JASS/CS.
 
A

Awestruck

Guest
An alternative to saving the unit location as coordinates would be creating a region for each unit and refering to it with an arrey variable in much the same way. This should counter the problem that arises when changing map boundaries.

I suggest, for the second trigger, putting the actions in an if/then/else and adding a condition checking for nearby units. If the condition returns false the unit wont be respawned obviously, that's why you add a "run this trigger" in the else-actions. This way the unit will be respawned almost as soon as no one is nearby to be ambushed by creeps magically apearing out of nowhere.

Just a few optional additions :)
 

The Pigeon

Cool Member
Reaction score
0
That's an impressive looking trigger. Getting creeps to respawn where they first appeared has been a thorn in my side for years (that and I didn't know the purpose of the custom unit value thing). One question though, at the bottom it says "This tutorial also includes a demo map: ". Where's the demo map?

UPDATE: Wait, never mind, I see it. It just doesn't show on the tutorials site.
(http://world-editor-tutorials.thehelper.net/cat_usersubmit.php?view=55581)

UPDATE: Just thought I'd mention how much I like the fact that the trigger's so LITTLE. My work around would have been as large as a map's worth of triggers.
 

NetherHawk

New Member
Reaction score
26
amazing as always Tinki3, but i have a question. When u revive the units, u put in a wait function of 5 sec, if 2 units die 1 after another, will the wait functions overlapp and only repsawn the unit that died later?
 

Magentix

if (OP.statement == false) postCount++;
Reaction score
107
Add a point variable array named tempPoint

Code:
Revive Creeps 1 by 1
    Events
        Unit - A unit Dies
    Conditions
        ((Owner of (Triggering unit)) Equal to Neutral Hostile) and (((Triggering unit) is Summoned) Not equal to True)
    Actions
        Wait 5.00 game-time seconds
        Unit - Create 1 (Unit-type of (Triggering unit)) for Neutral Hostile at ((Center of (Entire map)) offset by (Creep_X[(Custom value of (Triggering unit))], Creep_Y[(Custom value of (Triggering unit))])) facing (Random angle) degrees
        Unit - Set the custom value of (Last created unit) to (Custom value of (Triggering unit))

Can then be made leakless like this:

Code:
Revive Creeps 1 by 1
    Events
        Unit - A unit Dies
    Conditions
        ((Owner of (Triggering unit)) Equal to Neutral Hostile) and (((Triggering unit) is Summoned) Not equal to True)
    Actions
        Wait 5.00 game-time seconds
        Set tempPoint[1] = (Center of (Entire map))
        Set tempPoint[2] = tempPoint[1] offset by (Creep_X[(Custom value of (Triggering unit))], Creep_Y[(Custom value of (Triggering unit))])
        Unit - Create 1 (Unit-type of (Triggering unit)) for Neutral Hostile at tempPoint[2] facing (Random angle) degrees
        Unit - Set the custom value of (Last created unit) to (Custom value of (Triggering unit))
        Custom Script: call RemoveLocation(udg_tempPoint[1])
        Custom Script: call RemoveLocation(udg_tempPoint[2])

Assuming Center of Entire map doesn't leak and you'd want the trigger leakless
 

chewett

New Member
Reaction score
0
An alternative to saving the unit location as coordinates would be creating a region for each unit and refering to it with an arrey variable in much the same way. This should counter the problem that arises when changing map boundaries.

I suggest, for the second trigger, putting the actions in an if/then/else and adding a condition checking for nearby units. If the condition returns false the unit wont be respawned obviously, that's why you add a "run this trigger" in the else-actions. This way the unit will be respawned almost as soon as no one is nearby to be ambushed by creeps magically apearing out of nowhere.

Just a few optional additions :)

but this is exatly what i dont want to do as i dont want 100+ regions just for units

therefore i use point 0 0
 

Tinki3

Special Member
Reaction score
418
> if 2 units die 1 after another, will the wait functions overlapp and only repsawn the unit that died later?

No, as "Triggering unit" is used as reference to the dying unit, thus it is "MUI".
Triggering unit is not overwritten either.

In saying this, you can increase the wait interval to a large(r) number and the dying unit will still "revive".
 
X

ximbabwe0228

Guest
There is a much simpler way to do this for people who suk at variables (moi). Simply create a region where the creeps start. Text in braces {} represents individually-defined values. Text in brackets [] represents the trigger. Text in parentheses () represents underlined blue or red text in the editor.
*events*
-Unit - player owned unit event.
[a unit owned by (neutral hostile) (dies).]
*conditions*
-boolean -
[(event response - dying unit) is (a summoned unit) (equal to) (false).]
*actions*
-Unit - create
[Create (1) (event response - unit type of dying unit) at ({your region}) facing ({whatever}) angle.

I am not trying to degrade you in any way, Tinki3, and I appreciate your contribution.

also if u wanted only 1 res: either a) give it an ankh or b) as 1 last action do
-trigger - turn off
[Turn off (this trigger)].

Also +rep tinki3.
 

chango

New Member
Reaction score
1
Problem with the wait...

Hello,

Thanks for the tutorial i learn a lot of it, but it wont work fine for me :confused:. I have a problem with the wait action, if i put 4 sec or less works fine but if i use 5 sec or more the creep does not respawn.

Yes i have only one creep in my map :D

Here is the code of my trigger:

Code:
ReviveCreep
    Events
        Unit - A unit owned by Neutral Hostile Dies
    Conditions
        ((Triggering unit) is Summoned) Equal to False
    Actions
        Wait 4.00 game-time seconds
        Set tempPoint[1] = (Center of (Entire map))
        Set tempPoint[2] = (tempPoint[1] offset by (Creep_X[(Custom value of (Triggering unit))], Creep_Y[(Custom value of (Triggering unit))]))
        Unit - Create 1 (Unit-type of (Triggering unit)) for Neutral Hostile at tempPoint[2] facing (Random angle) degrees
        Unit - Set the custom value of (Last created unit) to (Custom value of (Triggering unit))
        Custom script:   call RemoveLocation(udg_tempPoint[1])
        Custom script:   call RemoveLocation(udg_tempPoint[2])

Also i have a item in the creep and i don't know how to make it to drop every time.

Any ideas ??

Thanks :D
 

Attachments

  • PrimerMapaChango.w3x
    31.2 KB · Views: 502

Warplord

Cool Member
Reaction score
0
Can I set it to Player 11 (Dark Green) also ?

Because I did ... and it doesn't revive anything .... :(
 
B

bakerpresent

Guest
this was really helpful.. im totally new to the WE and this helped me get to know it a little
i loaded the lost temple map for TFT and used this tutorial to make the creeps respawn. It took me a little while cause i had to search through all the triggers-events-conditions-actions menus.

was cool though thx

- bakerpresents
 
D

Dromm

Guest
expected a name?

Whenever I use this trigger and try to test/save my map it comes up with errors for the two customscript codes and says "Error: Expected a name"

can I get some help please?
 

Ynklig

New Member
Reaction score
0
If I got an items on the creep that dies, will the one that respawn have the same items? Or should it be more triggers for that?

Great tut anyway! :)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    I ordered like five blocks for 15 dollars. They're just little aluminum blocks with holes drilled into them
  • Varine Varine:
    They are pretty much disposable. I have shitty nozzles though, and I don't think these were designed for how hot I've run them
  • Varine Varine:
    I tried to extract it but the thing is pretty stuck. Idk what else I can use this for
  • Varine Varine:
    I'll throw it into my scrap stuff box, I'm sure can be used for something
  • Varine Varine:
    I have spare parts for like, everything BUT that block lol. Oh well, I'll print this shit next week I guess. Hopefully it fits
  • Varine Varine:
    I see that, despite your insistence to the contrary, we are becoming a recipe website
  • Varine Varine:
    Which is unique I guess.
  • The Helper The Helper:
    Actually I was just playing with having some kind of mention of the food forum and recipes on the main page to test and see if it would engage some of those people to post something. It is just weird to get so much traffic and no engagement
  • The Helper The Helper:
    So what it really is me trying to implement some kind of better site navigation not change the whole theme of the site
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top