Search found 114 matches

by Denarii
Thu Jul 21, 2011 8:20 pm
Forum: Help Forum
Topic: cecho's insertText flag
Replies: 9
Views: 5578

Re: cecho's insertText flag

I had finally gotten around to fixing this today. :/ I'm also trying to add cinsertLink, but insertLink isn't implemented properly. Heiko left out the custom format flag.
by Denarii
Sat May 14, 2011 5:02 pm
Forum: Whatever
Topic: Minecraft
Replies: 13
Views: 12584

Re: Minecraft

You're whitelisted :)
by Denarii
Sat May 14, 2011 3:46 am
Forum: Whatever
Topic: Minecraft
Replies: 13
Views: 12584

Re: Minecraft

My server's address is aristocracy.dyndns.org:6098

Post or PM me your minecraft account name If you want me to put you on the whitelist.
by Denarii
Sat Mar 19, 2011 5:14 am
Forum: Help Forum
Topic: Table problems
Replies: 1
Views: 1978

Re: Table problems

It would be helpful if you posted your trigger for grabbing the key info from the mud.
by Denarii
Sun Mar 13, 2011 6:33 am
Forum: Mudlet Development
Topic: cecho improvements for links
Replies: 2
Views: 2574

Re: cecho improvements for links

I added cechoLink, dechoLink and hechoLink. When I get around to fixing cinsertText, I'll add cinsertLink as well.
by Denarii
Sat Feb 26, 2011 3:40 pm
Forum: Help Forum
Topic: Aaaaargh!
Replies: 12
Views: 8280

Re: Aaaaargh!

i don't seem to understand how to initialize tables at login, i'm trying to add a function to my init() script - function venoms() venoms = {} venoms.w = "wyg" venoms.s = ... end and it doesn't seem to be doing anything. and for the alias i'm using this version - send("outpouch "...
by Denarii
Fri Feb 25, 2011 4:21 pm
Forum: Help Forum
Topic: Special characters
Replies: 16
Views: 13415

Re: Special characters

How does Mudlet currently handle Unicode data? If it's altered in any way, can you create a branch of Mudlet where it just passes the raw byte sequence on to Lua? I've got a Unicode library for Lua that I could try to integrate into LuaGlobal in a way that's transparent for users, overriding the nor...
by Denarii
Tue Feb 22, 2011 4:23 pm
Forum: Help Forum
Topic: cecho() to a miniConsole
Replies: 5
Views: 3662

Re: cecho() to a miniConsole

The manual is really out of date. Cecho used to use all those arguments, but I changed it to make it simpler and use the same pattern of arguments as echo.
by Denarii
Mon Feb 21, 2011 5:23 am
Forum: Whatever
Topic: Minecraft
Replies: 13
Views: 12584

Minecraft

Any other Minecraft junkies around?

I run a server for myself and IRC friends. If people are interested, I could open it up to the Mudlet community.
by Denarii
Tue Feb 08, 2011 1:53 am
Forum: Help Forum
Topic: lua question: matches[n] shorthand syntax?
Replies: 7
Views: 4965

Re: lua question: matches[n] shorthand syntax?

After reading anouther post on the forum. It occured to me that you could always put the following at the head of your trigger scripts... given that 'matches' is a Lua table. m=matches --any other code here... (I have not tested but being that m and matches are global tables... you may only have to...