• 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.

[Spell] Does Critical strike stack?

Status
Not open for further replies.
Suppose you had three critical strikes. 1 strike for 5% chance to deal 5x damage, 10% chance to deal 3x damage, 15% chance to deal 2x damage.

The trigger would look like this:

  • Critical Strike
    • Events
      • Game - DamageModifierEvent becomes Equal to 1.00
    • Conditions
      • DamageEventOverride Equal to false
    • Actions
      • Set Multiplier = 1.00
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Random Integer Number between 1 and 100) Less than or Equal to 5
        • Then - Actions
          • Set Multiplier = 5.00
        • Else - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Random Integer Number between 1 and 100) Less than or Equal to 10
        • Then - Actions
          • Set Multiplier = (Multiplier + 2.00)
        • Else - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Random Integer Number between 1 and 100) Less than or Equal to 15
        • Then - Actions
          • Set Multiplier = (Multiplier + 1.00)
        • Else - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Multiplier Not Equal to 1.00
        • Then - Actions
          • Set DamageEventAmount = (DamageEventAmount x Multiplier)
          • Set DamageEventOverride = true
          • -------- Do floating text stuff here --------
        • Else - Actions
 
Status
Not open for further replies.
Top