I need this command to make a reapeated script work.. I can probally script around if it isnt there...
You could create a global int to remember what room a certain char is in. I checked the manual, and I could not find anything, nor rememeber anything that could help besides the global ints.
I was about to say I ended up scripting around using a global int :)
if you want to check if char NAME is in room 10:
if (character[NAME].room==10) {
code here...
}