Skip to content

Capture Room # in Nexus Client

How do you do it?

I have the room #s turned on but struggle to have a trigger to capture the room number.  I believe I should be able to trigger of '. #####' or something similar but I can't seem to get the text right.  Help?

Comments

  • Hi! Depends on what you're trying to do. If you're trying to do a simple room call ("Help, I'm getting jumped in room X!"), here's a screenshot of what I use.

    https://imgur.com/kBcTRFU
  • Thanks that perfect
  • You could also grab it from onGMCP with something like this

    if (args.gmcp_method === "Room.Info"){
        room_area = (args.gmcp_args.area)
        room_num = (args.gmcp_args.num)
    }


    then you can use an alias with a script to process it

    client.send_direct("HELP I AM BEING ATTACKED IN "+room_num+" in "+room_area\n")


    I'm can't recall but if you are following someone I am not sure you get room numbers in the messages so triggers to grab it won't work, same with getting tossed into another room or in you are blacked out and moving room to room.  GMCP is probably just a bit more reliable then relying on a trigger. 
Sign In or Register to comment.