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!
Are you using Jass, if so it would have helped to state that.
I also have the feeling you are using an unprotected map because the triggers are compiled into a single trigger called "init" which is extremely long.
Anyways, if you don't know jass it's going to be difficult but basically look for something like this;
JASS:
function Sometrigger_func0293402 takes nothing returns nothing
endfunction
function Sometrigger_Actions takes nothing returns nothing
endfunction
function InitTrig_Sometrigg takes nothing returns nothing
set gg_trg_Sometrigg = CreateTrigger()
//blah
endfunction
That would all be a trigger called Sometrigg, so look for things like that.
So you would copy it, create a new trigger called Sometrigg and paste it in there (while removing it from init).
Are you using Jass, if so it would have helped to state that.
I also have the feeling you are using an unprotected map because the triggers are compiled into a single trigger called "init" which is extremely long.
Anyways, if you don't know jass it's going to be difficult but basically look for something like this;
JASS:
function Sometrigger_func0293402 takes nothing returns nothing
endfunction
function Sometrigger_Actions takes nothing returns nothing
endfunction
function InitTrig_Sometrigg takes nothing returns nothing
set gg_trg_Sometrigg = CreateTrigger()
//blah
endfunction
That would all be a trigger called Sometrigg, so look for things like that.
So you would copy it, create a new trigger called Sometrigg and paste it in there (while removing it from init).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.