$$ACTION Objects Make object [o:Object] invulnerable for [i:Time=20.0] aObjMakeInvuln Makes object invulnerable Makes object invulnerable Parameters: Object: the object to make invulnerable Time: how long the object stays invulnerable $$END */
| 2942 | $$END |
| 2943 | */ |
| 2944 | void aObjMakeInvuln(int objref, int time) { |
| 2945 | msafe_struct mstruct; |
| 2946 | |
| 2947 | mstruct.objhandle = objref; |
| 2948 | mstruct.state = 1; |
| 2949 | mstruct.lifetime = time; |
| 2950 | |
| 2951 | MSafe_CallFunction(MSAFE_OBJECT_INVULNERABLE, &mstruct); |
| 2952 | } |
| 2953 | |
| 2954 | /* |
| 2955 | $$ACTION |
no outgoing calls
no test coverage detected