Pattern: You eat a mana herb.
Execute: #ALARM +61 {eat mana herb}
Just wondering if it is possible to do the same somehow in the client? It certainly would make staying logged in at work easier for me.

https://www.genesismud.org/play/" />
Moderator: Eowul
Zhar wrote: "Man, this guild I'm in is so god damn powerful! Please nerf or I'll have to leave it because it's no fun any more..."
Code: Select all
function eatHerb() {
gwc.connection.send("eat herb");
}
setTimeout(eatHerb, 5000);
Cool! Thanks!cotillion wrote:Easy with a javascript trigger:
Code: Select all
function eatHerb() { gwc.connection.send("eat herb"); } setTimeout(eatHerb, 5000);
Zhar wrote: "Man, this guild I'm in is so god damn powerful! Please nerf or I'll have to leave it because it's no fun any more..."