• 🏆 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!

Moonwells & Mana regeneration

Status
Not open for further replies.

Rem

Rem

Level 7
Joined
Apr 12, 2017
Messages
230
i was attempting to modify the moonwell so that its mana regeneration works both day and night, but i couldn't find any way to do this, ....is its aspect of only regenerating mana by night hard coded??

Also how would i go about creating a similar structure that only regenerates mana either by day or night??

any help would be greatly appreciated
 
Level 13
Joined
Mar 29, 2012
Messages
530
Or you can do the workaround with triggers, here's an example:
  • Daytime Regeneration
    • Events
      • Time - Every 1.00 seconds of game time
    • Conditions
      • (In-game time of day) Greater than or equal to 6.00
      • (In-game time of day) Less than 18.00
    • Actions
      • Custom script: set bj_wantDestroyGroup = true
      • Unit Group - Pick every unit in (Units of type Moon Well) and do (Actions)
        • Loop - Actions
          • Unit - Set mana of (Picked unit) to ((Mana of (Picked unit)) + 1.25)
 
Status
Not open for further replies.
Top