Creep Revival

icond3maker

New Member
Reaction score
6
Hello , I got this trigger reviving the dying creatures... :
Trigger:
  • Creep Reviving
    • Events
      • Unit - A unit Dies
    • Conditions
      • ((Owner of (Triggering unit)) Equal to Neutral Hostile) and (((Triggering unit) is Summoned) Not equal to True)
    • Actions
      • EGUI Effect - Create an effect at ((Center of (Entire map)) offset by (CREEPX[(Custom value of (Triggering unit))], CREEPY[(Custom value of (Triggering unit))])) using the model Abilities\Spells\NightElf\TrueshotAura\TrueshotAura.mdl that lasts for ((Real((Level of (Triggering unit)))) x 10.00) seconds
      • Wait ((Real((Level of (Triggering unit)))) x 10.00) seconds
      • Unit - Create 1 (Unit-type of (Triggering unit)) for Neutral Hostile at ((Center of (Entire map)) offset by (CREEPX[(Custom value of (Triggering unit))], CREEPY[(Custom value of (Triggering unit))])) facing Default building facing degrees
      • Unit - Set the custom value of (Last created unit) to (Custom value of (Triggering unit))


Once the creature die, when it's level is above 10 , they will not be revived... I don't know why??!! :confused:
Please help me!!
 
The units level 10 and up probably decay in that time. Make sure the creep decay time is BIGGER than the trigger's respawn time
 
The unit doesn't revive because once the corpse has decayed the unit disappears from the game, including any data that's used by your trigger such as the custom value and unit-type. This happens for higher level creep only because the increased wait period exceeds the decay period.

Just save these values as local variables and the trigger will work just fine regardless of what happens to the unit during the wait period:
Trigger:
  • Fixed Creep Reviving
    • Events
      • Unit - A unit Dies
    • Conditions
      • ((Owner of (Triggering unit)) Equal to Neutral Hostile) and (((Triggering unit) is Summoned) Not equal to True)
    • Actions
      • Custom script: local integer id = GetUnitTypeId(GetTriggerUnit())
      • Custom script: local integer data = GetUnitUserData(GetTriggerUnit())
      • Wait ((Real((Level of (Triggering unit)))) x 10.00) seconds
      • Custom script: set udg_Temp_Type = id
      • Custom script: set udg_Temp_Integer = data
      • Unit - Create 1 Temp_Type for Neutral Hostile at ((Center of (Entire map)) offset by (CREEPX[Temp_Integer], CREEPY[Temp_Integer])) facing Default building facing degrees
      • Unit - Set the custom value of (Last created unit) to Temp_Integer

Create a unit-type variable "Temp_Type" and integer variable "Temp_Integer" for this trigger to work.
 
The unit doesn't revive because once the corpse has decayed the unit disappears from the game, including any data that's used by your trigger such as the custom value and unit-type. This happens for higher level creep only because the increased wait period exceeds the decay period.

Just save these values as local variables and the trigger will work just fine regardless of what happens to the unit during the wait period:
Trigger:
  • Fixed Creep Reviving
    • Events
      • Unit - A unit Dies
    • Conditions
      • ((Owner of (Triggering unit)) Equal to Neutral Hostile) and (((Triggering unit) is Summoned) Not equal to True)
    • Actions
      • Custom script: local integer type = GetUnitTypeId(GetTriggerUnit())
      • Custom script: local integer data = GetUnitUserData(GetTriggerUnit())
      • Wait ((Real((Level of (Triggering unit)))) x 10.00) seconds
      • Custom script: set udg_Temp_Type = type
      • Custom script: set udg_Temp_Integer = data
      • Unit - Create 1 Temp_Type for Neutral Hostile at ((Center of (Entire map)) offset by (CREEPX[Temp_Integer], CREEPY[Temp_Integer])) facing Default building facing degrees
      • Unit - Set the custom value of (Last created unit) to Temp_Integer

Create a unit-type variable "Temp_Type" and integer variable "Temp_Integer" for this trigger to work.

I am having some problem with your code... I got this errors :
1. Missing linebreak before type declaration (local integer type = GetUnitTypeId(GetTriggerUnit()))
2. Invalid variable name "type" (local integer type = GetUnitTypeId(GetTriggerUnit()))
3. Missing linebreak before type declaration ( set udg_Temp_Type = type )
4. syntax error ( set udg_Temp_Type = type )

The error is the first sentence, the line is the one inside the ()...
 
Better solutions are decrease your wait(Isn't it long??) or Increase decay time from gameplay constants.
 
Better solutions are decrease your wait(Isn't it long??) or Increase decay time from gameplay constants.

I got it , replace the local integer "type" to local integer utype
and the set udg_Temp_Type = type to set udg_Temp_Type = utype...
 
Yes, apparently naming the variable "type" causes an error. Just renaming the variable does the trick. I apologize for not testing the trigger before posting it.
 
ummmm if this is still open might i suggest using this? revival.JPG if its not what your trying for just tell me
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    News portal has been retired. Main page of site goes to Headline News forum now
  • The Helper The Helper:
    I am working on getting access to the old news portal under a different URL for those that would rather use that for news before we get a different news view.
  • Ghan Ghan:
    Easily done
    +1
  • The Helper The Helper:
    https://www.thehelper.net/pages/news/ is a link to the old news portal - i will integrate it into the interface somewhere when i figure it out
  • Ghan Ghan:
    Need to try something
  • Ghan Ghan:
    Hopefully this won't cause problems.
  • Ghan Ghan:
    Hmm
  • Ghan Ghan:
    I have converted the Headline News forum to an Article type forum. It will now show the top 20 threads with more detail of each thread.
  • Ghan Ghan:
    See how we like that.
  • The Helper The Helper:
    I do not see a way to go past the 1st page of posts on the forum though
  • The Helper The Helper:
    It is OK though for the main page to open up on the forum in the view it was before. As long as the portal has its own URL so it can be viewed that way I do want to try it as a regular forum view for a while
  • Ghan Ghan:
    Yeah I'm not sure what the deal is with the pagination.
  • Ghan Ghan:
    It SHOULD be there so I think it might just be an artifact of having an older style.
  • Ghan Ghan:
    I switched it to a "Standard" article forum. This will show the thread list like normal, but the threads themselves will have the first post set up above the rest of the "comments"
  • The Helper The Helper:
    I don't really get that article forum but I think it is because I have never really seen it used on a multi post thread
  • Ghan Ghan:
    RpNation makes more use of it right now as an example: https://www.rpnation.com/news/
  • The Helper The Helper:
  • The Helper The Helper:
    What do you think Tom?
  • tom_mai78101 tom_mai78101:
    I will have to get used to this.
  • tom_mai78101 tom_mai78101:
    The latest news feed looks good
  • The Helper The Helper:
    I would like to see it again like Ghan had it the first time with pagination though - without the pagination that view will not work but with pagination it just might...
  • The Helper The Helper:
    This drink recipe I have had more than a few times back in the day! Mind Eraser https://www.thehelper.net/threads/cocktail-mind-eraser.194720/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top