Vadi2011-03-03 00:34:58
Yes, see http://mudlet.org/asciidoc/manual.html for new ones
Ushaara2011-03-11 01:45:50
More a general scripting question that Mudlet specific, but could someone tell me how I could keep only 2 decimal places say, if looking to echo percentages? Thanks.
Ytran2011-03-11 02:47:53
When printing stuff, you should be able to do something like string.format("%.2d", myNumber) - the syntax might not be exact on the format specifier. Alternatively, if you need the number itself to be kept at the two decimal places, you can do, say, math.floor(myNumber * 100) / 100, or more generally, math.floor(myNumber * 10^x) / 10^x, where x is the number of decimal places you want, though this will not be exact with some numbers.
Ushaara2011-03-11 02:57:16
Lovely stuff. Thanks!
Lilia2011-03-15 21:01:39
How come this works:
for key in pairs(power.bards) do
echo("\\n" ..table.concat(power.bards, ", "))
end
But this doesn't?:
for key in pairs(power.bards) do
echo("\\n" ..power.bards)
end
for key in pairs(power.bards) do
echo("\\n" ..table.concat(power.bards, ", "))
end
But this doesn't?:
for key in pairs(power.bards) do
echo("\\n" ..power.bards)
end
Unknown2011-03-15 21:54:39
The first uses table.concat to turn a table into a string. The second tries to treat a table as a string.
Lilia2011-03-15 22:20:53
Aha! Thank you. I managed to make it do what I wanted anyways, but this is good to know.
Fuyu2011-03-25 09:30:50
halp. I tried the nexus-y skin but only the bars loaded and there were no labels at all. I didn't know how to remove it so I just deleted the folder for it in the Scripts area. now my whole screen is indented and it seriously hurts my eyes.
Vadi2011-03-25 12:03:04
Images didn't show because you didn't follow instructions to tell it where images are. Indenting can be set back to 0 in the preferences.
Fuyu2011-03-25 13:37:23
QUOTE (Vadi @ Mar 25 2011, 08:03 PM) <{POST_SNAPBACK}>
Images didn't show because you didn't follow instructions to tell it where images are. Indenting can be set back to 0 in the preferences.
I was probably looking at the wrong place again and didn't notice what I have to do. Sorry and thanks!
Lilia2011-03-27 23:14:47
For table.save( file, table ), how do I format the 'file' part? Does it need to already exist, or will it be created the first time the table is saved? Can I save more than one table to the same file?
EDIT: Somehow, I managed to guess everything correctly the first time!
EDIT: Somehow, I managed to guess everything correctly the first time!
Dysolis2011-03-28 23:47:24
Ok kind of a weird problem, I was on Lusternia last night and after I hunted to 98 I logged off. I decided I had to sort some things out when I came back but I couldn't log back in. It showed like Lusternia was working but it looked like it wasn't accepting my input. I would put in my char. name "Dysolis" but it wouldn't come up with what is your password? So now I can't officially log into to Lusternia with Mudlet any ideas?
Unknown2011-03-29 00:31:25
QUOTE (Dysolis @ Mar 28 2011, 08:47 PM) <{POST_SNAPBACK}>
Ok kind of a weird problem, I was on Lusternia last night and after I hunted to 98 I logged off. I decided I had to sort some things out when I came back but I couldn't log back in. It showed like Lusternia was working but it looked like it wasn't accepting my input. I would put in my char. name "Dysolis" but it wouldn't come up with what is your password? So now I can't officially log into to Lusternia with Mudlet any ideas?
Mudlet does that to me sometime, or used to on the Windows version. I just re-entered the world info and it worked just fine.
Dysolis2011-03-29 01:33:01
Ok it works I just somehow lost all my alias's and buttons.
Anisu2011-03-29 09:18:50
while we are on the subject, does mudlet loaded with m&m freeze on reconnect on linux editions to, or is it a windows thing?
Unknown2011-03-29 11:08:50
QUOTE (Anisu @ Mar 29 2011, 06:18 AM) <{POST_SNAPBACK}>
while we are on the subject, does mudlet loaded with m&m freeze on reconnect on linux editions to, or is it a windows thing?
It's also a Linux thing. Although it only seems to freeze if left for a period of time.
Janalon2011-03-29 21:21:04
QUOTE (Kayte @ Mar 29 2011, 07:08 AM) <{POST_SNAPBACK}>
It's also a Linux thing. Although it only seems to freeze if left for a period of time.
This happens with my Mac version (not sure if this was implied in "Linux" versions).
Also experiencing lag-like lock-ups (caused me to die last night). Not sure if this is mudlet or my computer.
What's the latest Mudlet release? Currently running 1.2.0 Pre 5 and want to know if there is anything better.
Unknown2011-03-29 22:14:51
QUOTE (Janalon @ Mar 29 2011, 06:21 PM) <{POST_SNAPBACK}>
This happens with my Mac version (not sure if this was implied in "Linux" versions).
Also experiencing lag-like lock-ups (caused me to die last night). Not sure if this is mudlet or my computer.
What's the latest Mudlet release? Currently running 1.2.0 Pre 5 and want to know if there is anything better.
Also experiencing lag-like lock-ups (caused me to die last night). Not sure if this is mudlet or my computer.
What's the latest Mudlet release? Currently running 1.2.0 Pre 5 and want to know if there is anything better.
I'm running, for linux, Mudlet 2.0 (Jan '11)
Janalon2011-03-30 03:35:26
What's the latest Mac release? And when will 2.0 be available for Mac?
Sylphas2011-04-02 05:13:05
I can't make heads or tails of the damn Geyser documentation, anyone have a clue? (Also, the Mudlet docs really need some love.)