Hey guys,
I'm working on a chatroom-like TA and I'm having a problem. In order to PM someone the player is moved into a new room and the main chat conversation, which is a turn script, won't disable.
Login:
msg ("<b><i>Login Required. Username:</b></i>")
get input {
player.alias = result
msg ("{player.alias}<br/><br/><b><i>Password:</b></i>")
get input {
player.password = result
msg ("{player.password}<br/><br/><font color=green>Login Successful</font>")
EnableTurnScript (CHATROOM1)
}
}
Then, when you're moved into the PM room, this is the code before you enter the room:
DisableTurnScript (CHATROOM1)
It should be simple, right? I'm not sure where I'm going wrong here. I've moved the disable code all around and nothing is working. I also have it clear the screen and change the background when you move rooms, and that works fine. It's only the turn script that won't disable.
Thanks!