2015-01-11 19:50:29 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-29 07:38:46 +00:00
|
|
|
ADDON = false;
|
|
|
|
|
2015-09-28 15:11:53 +00:00
|
|
|
// interaction menu
|
2015-03-20 03:53:58 +00:00
|
|
|
PREP(addPassengerActions);
|
|
|
|
PREP(addPassengersActions);
|
2015-09-28 15:11:53 +00:00
|
|
|
PREP(getWeaponPos);
|
|
|
|
PREP(moduleInteraction);
|
|
|
|
PREP(removeTag);
|
|
|
|
|
|
|
|
// scroll wheel hint
|
|
|
|
PREP(showMouseHint);
|
|
|
|
PREP(hideMouseHint);
|
|
|
|
|
|
|
|
// interaction with units
|
2015-03-03 02:30:11 +00:00
|
|
|
PREP(canInteractWithCivilian);
|
2015-09-28 15:11:53 +00:00
|
|
|
PREP(getDown);
|
|
|
|
PREP(sendAway);
|
2015-04-26 18:57:55 +00:00
|
|
|
PREP(canJoinGroup);
|
|
|
|
PREP(canJoinTeam);
|
2015-09-28 15:11:53 +00:00
|
|
|
PREP(joinTeam);
|
2015-09-08 12:07:16 +00:00
|
|
|
PREP(canPassMagazine);
|
2015-10-06 15:50:55 +00:00
|
|
|
PREP(passMagazine);
|
2015-09-28 15:11:53 +00:00
|
|
|
PREP(canBecomeLeader);
|
2015-04-13 05:23:00 +00:00
|
|
|
PREP(doBecomeLeader);
|
2015-09-28 15:11:53 +00:00
|
|
|
PREP(canTapShoulder);
|
|
|
|
PREP(tapShoulder);
|
2015-09-28 15:20:56 +00:00
|
|
|
PREP(canPardon);
|
|
|
|
PREP(pardon);
|
2015-09-28 15:11:53 +00:00
|
|
|
|
|
|
|
// interaction with doors
|
2015-01-12 04:26:07 +00:00
|
|
|
PREP(getDoor);
|
|
|
|
PREP(getDoorAnimations);
|
2015-09-28 18:07:01 +00:00
|
|
|
PREP(handleScrollWheel);
|
2015-01-12 04:26:07 +00:00
|
|
|
PREP(openDoor);
|
2015-09-28 15:11:53 +00:00
|
|
|
|
|
|
|
// interaction with boats
|
2015-01-12 04:26:07 +00:00
|
|
|
PREP(push);
|
2015-01-18 18:38:27 +00:00
|
|
|
|
2015-10-15 09:49:08 +00:00
|
|
|
|
2015-08-22 18:00:26 +00:00
|
|
|
PREP(switchLamp);
|
2015-01-18 18:38:27 +00:00
|
|
|
|
2015-01-29 07:38:46 +00:00
|
|
|
ADDON = true;
|