Search found 7 matches

by JerleMinara
Thu Jun 16, 2011 9:50 pm
Forum: General Forum
Topic: Mudlet 2.0 supports Simutronics Games!
Replies: 12
Views: 37336

Mudlet 2.0 supports Simutronics Games!

This only works on Mudlet 2.0 git/final. It will not work in rc versions as of 6/16/11 1) Download the package from http://dl.dropbox.com/u/30076842/Simutronics.mpackage 2) Create a new profile and point it at eaccess.play.net port 7900 3) Install package into that profile. 4) Go to Scripts, Simutr...
by JerleMinara
Thu Jun 09, 2011 6:48 am
Forum: General Forum
Topic: Gemstone IV & Dragonrealms
Replies: 6
Views: 9155

Re: Gemstone IV & Dragonrealms

I've mostly implemented this in LUA by peeking at the Warlock client and implementing the password hashing system. Currently my mudlet can connect to eaccess, get a login key, and disconnect. Unfortunately there's no way to programmatically connect to a different mud server (Simu splits the servers ...
by JerleMinara
Sat Jan 02, 2010 8:45 pm
Forum: Help Forum
Topic: Persistent Variables?
Replies: 14
Views: 10673

Re: Persistent Variables?

Remember takes a string, not a variable reference.

Code: Select all

a = "somevalue"
echo (a .. "\n")
remember("a")
saveVars()
a = "deleted value"
echo(a .. "\n")
loadVars()
echo(a .. "\n")
by JerleMinara
Mon Dec 07, 2009 8:23 pm
Forum: Scripts & Packages
Topic: Variable Saving/Loading System
Replies: 1
Views: 3329

Re: Variable Saving/Loading System

This is currently in the Git, however HEAD is at a slightly older revision(The original incarnation that did table unpacking, which was ultimately unnecessary).

I'll poke Heiko about getting a commit up with this current version.
by JerleMinara
Sun Dec 06, 2009 4:10 am
Forum: Scripts & Packages
Topic: Variable Saving/Loading System
Replies: 1
Views: 3329

Variable Saving/Loading System

Vadi wanted to give you guys a crack at some new code coming next version, just to make sure it doesn't break. So, without further adieu.. Introducing the variable perstistence system. This is a way to store variables/tables/etc for later use! Currently it requires manual loading and saving, but onc...
by JerleMinara
Sat Dec 05, 2009 7:32 pm
Forum: Scripts & Packages
Topic: Echo with color.
Replies: 30
Views: 29661

Re: Echo with color.

I'll talk to heiko about getting rexlib bound in. No reason not to have regex-capable LUA!
by JerleMinara
Sat Dec 05, 2009 12:57 am
Forum: Scripts & Packages
Topic: RGB2Hex
Replies: 0
Views: 3483

RGB2Hex

This will be implemented in 1.0.5 or 1.1.0 whichever comes first -- Converts an RGB value into an HTML compliant(label usable) HEX number -- Example: RGB2Hex(255,255,255) returns "FFFFFF" function RGB2Hex(red,green,blue) return PadHexNum(string.format("%X",red)) .. PadHexNum(stri...