$$ACTION Rooms Turn [e:On/Off] fuelcen in room [r:Room] aRoomSetFuelcen Turn On/Off fuelcen in room Turns on or off the fuelcen in a room Parameters: On/Off: whether the fuelcen should be on or off Room: the room to set $$END */
| 2183 | $$END |
| 2184 | */ |
| 2185 | void aRoomSetFuelcen(int state, int roomnum) { |
| 2186 | msafe_struct mstruct; |
| 2187 | |
| 2188 | mstruct.roomnum = roomnum; |
| 2189 | mstruct.state = state; |
| 2190 | |
| 2191 | MSafe_CallFunction(MSAFE_ROOM_REFUEL, &mstruct); |
| 2192 | } |
| 2193 | |
| 2194 | /* |
| 2195 | $$ACTION |