Mudlet Questions

by Rika

Back to Mechanic's Corner.

Jalain2011-07-03 10:18:49
Okay, for starters, I'm try to use the autolearner.
I typed 'torank influence mesadari mythical 99' which sends 'ab' and then sends 'ask mesadari about Influence'.. and then does nothing.
The same happens when I 'alearn influence mesadari mythical 99' except that it sends the ask twice.
Unknown2011-07-03 11:47:29
QUOTE (Jalain @ Jul 3 2011, 11:18 AM) <{POST_SNAPBACK}>
Okay, for starters, I'm try to use the autolearner.
I typed 'torank influence mesadari mythical 99' which sends 'ab' and then sends 'ask mesadari about Influence'.. and then does nothing.
The same happens when I 'alearn influence mesadari mythical 99' except that it sends the ask twice.


Which auto learner are you using?
This one?
Jalain2011-07-03 12:02:20
Yep
Unknown2011-07-03 12:18:28
Yeah, just grabbed it. The code is broken on that.

Maybe somebody has time to fix it.
Unknown2011-07-04 12:27:43
I'm getting an error both on my Vista laptop and the Windows XP laptop that "This application has failed to start because MSVCR100.dll was not found."

I thought the issue might just be the XP since it's a netbook and uses a lighter, bare bones version of Windows, however having tried it on this one too... Has anyone else had an issue?

Silly Windows...
Zynna2011-07-04 12:45:40
I had that issue on my Vista laptop. I was able to fix it by googling that file and downloading from internet and now works fine.
Vadi2011-07-04 13:37:21
That, or http://sourceforge.net/projects/mudlet/fil...st.exe/download does not have that problem (it does have an issue with downloading a new map though!)
Unknown2011-07-04 14:02:26
Thanks! I thought about downloading the .dll but I wasn't sure if it was Mudlet or my computer. Good to know, I'll grab the .dll for XP.

Edit: and fixed and upgraded, and my issues with installing m&m are gone. Awesome!
Shishi2011-07-04 14:30:00
QUOTE (Vadi @ Jul 4 2011, 06:37 AM) <{POST_SNAPBACK}>
That, or http://sourceforge.net/projects/mudlet/fil...st.exe/download does not have that problem (it does have an issue with downloading a new map though!)

Will this version work with the lusternia fancy gui? I couldn't seem to make it work, (The bars on the left would show up but it would just be a black space all around that.)

I've been trying to get Mudlet to work and try it out, it's been hard finding a working link with the latest version for windows, I use vista if that matters. Though I could just not know where to look.
Unknown2011-07-04 15:48:47
Having tried demmonic's latest chat, I've reverted back to the old. I'm having some formatting issues on this laptop though where the chat is covering the text that I need to be able to see. So, I altered the size of the text box. Script looks like this:

CODE
ChatStuff = ChatStuff or {}
ChatStuff.fontSize = ChatStuff.fontSize or 9
ChatStuff.fontWidth, ChatStuff.fontHeight = calcFontSize(ChatStuff.fontSize)
mainWidth, mainHeight = getMainWindowSize()
ChatStuff.width = 250
ChatStuff.height = ChatStuff.fontHeight * 35
ChatStuff.wordwrap = (ChatStuff.width / ChatStuff.fontWidth) - 1
ChatStuff.blinkyTimers = ChatStuff.blinkyTimers or {}
ChatStuff.blinkyColor = ChatStuff.blinkyColor or {}

function ChatStuff.posY()
  return 25 --because the tabs are 25 high
end

function ChatStuff.posX()
  return mainWidth - ChatStuff.width - 20 --the -15 is to keep it from covering the scroll bar
end

function ChatStuff.append(chat)  
  appendBuffer(string.format("chat%s", chat))
  local tab = string.format("tab%s", chat)
  if ChatStuff.blinkyTimers or ChatStuff.currentTab == chat or chat == "All" then
    return true
  else
    ChatStuff.blinkyTimers = tempTimer(0.5, string.format(], chat))
    setBackgroundColor(tab, 100, 100, 100, 125)
    ChatStuff.blinkyColor = 1
  end
  return true
end

function ChatStuff.blink(chat)
  local tab = string.format("tab%s", chat)
  if ChatStuff.blinkyColor == 1 then
    setBackgroundColor(tab, 0, 0, 0, 0)
    ChatStuff.blinkyColor = 0
  else
    setBackgroundColor(tab, 100, 100, 100, 125)
    ChatStuff.blinkyColor = 1
  end
  ChatStuff.blinkyTimers = tempTimer(0.5, string.format(], chat))
end

chatTable = {
        "All",
        "Celest",
        "Aqua",
        "Tells",
        "Battle",
        "Terentia",
        "Misc",
        }

