Search found 351 matches

by Rakon
Sun Jan 01, 2012 8:05 pm
Forum: Help Forum
Topic: Not finding global fishing
Replies: 8
Views: 4717

Re: Not finding global fishing

You need to read the error more closely. attempt to call field 'BaitHook' (a nil value) The script is finding your global fishing table just fine. What it is NOT finding, is the BaitHook value of the fishing table (which it shouldn't be, as you've defined fishing.BaitHook as a FUNCTION, not a table ...
by Rakon
Sun Jan 01, 2012 5:28 am
Forum: Help Forum
Topic: Keyboard stack
Replies: 7
Views: 4200

Re: Keyboard stack

You can use wiki.mudlet.org to look for functions and other useful items. However, I do not see appendCmdLine() listed there either...
by Rakon
Sun Jan 01, 2012 3:52 am
Forum: Help Forum
Topic: Keyboard stack
Replies: 7
Views: 4200

Re: Keyboard stack

Gharial - use appendCmdLine('text to append')
by Rakon
Tue Dec 27, 2011 4:04 am
Forum: Help Forum
Topic: Lua Error...
Replies: 3
Views: 2600

Re: Lua Error...

You can still use 'afflicts.aeon' in triggers to check for the afflicts.aeon key. However, you do not want to test it for 'true' or 'false' but instead, just true, or false. if not afflicts.aeon then -- This means if afflicts.aeon does not exist or is false send('do stuff here') end Or if afflicts.a...
by Rakon
Tue Dec 27, 2011 1:47 am
Forum: Help Forum
Topic: Lua Error...
Replies: 3
Views: 2600

Re: Lua Error...

The very last value in your table as a comma after it. It is the last value in the table, which means there should be no comma. Instead of idiocy = "false", make it idiocy = "false" . Another issue is that in your example you're attemping to assign variables, to string names, ins...
by Rakon
Sun Dec 25, 2011 1:13 am
Forum: Help Forum
Topic: Clickable links for shops
Replies: 5
Views: 3815

Re: Clickable links for shops

Yes, there is pagelength in Achaea.

Set an alias such as 'wares' to do 'config pagelength 250' and enable a prompt trigger. On the prompt trigger, send the reverse 'config pagelength 25' which is default.
by Rakon
Sat Dec 24, 2011 8:45 pm
Forum: Help Forum
Topic: Clickable links for shops
Replies: 5
Views: 3815

Re: Clickable links for shops

If your MUD supports it (IRE muds do) you should disable server side wrapping, and allow Mudlet to do that for you.
Failing that, your triggers to match and gate will become much more complex.
by Rakon
Sat Dec 24, 2011 2:43 am
Forum: General Forum
Topic: Network Latency - Question
Replies: 4
Views: 4494

Network Latency - Question

I know that you can get the current value of the LAST KNOWN network latency value using getNetworkLatency(). However, I would like to know if there is a function to return the current network latency timer value. That is, the value that is incremented as the network is waiting for a response. Exampl...
by Rakon
Fri Dec 23, 2011 9:38 pm
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 58649

Re: Mudlet-2.0-test4 released

Bluebaleen: you'll have to use git to get the latest sources to compile.

Ensure git-core-utils or whatever the base git package on your distro is, then issue the following in a terminal. This will pull in the current source tree.

Code: Select all

 git clone git://mudlet.git.sourceforge.net/gitroot/mudlet/mudlet
by Rakon
Thu Dec 22, 2011 2:02 am
Forum: Help Forum
Topic: Quick help..
Replies: 1
Views: 1721

Re: Quick help..

You asked for help on such an issue on the 23rd of NOV in this thread . I explained to you that such code was given to help you understand how to better write your own. Its now nearly a month later and it seems like you haven't been trying to learn ANYTHING about Mudlet, but instead still expecting ...