$$ACTION Doors Activate door [d:Door] aDoorActivate Activate door Activates (i.e. opens and possibly closes) the specified door Parameters: Door: the object of the door to be activated $$END */
| 1739 | $$END |
| 1740 | */ |
| 1741 | void aDoorActivate(int objref) { |
| 1742 | msafe_struct mstruct; |
| 1743 | |
| 1744 | mstruct.objhandle = objref; |
| 1745 | |
| 1746 | MSafe_CallFunction(MSAFE_DOOR_ACTIVATE, &mstruct); |
| 1747 | } |
| 1748 | |
| 1749 | /* |
| 1750 | $$ACTION |