ChatStuff.tabWidth, ChatStuff.tabHeight = math.floor( ChatStuff.width / #chatTable  ), 25
ChatStuff.tabPosX, ChatStuff.tabPosY = ChatStuff.posX(), ChatStuff.posY() - 25

-- Functions
function ChatStuffCreate()
  local startX = ChatStuff.tabPosX
  for _,v in ipairs( chatTable ) do
    local tab = "tab" .. v
    createLabel( tab, startX, ChatStuff.tabPosY, ChatStuff.tabWidth, ChatStuff.tabHeight, 0 )
    resizeWindow( tab, ChatStuff.tabWidth, ChatStuff.tabHeight )
    setLabelClickCallback( tab, "switchchat", v )
    echo( tab, ] .. v .. ] )
    moveWindow( tab, startX, ChatStuff.tabPosY )
    startX = startX + ChatStuff.tabWidth

    local chat = "chat" .. v
    createMiniConsole( chat, ChatStuff.posX(), ChatStuff.posY(), ChatStuff.width, ChatStuff.height )
    resizeWindow( chat, ChatStuff.width, ChatStuff.height )
    setWindowWrap( chat, ChatStuff.wordwrap )
    setMiniConsoleFontSize( chat, ChatStuff.fontSize )
    setBackgroundColor( chat, 0, 0, 0, 0 )
    moveWindow( chat, ChatStuff.posX(), ChatStuff.posY() )
    hideWindow( chat )
  end
  ChatStuff.currentTab = "none"
  switchchat( "All" )
end

function switchchat ( chat )
  local o_c = "chat" .. ChatStuff.currentTab
  local o_t = "tab" .. ChatStuff.currentTab
  local n_c = "chat" .. chat
  local n_t = "tab" .. chat
  if ChatStuff.currentTab ~= chat then
    if ChatStuff.blinkyTimers then
      killTimer(ChatStuff.blinkyTimers)
      ChatStuff.blinkyTimers = nil
      ChatStuff.blinkyColor = nil
    end
    hideWindow( o_c )
    showWindow( n_c )
    ChatStuff.currentTab = chat
    setBackgroundColor( o_t, 0, 0, 0, 0 )
    setBackgroundColor( n_t, 100, 100, 100, 125 )
  end

end

function ChatStuffResize()
  ChatStuff.fontWidth, ChatStuff.fontHeight = calcFontSize(ChatStuff.fontSize)
  mainWidth, mainHeight = getMainWindowSize()
  ChatStuff.height = ChatStuff.fontHeight * 35
  ChatStuff.wordwrap = (ChatStuff.width / ChatStuff.fontWidth) - 1
  ChatStuff.tabWidth, ChatStuff.tabHeight = math.floor( ChatStuff.width / #chatTable), 25
  ChatStuff.tabPosX, ChatStuff.tabPosY = ChatStuff.posX(), ChatStuff.posY() - 25
  ChatStuffCreate()
end

if not ChatStuff.initialized then
        ChatStuffCreate()
        ChatStuff.initialized = true
end


But I'm still having the issue with wrapping within the box, as seen here: http://i9.photobucket.com/albums/a79/green.../mudletchat.jpg Before I changed the text box size, it was still wrapping like that. :|

Not sure what to do about it, or how to fix it.
Vadi2011-07-04 22:03:46
QUOTE (shishi @ Jul 4 2011, 10:30 AM) <{POST_SNAPBACK}>
Will this version work with the lusternia fancy gui? I couldn't seem to make it work, (The bars on the left would show up but it would just be a black space all around that.)

I've been trying to get Mudlet to work and try it out, it's been hard finding a working link with the latest version for windows, I use vista if that matters. Though I could just not know where to look.


That script is kinda really, way old and I should update it soon. I will if I get time to package-ify it soon, unless someone else steps up.
Lilia2011-07-04 22:28:34
QUOTE (Vadi @ Jul 4 2011, 05:03 PM) <{POST_SNAPBACK}>
That script is kinda really, way old and I should update it soon. I will if I get time to package-ify it soon, unless someone else steps up.

I'll do it, since I've made the xp and power bars work. I'll just need to take the m&m stuff out of it.
Vadi2011-07-05 00:26:39
kay, see http://wiki.mudlet.org/w/Mudlet_Packages as a reference for making a package so it's self-contained and doesn't require manually setting the image location
Lilia2011-07-05 00:30:55
Oh, great, I was just realizing I had no idea how to do that. smile.gif Thanks!
Neos2011-07-05 00:40:10
QUOTE (Lilia @ Jul 4 2011, 08:30 PM) <{POST_SNAPBACK}>
Oh, great, I was just realizing I had no idea how to do that. smile.gif Thanks!

And you can list it on the wiki(hint hint, I'm kinda being lazy and not doing work that I should be doing and hoping others will pick up some of the slack.)
I wanted to get some wiki work done, and my demesne stuff, but the event has distracted me, and I needs essence.
Jalain2011-07-05 16:11:07
I'm trying to make a trigger to make "Type MORE to continue reading" clickable so when you click on it, it sends "more" to the game.. But none of the things I try seem to work. anyone able to help?
Unknown2011-07-06 16:27:21
Have a beginning of line pattern match on: Type MORE to continue reading.

Then the goodies:
CODE
setFgColor(205,0,153)
echoLink(" >> VIEW MORE", ], "View more", true)
Unknown2011-07-06 16:51:23
While I am at it:

Info here:

CODE
^"(*)(\\d+)"\\s+(*)$

CODE
local probeItem = matches
setFgColor(205,0,153)
echoLink(" >> PROBE " ..], ] .. probeItem..], "Probe " .. matches, true)



Milestones:

CODE
^(\\d+)\\s+\\-\\s.+\\.+$

CODE
local milestone = matches
setFgColor(205,0,153)
echoLink(" >> TRAVEL" ..], ] .. milestone ..], "Travel to: " .. milestone, true)


Zynna2011-07-06 18:01:29
Thanks, Draylor! These are very cool and helpful!
Lawliet2011-07-06 20:59:24
Nevermind, Morbo helped me smile.gif