- Joined
- Dec 2, 2016
- Messages
- 733
//-- Sorry if this is the wrong forum for this. If wrong area where should I post jass issues?
--[[ The tutorial I was reading didn't make much sense, what does the gg_trg_TRIGGERNAMEHERE
What does the 'gg_trg' mean/stand for? --]]
//----------------------------------------------------------------------------------------------------
function test takes nothing returns nothing
local string a="This is a message"
call DisplayTextToForce( GetPlayersAll(), a )
endfunction
function InitTrig_Gold takes nothing returns nothing
set gg_trg_Gold = CreateTrigger()
call TriggerAddAction (gg_trg_Gold, function test)
endfunction
--[[ The tutorial I was reading didn't make much sense, what does the gg_trg_TRIGGERNAMEHERE
What does the 'gg_trg' mean/stand for? --]]
//----------------------------------------------------------------------------------------------------
function test takes nothing returns nothing
local string a="This is a message"
call DisplayTextToForce( GetPlayersAll(), a )
endfunction
function InitTrig_Gold takes nothing returns nothing
set gg_trg_Gold = CreateTrigger()
call TriggerAddAction (gg_trg_Gold, function test)
endfunction