Search found 33 matches

by Sheia
Wed Mar 21, 2012 2:22 pm
Forum: Help Forum
Topic: Need help making an auto-basher
Replies: 7
Views: 7230

Re: Need help making an auto-basher

As a note Lusternia doesn't forbid anything you've posted here Vankara. An auto-basher that moves you from room to room would be a problem, not one that simply attacks continuously at your command. I can help you more with this if you need it, just send me a message.
by Sheia
Mon Mar 19, 2012 1:33 pm
Forum: Help Forum
Topic: Capture Trigger
Replies: 3
Views: 4038

Re: Capture Trigger

You'll need to do, config screenwidth 0 for Achaea. Then set Mudlet's word wrapping to 80, which is under Settings then Main Display.
by Sheia
Mon Mar 19, 2012 12:06 am
Forum: Help Forum
Topic: Trigger on Prompt
Replies: 7
Views: 5579

Re: Trigger on Prompt

No you won't be able to use a begin of line substring. It needs to be a Regex Trigger. You could make a begin of line substring that is just " < " and then make a child trigger that is the Regex, but that is not really necessary.
by Sheia
Sun Mar 18, 2012 11:56 pm
Forum: Help Forum
Topic: Trigger on Prompt
Replies: 7
Views: 5579

Re: Trigger on Prompt

Code: [show] | [select all] lua
^<(\d+)/\d+h (\d+)/\d+m ... >$
That should do it. Does it really have an ellipsis or are you just saying it continues like that? Naturally you'll need to set the trigger to Perl Regex. The captures will be contained in matches[2], matches[3], etc.
Regex Tester!
Regex Reference!
by Sheia
Wed Mar 14, 2012 1:37 am
Forum: Help Forum
Topic: Getting a mapping script to work
Replies: 1
Views: 4989

Re: Getting a mapping script to work

I'm not very familiar with that mapper script or your particular MUD so I'm not sure I can help much, however have you tried looking at the Wiki ? That link will take you to the mapper functions list in particular. You seem to be using a mapper script created by an individual for their own use, not ...
by Sheia
Tue Mar 13, 2012 1:09 pm
Forum: Help Forum
Topic: Border Bother
Replies: 6
Views: 4380

Re: Border Bother

Miniconsoles cannot be transparent to my knowledge, however you can use showWindow() and hideWindow() to toggle miniconsole visibility.
by Sheia
Mon Mar 12, 2012 1:27 pm
Forum: Help Forum
Topic: Border Bother
Replies: 6
Views: 4380

Re: Border Bother

If you use the regular GUI functions, then you can make a handleWindowResizeEvent to resize miniconsoles. If you use Geyser I believe it has other things you can do, like decide how big a miniconsole is based on a percentage of your screen size.
by Sheia
Sat Mar 10, 2012 10:12 pm
Forum: Help Forum
Topic: Trigger that waits a amount of time before moving along the
Replies: 1
Views: 2237

Re: Trigger that waits a amount of time before moving along

Create an "exact match" trigger for "You walk through the door!" and put the following code in it: tempTimer( 5, [[send("close door")]]) Naturally you may change the sent command to whatever you need "close door west" or some such. The wiki has more info on Ti...
by Sheia
Sat Mar 10, 2012 9:35 am
Forum: Help Forum
Topic: Color one word within a replaced string
Replies: 1
Views: 2193

Re: Color one word within a replaced string

The following code works for me, however I'm new at this so this may not be the best way to go about it! if matches[2]:lower() == mysysvar.t then selectString(line, 1) deleteLine() decho(string.format([[<175,0,0>Target left -<0,175,0>%s<175,0,0>-]],matches[3])) end Hope it helps!
by Sheia
Tue Mar 06, 2012 7:00 am
Forum: Help Forum
Topic: Mudlet cant save?
Replies: 3
Views: 3270

Re: Mudlet cant save?

I think we'll need to know what version of Mudlet your using and your operating system. More information on the problem would be nice, if you have it.