How do I..
Posted: Wed Nov 17, 2010 1:16 am
Make a team win the round in DM...
I looked in V2, but you can't use obj stuff in DM maps..
I looked in V2, but you can't use obj stuff in DM maps..
Code: Select all
teamwin( String axis_or_allies )lol. I figured it out though. My next problem is making it so only 1 team can activate a trigger...HeavenBound wrote: I looked in V2, but you can't use obj stuff in DM maps..
Code: Select all
if (parm.other.dmteam == "allies")
teamwin "allies"
Code: Select all
if(parm.other.dmteam == allies)
{
parm.other notTriggerable
}
Code: Select all
parm.other notTriggerable (maps/dm/mohdm1.scr, 105)
parm.other ^
^~^~^ Script Error: Failed execution of command 'nottriggerable' for class 'Player' Targetname 'player'
Code: Select all
if(parm.other.dmteam == "allies")
end
//then the rest of your thread script to be exec in case it's not allies