View Single Post
  #6  
Old 11-07-2012, 12:53 PM
_79_dev _79_dev is offline
Approved Member
 
Join Date: Sep 2010
Location: Dublin
Posts: 242
Default

Hi Kodiak, in this part of script:

PHP Code:
 if (shortName.Equals("TPassThruTriggerName"))
        {
            
AiAction action GamePlay.gpGetAction(ActorName.Full(missionNumbershortName));

            if (
action != null)
            {
                
action.Do();
            }

            
//Add this for deaktivate the tpassthru trigger
            
GamePlay.gpGetTrigger(shortName).Enable false;


        } 
does this:

PHP Code:
if (action != null)
            {
                
action.Do();
            } 

have to be inside "if (shortName.Equals("TPassThruTriggerName"))" ?

does it mean that action will be done only for TPassThruTrigger?

Also deactivating trigger means to disable theme for good or after they invoked?

PHP Code:
 //Add this for deaktivate the tpassthru trigger
            
GamePlay.gpGetTrigger(shortName).Enable false
__________________

Asus P6T V2 Deluxe, I7 930, 3x2 GB RAM XMS3 Corsair1333 Mhz, Nvidia Leadtek GTX 470, Acer 1260p screen projector, Track IR 4 OS ver5, Saitek Pro Flight Rudder, Saitek X52, Win 7 x64 ultimate
Reply With Quote