I'm working on a personal gui. Character Test is used with my gui.
There is a variable for current room like
character[TEST].room = current.room;
I can do it at the moment with
character[TEST].room = x;
x = where the room uses my gui.
But it could be simpler if I use a variable as current room.
Thanks in advance
Volcan
character[GetPlayerCharacter()].room
is the current room
Thanks.
It works.
Volcan