Search found 48 matches

by bluebaleen
Fri Dec 23, 2011 8:00 pm
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 59804

Re: Mudlet-2.0-test4 released

Hi - where can one find the source code for the latest 2.0 release for compiling in Linux? I see a number of Windows executables and the reference to the Ubuntu PPA, but no actual tar ball. Thanks!
by bluebaleen
Mon Dec 05, 2011 4:41 pm
Forum: Help Forum
Topic: HTML Logging
Replies: 8
Views: 4802

Re: HTML Logging

I'm not using a script. I would just like for the HTML logging feature to work properly. When I start logging using the toggle button at the bottom right-hand corner of the client, I get a message that notes that logging has started and provides the asociated log file name. Unfortunately, the loggin...
by bluebaleen
Sun Dec 04, 2011 9:35 pm
Forum: Help Forum
Topic: HTML Logging
Replies: 8
Views: 4802

Re: HTML Logging

Bump ... Anyone?
by bluebaleen
Fri Nov 11, 2011 4:01 pm
Forum: Help Forum
Topic: HTML Logging
Replies: 8
Views: 4802

Re: HTML Logging

Bumping this thread .. I just began to have this same problem in Ubuntu 11.10 and Mudlet 2.0 (June, 12 2011). I end up having to highlight the entire log and use the right-click 'copy HTML' feature if I want a full HTML log because the client randomly cuts the log off after a short period of time. C...
by bluebaleen
Wed Sep 28, 2011 12:45 am
Forum: Help Forum
Topic: Duplicate entries in Lua database
Replies: 6
Views: 3683

Re: Duplicate entries in Lua database

That did it! Many thanks!
by bluebaleen
Tue Sep 27, 2011 3:30 pm
Forum: Help Forum
Topic: Duplicate entries in Lua database
Replies: 6
Views: 3683

Re: Duplicate entries in Lua database

Code for creating database (note the change in the db name from my previous post): db:create("playerstatus", { players = { name = "", status = "", class = "", _unique = { "name" }, _violations = "REPLACE" }, }) playerstatus.db = db:get_data...
by bluebaleen
Tue Sep 27, 2011 3:13 am
Forum: Help Forum
Topic: Duplicate entries in Lua database
Replies: 6
Views: 3683

Re: Duplicate entries in Lua database

As a consistency check I imported the database into an independent sqlite database viewer and there are definitely duplicates. It seems as if it is simply ignoring the _unique and _violations specifiers. I am running Ubuntu 11.04.
by bluebaleen
Mon Sep 26, 2011 9:25 pm
Forum: Help Forum
Topic: Duplicate entries in Lua database
Replies: 6
Views: 3683

Duplicate entries in Lua database

I am using the following code to create a database: db:create("mydb", { players = { name = "", status = "", class = "", _unique = { "name" }, _violations = "REPLACE" }, }) mydb.db = db:get_database("mydb") This code, when ran on a...
by bluebaleen
Sat Aug 20, 2011 5:16 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Modifiable permanent timers
Replies: 11
Views: 10762

Re: Modifiable permanent timers

Excellent. That did exactly what I needed it to. Thanks for your time!
by bluebaleen
Tue Aug 16, 2011 11:35 am
Forum: Howtos, FAQs and Tips & Tricks
Topic: Modifiable permanent timers
Replies: 11
Views: 10762

Re: Modifiable permanent timers

Hm, how would this work in the case of GUI Timers where the timer calls several functions at each firing?