Search found 125 matches

by Jules
Wed Jun 23, 2010 3:23 pm
Forum: Help Forum
Topic: Echo Help
Replies: 17
Views: 9870

Re: Echo Help

You could even create your own function in order to allow easy replication of this echo, while allowing echos to change dynamically, depending on what you would like to do. function warning(display_name, text) cecho("\n<orange>["..display_name.."]: <red>"..text) end I may have do...
by Jules
Tue Jun 15, 2010 4:17 pm
Forum: Help Forum
Topic: Mudlet variables...
Replies: 2
Views: 2519

Re: Mudlet variables...

Your alias would use a regex pattern to capture the variable that you'd like to use. So, for your 'magic missile' example, you would do: Alias: Magic Missile Pattern: ^mm (\w+)$ Script: send("cast magic missile "..matches[2]) In Mudlet, what you'd normally use %<number> for, you use matche...
by Jules
Mon Jun 07, 2010 3:05 pm
Forum: Mudlet Development
Topic: LuaGlobal Improvements - help needed
Replies: 47
Views: 28981

Re: LuaGlobal Improvements

I support this thread.
by Jules
Tue May 04, 2010 10:25 pm
Forum: Help Forum
Topic: Possible Bug: Functions Coming Out As Nil
Replies: 1
Views: 1848

Possible Bug: Functions Coming Out As Nil

I've been having a few issues with Mantis lately. Not necessarily because of my own coding errors, but because sometimes functions will stop working. When looking at the debug window, it'll give me an error message saying that when I call a function, most of the time my Autosipper script, it will re...
by Jules
Mon May 03, 2010 4:22 am
Forum: Help Forum
Topic: ATCP Autosipper Problems
Replies: 2
Views: 2521

ATCP Autosipper Problems

Hey there, everyone. I'm having some issues with Mantis' Autosipper, which was recently changed over to using ONLY ATCP to keep track of values. However, I'm having issues with it. For starters, for those unfamiliar with Mantis, all variables used by the system are kept in a script, organized into t...
by Jules
Fri Apr 23, 2010 5:51 am
Forum: Scripts & Packages
Topic: Introducing: Mantis for Lusternia - Beta Release 5.0.1
Replies: 72
Views: 48504

Re: Introducing: Mantis for Lusternia - Beta Release 5.0.1

Mantis 5.0.1 Beta is up! Check the OP for updates!
by Jules
Wed Apr 14, 2010 3:09 pm
Forum: Help Forum
Topic: Help with my first simple trigger?
Replies: 22
Views: 13189

Re: Help with my first simple trigger?

That's due to how highlight trigger works. It's capturing all the "captured" values, and applying the highlight to them. If you want to highlight EVERYTHING, cut and paste this into the top of your code:
Code: [show] | [select all] lua
selectString(line)
fg("yellow")
bg("red")
resetFormat()
by Jules
Wed Mar 31, 2010 5:24 pm
Forum: Scripts & Packages
Topic: Introducing: Mantis for Lusternia - Beta Release 5.0.1
Replies: 72
Views: 48504

Re: Introducing: Mantis for Lusternia - Beta Release 5.0

The ()'s around some RegEx's, but not others is a product of the process for changing/updating the Trigger patterns in Mantis. I currently do not have the diagnose lines in their own separate folder, they're right there with the rest of the affliction lines, though I will go ahead and change that an...
by Jules
Wed Mar 31, 2010 4:28 pm
Forum: Scripts & Packages
Topic: Introducing: Mantis for Lusternia - Beta Release 5.0.1
Replies: 72
Views: 48504

Re: Introducing: Mantis for Lusternia - Beta Release 5.0

Hey! That Trigger is firing off my protege's death! Hehe, anyhow... To answer your first problem, I have no idea why this is happening. It's definitely something to do with the RegEx involved, but I'm not sure how to fix that... Any RegEx masters out there? There isn't a "pause" alias, how...
by Jules
Wed Mar 31, 2010 3:27 am
Forum: Scripts & Packages
Topic: Introducing: Mantis for Lusternia - Beta Release 5.0.1
Replies: 72
Views: 48504

Re: Introducing: Mantis for Lusternia - Beta Release 5.0

EDIT: I've received reports that the Mantis.xml file was not able to be imported by Mudlet. That's been fixed, removing some XML code at the very top of the file... Why's that in there, anyway? <GenericPackage>, or somesuch?