Jump to content
Sign in to follow this  
FelixK44

Trigger only activated by wheeled/tracked vehicle?

Recommended Posts

KK, So how can I create a trigger thats only activated by wheeled/tracked vehicles?

P.S. needs to be global so any tracked/wheeled will activate dont wana place units with names..............:o

Share this post


Link to post
Share on other sites

Activation: anybody

Condition: {_x iskindof "LandVehicle"} count thislist > 0

Ipso facto, QED :)

LandVehicle also includes static weapons IIRC, so you may actually want to specify:

Condition: {(_x iskindof "LandVehicle") && !(_x iskindof "StaticWeapon")} count thislist > 0

Share this post


Link to post
Share on other sites

Another way (more specific) would be:

Condition

{_x isKindOf "Tank" OR _x isKindOf "Car"} count thisList > 0

That should only fire for tracked/wheeled vehicles, if you find a vehicle that doesn't work with that then please post it for future reference ;)

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×