room_next

This will return the index of the room after the given room id.

Syntax:

room_next(numb);


Argument Description
numb The index of the base room to check from.


Returns: Real


Description

With this function you can retrieve the index of the room after the room input into the function. For example you can use the read only variable room to get the index of the current room and then use this function to find the room that follows it in the resource tree. If there is no room after the one you input then -1 is returned.


Example:

if room_next(room) != -1
   {
   room_goto_next());
   }

The above code will check to see if the next room exists and if so, it will go to it.


Back: Rooms
Next: room_previous
© Copyright YoYo Games Ltd. 2018 All Rights Reserved