• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • 💡 We're thrilled to announce that our upcoming texturing contest is in the works, and we're eager to hear your suggestions! Please take this opportunity to share your ideas in this theme discussion thread for the Texturing Contest #34!
  • 🏆 Hive's 7th HD Modeling Contest: Icecrown Creature is now open! The frozen wastes of Icecrown are home to some of Azeroth’s most terrifying and resilient creatures. For this contest, your challenge is to design and model a HD 3D monster that embodies the cold, undead, and sinister essence of Icecrown! 📅 Submissions close on April 13, 2025. Don't miss this opportunity to let your creativity shine! Enter now and show us your frozen masterpiece! 🔗 Click here to enter!

[Trigger] Making MUI

Status
Not open for further replies.
Level 16
Joined
Oct 12, 2008
Messages
1,570
Hi Hivers,,

Im making a spell (throwing a fire ball at a unit, burning it) but i dont know how to make it MUI,
It is MPI now, but i need it to be MUI..

Can you help me?
I know it is something with the array, but what?:bored:

Thx,, and +rep for every usefull answer!!

Yixx,,
 
Last edited:
Level 16
Joined
Oct 12, 2008
Messages
1,570
Of course,, wait a sec,,

  • FE Cast
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Fire Eruption
    • Actions
      • Set FE_Array[(Player number of (Owner of (Casting unit)))] = (Player number of (Owner of (Casting unit)))
      • For each (Integer A) from 1 to 12, do (Actions)
        • Loop - Actions
          • Set FE_Target[FE_Array[(Integer A)]] = (Target unit of ability being cast)
          • Set FE_TargLoc[FE_Array[(Integer A)]] = (Position of (Target unit of ability being cast))
          • Set FE_Damage[FE_Array[(Integer A)]] = ((Real((Level of Fire Eruption for (Casting unit)))) x 3.00)
  • FE Damage
    • Events
      • Time - Every 0.25 seconds of game time
    • Conditions
    • Actions
      • For each (Integer A) from 1 to 12, do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • FE_Array[(Integer A)] Not equal to 0
            • Then - Actions
              • Unit - Cause FE_Target[FE_Array[(Integer A)]] to damage circular area after 0.00 seconds of radius 128.00 at FE_TargLoc[FE_Array[(Integer A)]], dealing 5.00 damage of attack type Normal and damage type Normal
              • Special Effect - Create a special effect attached to the chest of FE_Target[FE_Array[(Integer A)]] using Abilities\Spells\Items\AIfb\AIfbSpecialArt.mdl
              • Special Effect - Destroy (Last created special effect)
              • Set FE_Integers[FE_Array[(Integer A)]] = (FE_Integers[FE_Array[(Integer A)]] + 1)
              • Set FE_TargLoc[FE_Array[(Integer A)]] = (Position of FE_Target[FE_Array[(Integer A)]])
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • FE_Integers[FE_Array[(Integer A)]] Greater than or equal to 30
                • Then - Actions
                  • Set FE_Target[FE_Array[(Integer A)]] = No unit
                  • Set FE_Integers[FE_Array[(Integer A)]] = 0
                  • Set FE_Damage[FE_Array[(Integer A)]] = 0.00
                  • Set FE_Array[(Integer A)] = 0
                  • Custom script: call RemoveLocation(udg_FE_TargLoc[udg_FE_Array[GetForLoopIndexA()]])
                • Else - Actions
            • Else - Actions
Here you go,,

I have tried serveral things to make it MUI,
but i now posted the MPI version..
 
Status
Not open for further replies.
Top