Search found 42 matches

by britanica
22 Nov 2015 02:09
Forum: Web Client Bugs and Feature Requests
Topic: Mobiles and tablets
Replies: 6
Views: 7250

Re: Mobiles and tablets

cotillion wrote:Check if it's better now.
I switched to a narrower font for mobile devices.
Sweet
by britanica
22 Nov 2015 01:54
Forum: Web Client General Discussion
Topic: trigger speed/usage of resources
Replies: 1
Views: 1988

Re: trigger speed/usage of resources

It is my current understanding that the gwc.userdata object is serialized and sent the the server every time you issue a command. If that assumption is true, it is faster for game play to declare a var in the javascript trigger instead of initializing and storing that information in gwc.userdata as ...
by britanica
17 Nov 2015 10:42
Forum: Game - Help
Topic: Where to grind on which level?
Replies: 191
Views: 154160

Re: Where to grind on which level?

Greenhorne-Apprentice level: Gibberers north of Green Oaks

For over 20 years, a favorite grinding spot of mine. More because I start off with magic using characters who can't fight and they are about the only thing they can grind against to pay for skills.
by britanica
30 Oct 2015 09:48
Forum: Web Client General Discussion
Topic: Marking in colour one word
Replies: 20
Views: 11312

Re: Marking in colour one word

------------
by britanica
30 Oct 2015 09:47
Forum: Web Client General Discussion
Topic: Marking in colour one word
Replies: 20
Views: 11312

Re: Marking in colour one word

Would it not be safer, to use the trigger :(diamond|wielding|wearing) ... I don´t know how it works, but i would image it would slow the entire thing down too, with checking everything. You are correct on both counts. Specifically looking for individual words is safer and faster I did update my tri...
by britanica
22 Oct 2015 09:50
Forum: Web Client General Discussion
Topic: Touch Screen Web Client Mods
Replies: 5
Views: 4734

Re: Touch Screen Web Client Mods

In 1991, I found muds and only had tiny talk, in 1992 I found tiny fugue and the joys of triggers.
In 1993, it was one of my dreams to be able to mud from my HP48GX.

2015 Living the dream ... :D
by britanica
21 Oct 2015 12:17
Forum: Web Client General Discussion
Topic: Touch Screen Web Client Mods
Replies: 5
Views: 4734

Touch Screen Web Client Mods

I have been wanting to pass my commute to work playing Genesis but have encountered several obstacles in accomplishing any successful adventuring, be that questing, herbing or grinding. I learned to touch type playing muds and certain typed responses became second nature to me and happen in the blin...
by britanica
11 Oct 2015 01:23
Forum: Web Client General Discussion
Topic: Getting last command passed by user
Replies: 4
Views: 3418

Re: Getting last command passed by user

The code will work in either an alias or a trigger

The difference between the two is that the code for a trigger is run in response to the client receiving a message from the mud server. An alias runs the code when the client receives a command from the player.
by britanica
10 Oct 2015 07:33
Forum: Web Client General Discussion
Topic: Getting last command passed by user
Replies: 4
Views: 3418

Re: Getting last command passed by user

A very late answer on what I found works. var keys = Object.keys(mud.InputHistory.history); var last = keys[keys.length-1]; gwc.output.append('last command: ' + mud.InputHistory.history[last]); The command triggered from the numpad directions does not get added to the history. Directions where the f...
by britanica
10 Oct 2015 01:18
Forum: Web Client General Discussion
Topic: Marking in colour one word
Replies: 20
Views: 11312

Re: Marking in colour one word

To change the colour of individual words you can use the following Trigger Pattern: (.*) var hilites = ['diamond', 'wielding', 'wearing']; hilites.forEach( function(word) { gwc.output.replace(word, '<span style="color: rgb(255,255,0)">' + word + '</span>', true); }); This will result in th...