Are you a Level Designer? Are you looking for help/support or other level designers? Then this is the group for you! Doesn't matter what you map for, if your a beginner or a professional this is the group for you.
How to open/close (already opened) doors on OT-64 SKOT. You may manage front and back doors.
Posted by EMSI on Dec 23rd, 2012
Intermediate Level Design/Theory.
To open the front doors (for driver and commander) use in the init line of the vehicle or in the script this code:
Where "skot" is the name of the vehicle in the editor.
To open the back cargo doors use in the init line of the vehicle or in the script this code:
Where "skot" is the name of the vehicle in the editor.
To close the front doors (for driver and commander) use in the init line of the vehicle or in the script this code:
skot animate ["BackDoorP",0];
Where "skot" is the name of the vehicle in the editor.
To close the back cargo doors use in the init line of the vehicle or in the script this code:
skot animate ["FrontDoorP",0];
Where "skot" is the name of the vehicle in the editor.