Hello,
I'm trying to set up a way to be notified if I've been idle for 15, 20, and 25 minutes.
The way I thought of is to set up an alias that captures every command I send to the world and passes it through to the world, while at the same time creating 3 timers which set off a function that plays a "ding". However, I'm having trouble with the passing the command through to the world.
If I setup an alias to capture
and set up the body of the alias with the function:
If I set it to send this to the world and type the command look it sends this to the world:
If I set it to send to Script it sends this to the world:
I'm stumped because it seems to capture it properly when sending to the world, but not when sending to the script, then passing back to the world.
I'm trying to set up a way to be notified if I've been idle for 15, 20, and 25 minutes.
The way I thought of is to set up an alias that captures every command I send to the world and passes it through to the world, while at the same time creating 3 timers which set off a function that plays a "ding". However, I'm having trouble with the passing the command through to the world.
If I setup an alias to capture
^(.*?)$and set up the body of the alias with the function:
Send(%1)If I set it to send this to the world and type the command look it sends this to the world:
Send(look)If I set it to send to Script it sends this to the world:
nilI'm stumped because it seems to capture it properly when sending to the world, but not when sending to the script, then passing back to the world.