nickk13579 0 Posted July 25, 2007 what do i have to do regarding scripting to make it so that only pilots can get into helicopters, only crewman can get into tanks, etc. I'm sure its nothing too complicated, i'm just not sure where to start. If anyone could help me out id appreciate it. Share this post Link to post Share on other sites
ManDay 0 Posted July 25, 2007 Trigger.Condition !( ( driver heli1 )in allowedDriversHeli1 ) ---OR--- Trigger.Condition !( ( typeOf driver heli1 )in allowedTypesHeli1 ) Trigger.onActivation ( driver heli1 )action[ "GET OUT",heli1 ]; ====OR==== Trigger.Condition !( player in allowedDriversHeli1 ) ---OR--- Trigger.Condition !( ( typeOf player )in allowedTypesHeli1 ) Trigger.onActivation heli1 lock true; Share this post Link to post Share on other sites
VanhA 10 Posted July 25, 2007 Check also BAS framework. It contains an sqf script for it. Very easy to use for beginners (like me) Share this post Link to post Share on other sites
fer 21 Posted July 25, 2007 Check also BAS framework. It contains an sqf script for it.Very easy to use for beginners (like me) Correct - BAS f contains this feature, which you can enable very easily (full instructions included in the illustrated manual). Get the latest build from the link in my signature. Share this post Link to post Share on other sites
nickk13579 0 Posted July 25, 2007 Thank you all for your help. The BAS f stuff works great! Share this post Link to post Share on other sites