- Joined
- Nov 1, 2006
- Messages
- 1,612
I'm working on an ability that is similar to bloodlust, but cannot be the same since it must be able to be used at the same time. I found frenzy, which is exactly the same but for some reason will not cast through triggers using Orc Shaman - Bloodlust (Triggering Unit). It must be a different usecode then, correct?
Trigger:
Trigger:
-
lightningfury
-
Events
-
Unit - A unit Begins channeling an ability
-
-
Conditions
-
(Ability being cast) Equal to Lightning Fury (New- Battle Mage Dummy Ability)
-
-
Actions
-
Custom script: local location TempPoint = GetUnitLoc(GetTriggerUnit())
-
Custom script: call CreateNUnitsAtLoc( 1, 'h00G', GetOwningPlayer(GetTriggerUnit()), TempPoint, bj_UNIT_FACING )
-
Unit - Turn collision for (Last created unit) Off
-
Unit - Add Lightning Fury (Level 1) to (Last created unit)
-
Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
-
Unit - Order (Last created unit) to Orc Shaman - Bloodlust (Triggering unit)
-
Custom script: call RemoveLocation(TempPoint)
-
Custom script: set TempPoint = null
-
-