WEU Query

General talk about editing, cheating, and deprotecting maps.

Moderator: Cheaters

User avatar
CrackUps
Member
Posts: 96
Joined: October 6th, 2007, 12:21 am

WEU Query

Post by CrackUps »

Ok this probably isn't the most intelligent question but oh well.
How do you enable the Advanced Triggers in WEU I created a trigger that looks lik this:

AdvancedTriggers
Events
Map initialization
Conditions
Actions
Advanced - Initialize advanced triggers

But I get this error when trying to test the map:

Line 16: Expected a function name

globals
// Generated
trigger gg_trg_AdvancedTriggers = null
endglobals

function InitGlobals takes nothing returns nothing
endfunction

function Trig_AdvancedTriggers_Actions takes nothing returns nothing
call InitAdvancedTriggers( )
endfunction

//===========================================================================
function InitTrig_AdvancedTriggers takes nothing returns nothing
set gg_trg_AdvancedTriggers = CreateTrigger( )
call TriggerAddAction( gg_trg_AdvancedTriggers, function Trig_AdvancedTriggers_Actions )
endfunction

How do i get this to work?