Search found 232 matches

by Belgarath
Tue Jan 03, 2017 4:05 am
Forum: Whatever
Topic: Happy new year!
Replies: 1
Views: 32272

Re: Happy new year!

And may the odds be ever in your favour.
by Belgarath
Mon Nov 21, 2016 12:50 am
Forum: General Forum
Topic: Mudlet-3.0.0-iota (preview #6) is available!
Replies: 9
Views: 30769

Re: Mudlet-3.0.0-iota (preview #6) is available!

It wouldn't surprise me if those profiles are crashing for the same reason - I can't be the only person using sql databases in their script. Somewhat related to my initial post, I had to upload the previous windows version (Epsilon) to my github with it no longer being available for download on the...
by Belgarath
Mon Sep 19, 2016 2:02 am
Forum: Scripts & Packages
Topic: sendQueue function
Replies: 4
Views: 5928

Re: sendQueue function

Nice. Not sure how many people still use CMUD these days, but this would be a nice and easy substitute for the #wait function they have.
by Belgarath
Mon Sep 05, 2016 1:41 am
Forum: Mudlet Mapper
Topic: Generic Mapping Script
Replies: 441
Views: 459957

Re: Generic Mapping Script

I've noticed the mapper has issues parsing rooms that have a in/out exit in them. It will put them overtop the first room I created. Is this intentional? Apart from that it seems to work very well. All that's missing is an autowalking feature. +1
by Belgarath
Fri Jun 24, 2016 4:41 pm
Forum: Scripts & Packages
Topic: Simple Logger
Replies: 27
Views: 42796

Re: Simple Logger

Code: [show] | [select all] lua
local oldecho = echo
function echo(str)
  oldecho(str)
  if Logger.trigger_id then
    Logger:Log(Logger.logging_file, str)
  end
end
by Belgarath
Sat Jun 11, 2016 2:30 am
Forum: Help Forum
Topic: Inserting multiple matches into table
Replies: 1
Views: 2414

Re: Inserting multiple matches into table

Try using this pattern instead: ^"cauldron(\d+)"\s+a sturdy cauldron
by Belgarath
Wed May 11, 2016 4:34 am
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 706792

Re: Mudlet features and API requests

I'd find it very useful to have a function I can call to have the inbuilt logger ignore a certain line. Similar to denying the current send. e.g. -- exact match trigger: This is very spammy and doesn't need to be logged. ignoreLogOutput() I know there is a Logger script out already that could be pla...
by Belgarath
Tue Mar 29, 2016 12:00 am
Forum: Mudlet Development
Topic: Ubuntu setup
Replies: 19
Views: 23654

Re: Ubuntu setup

Nyyrazzilyss wrote:
Belgarath wrote: Did just that and unfortunately ran into another error during the compiling process (make -j 2). I end up getting this error:
That particular error was the first error I ran into on my original post: To fix,

sudo apt-get install libyajl-dev
Cheers mate, it worked. :)
by Belgarath
Mon Mar 28, 2016 8:51 am
Forum: Mudlet Development
Topic: Ubuntu setup
Replies: 19
Views: 23654

Re: Ubuntu setup

Reviving a dead post! 8-) I recently installed Ubuntu and I wanted to compile Mudlet, but I ran into to errors following the same wiki guidelines... Well you may do better if you remove the 1.55 specificness from the boost libraries that get installed - I suspect you have a later version available....
by Belgarath
Wed Mar 23, 2016 1:23 am
Forum: Mudlet Development
Topic: Mudlet 3.0.0-delta (preview #4)
Replies: 146
Views: 271539

Re: Mudlet 3.0.0-delta (preview #4)

Could the syntax highlighting be worked on a bit too?

Some things show up bad, for example:
Code: [show] | [select all] lua
-- looks good
send("whee")

-- looks ugly, especially with 'end' highlighted
send "heave"