Creep Revival Trigger Issues.

Dridien

New Member
Reaction score
0
Alright, im trying to get a respawn trigger for an AoS that will respawn any pre-placed units where they were originally. it also has to be able to last longer than the decay time (edited to 30 seconds. respawn needs to be ~10-15 minutes) and spawn them for their original owner, not just neutral hostile.

After hours of trying it for myself and searching through tutorials and such, ive got it working... mostly.

The first few times the unit dies it works perfectly, but than just stops working for no explainable reason.

Here's what I've got so far.

This is run on Map Initiation with my, well, Initiation trigger.
Trigger:
  • Unit Group - Pick every unit in (Units in (Playable map area) matching ((((Triggering unit) is A structure) Equal to (==) False) and (((Triggering unit) is A Hero) Equal to (==) False))) and do (Actions)
    • Loop - Actions
      • Set Revive_Int = (Revive_Int + 1)
      • Unit - Set the custom value of (Picked unit) to Revive_Int
      • Set Revive_Unit[Revive_Int] = (Picked unit)
      • Set Revive_Player[Revive_Int] = (Owner of Revive_Unit[Revive_Int])
      • Custom script: set udg_Revive_X[udg_Revive_Int] = GetUnitX(GetEnumUnit())
      • Custom script: set udg_Revive_Y[udg_Revive_Int] = GetUnitY(GetEnumUnit())


Than for the actual revive trigger i have

JASS:
function Trig_Creep_Revive_Copy_Conditions takes nothing returns boolean
    if ( not ( GetUnitUserData(GetDyingUnit()) > 0 ) ) then
        return false
    endif
    return true
endfunction

function Trig_Creep_Revive_Copy_Actions takes nothing returns nothing
    local integer Revive_Custom
    set Revive_Custom = GetUnitUserData(GetTriggerUnit())
    call TriggerSleepAction( 10.00 )
    set udg_TempPoint1 = GetRectCenter(GetEntireMapRect())
    set udg_TempPoint2 = OffsetLocation(udg_TempPoint1, udg_Revive_X[Revive_Custom], udg_Revive_Y[Revive_Custom])
    call CreateNUnitsAtLoc( 1, GetUnitTypeId(udg_Revive_Unit[Revive_Custom]), udg_Revive_Player[Revive_Custom], udg_TempPoint2, GetRandomReal(0, 360.00) )
    call SetUnitUserData( GetLastCreatedUnit(), Revive_Custom )
    call RemoveLocation (udg_TempPoint1)
    call RemoveLocation (udg_TempPoint2)
endfunction

//===========================================================================
function InitTrig_Creep_Revive_Copy takes nothing returns nothing
    set gg_trg_Creep_Revive_Copy = CreateTrigger(  )
    call TriggerRegisterAnyUnitEventBJ( gg_trg_Creep_Revive_Copy, EVENT_PLAYER_UNIT_DEATH )
    call TriggerAddCondition( gg_trg_Creep_Revive_Copy, Condition( function Trig_Creep_Revive_Copy_Conditions ) )
    call TriggerAddAction( gg_trg_Creep_Revive_Copy, function Trig_Creep_Revive_Copy_Actions )
endfunction


I know almost nothing of jass, so the above trigger is 98% done in GUI than just converted. i than just made Revive_Custom a local.

Heres the GUI version of that
Trigger:
  • Creep Revive
    • Events
      • Unit - A unit Dies
    • Conditions
      • (Custom value of (Dying unit)) Greater than (>) 0
    • Actions
      • Set Revive_Custom = (Custom value of (Triggering unit))
      • Wait 10.00 seconds
      • Set TempPoint1 = (Center of (Entire map))
      • Set TempPoint2 = (TempPoint1 offset by (Revive_X[Revive_Custom], Revive_Y[Revive_Custom]))
      • Unit - Create 1 (Unit-type of Revive_Unit[Revive_Custom]) for Revive_Player[Revive_Custom] at TempPoint2 facing (Random real number between 0.00 and 360.00) degrees
      • Unit - Set the custom value of (Last created unit) to Revive_Custom
      • Custom script: call RemoveLocation (udg_TempPoint1)
      • Custom script: call RemoveLocation (udg_TempPoint2)


I have no idea whats wrong with it, to me it all seems perfect... but it just stops reviving certain units after a few deaths. also the 10 second respawn is only set like that for testing... cuz im not waiting 10-15 mins each test to see if it works :p
 

vypur85

Hibernate
Reaction score
803
Code:
Creep Revive
    Events
        Unit - A unit Dies
    Conditions
        (Custom value of (Dying unit)) Greater than (>) 0
    Actions
        Wait 10.00 seconds
        [B]Set Revive_Custom = (Custom value of (Triggering unit))[/B]
        Set TempPoint1 = (Center of (Entire map))
        Set TempPoint2 = (TempPoint1 offset by (Revive_X[Revive_Custom], Revive_Y[Revive_Custom]))
        Unit - Create 1 (Unit-type of Revive_Unit[Revive_Custom]) for Revive_Player[Revive_Custom] at TempPoint2 facing (Random real number between 0.00 and 360.00) degrees
        Unit - Set the custom value of (Last created unit) to Revive_Custom
        Custom script:   call RemoveLocation (udg_TempPoint1)
        Custom script:   call RemoveLocation (udg_TempPoint2)

Just change the above. Retain the use of GUI. It's still MUI. (Your JASS version has something wrong regarding your local integer. There should be a udg_ prefix for the variable) Anyway, remove the JASS code and use the GUI instead.
 

Dridien

New Member
Reaction score
0
Thank you for pointing out that it works in GUI form, but the same thing seems to happen even with the GUI trigger... i just understand what I'm doing a little more since its not Jass anymore :)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1

      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