- Joined
- Feb 4, 2009
- Messages
- 1,314
Question:
How to replace the standard undead building loop effect with this one?
I just downloaded this model:
Northrend Undead Building Birth - Page 2 - The Hive Workshop - A Warcraft III Modding Site
and tried to apply it
I didn't try the way it was explained there because it didn't seem to be MUI so i tried it myself using JASS
(second thing I am using JASS for so this might be the problem....)
whats happening:
-the unit is invisible for 10 seconds
-the animation too
it makes sense but it was explained that way there so what to doto fix it?
thx in advance
How to replace the standard undead building loop effect with this one?
I just downloaded this model:
Northrend Undead Building Birth - Page 2 - The Hive Workshop - A Warcraft III Modding Site
and tried to apply it
I didn't try the way it was explained there because it didn't seem to be MUI so i tried it myself using JASS
(second thing I am using JASS for so this might be the problem....)
JASS:
function Trig_Untitled_Trigger_001_Actions takes nothing returns nothing
local effect lastone = null
call SetUnitVertexColorBJ( GetTriggerUnit(), 100, 100, 100, 100.00 )
call AddSpecialEffectTargetUnitBJ( "origin", GetTriggerUnit(), "war3mapImported\\UBirth.mdx" )
set lastone = GetLastCreatedEffectBJ()
call PolledWait( 10.00 )
call DestroyEffectBJ( lastone )
call SetUnitVertexColorBJ( GetTriggerUnit(), 100, 100, 100, 0.00 )
endfunction
whats happening:
-the unit is invisible for 10 seconds
-the animation too
it makes sense but it was explained that way there so what to doto fix it?
thx in advance