Search found 97 matches

by azure_glass
Mon Jul 25, 2016 9:17 am
Forum: Help Forum
Topic: Working with Multiple Variables
Replies: 4
Views: 4778

Re: Working with Multiple Variables

(^(|> )Trigger: Your infiltration of the corps "(.*)" is successful and you pilfer some (refinded|unrefined) (.*)$) send("open pack ") send("put "..matches[6].." in pack ") send("close pack ") send("infiltrate "..matches[6]) send("who ...
by azure_glass
Sun Jul 24, 2016 5:00 pm
Forum: Help Forum
Topic: Create Label in mapper
Replies: 0
Views: 5531

Create Label in mapper

Hi im using ubuntu and mudlet 2.1

I want to know how to create a new line in Labels on mapper.
Code: [show] | [select all] lua
yyy;zzz
www\neee
does not work. Do you have any ideas how to deal with this?

[Moderator Edit moved to help forum as per OP's request]
by azure_glass
Sat Jul 02, 2016 4:08 pm
Forum: Help Forum
Topic: Help with Waiting for Trigger...
Replies: 10
Views: 8200

Re: Help with Waiting for Trigger...

I thik about that but you always can do it hard way.

Allias cast x
Enable timer 0.5 second
Enable trigger(gag)
Enable trigger(cast)

TriggerGag
You can't cast that spell yet.
Deleteline()

Castspelltrigger
You cast spell
Disabletimer()
Disabletrigger(gag)
by azure_glass
Sat Jul 02, 2016 2:41 pm
Forum: Help Forum
Topic: Help with Waiting for Trigger...
Replies: 10
Views: 8200

Re: Help with Waiting for Trigger...

Then maybe something like that:

First trigger
(Something)
Code:
VarOne = 1
EnableTimer(yyy)

Timer for x seconds

if VarOne == 1 then
send(cast something)
VarOne = 0
disableTimer(yyy)
end
by azure_glass
Fri Jul 01, 2016 9:31 pm
Forum: Help Forum
Topic: Help with Waiting for Trigger...
Replies: 10
Views: 8200

Re: Help with Waiting for Trigger...

I just saw manual witch I barly(?) understand.

I think the best way is to check with timestamps time to events and make allias or make triggers
by azure_glass
Fri Jul 01, 2016 9:20 pm
Forum: Help Forum
Topic: Help with Waiting for Trigger...
Replies: 10
Views: 8200

Re: Help with Waiting for Trigger...

OR

allias: Start

enableTimer("1")
enableTimer("2")
enableTimer("3")

------------------------

and set timer to XYZ seconds and:

send("cast spell 1")
disableTimer("1")
by azure_glass
Fri Jul 01, 2016 9:16 pm
Forum: Help Forum
Topic: Help with Waiting for Trigger...
Replies: 10
Views: 8200

Re: Help with Waiting for Trigger...

If you want only to start up with triggers. Try something like that: allias: start tempTimer(1, send("first spell")) tempTimer(5, send("second spell")) tempTimer(10, send("third spell")) tempTimer(15, send("fourth spell")) tempTimer(20, send("fifth spell&...
by azure_glass
Sat Jun 25, 2016 10:08 am
Forum: Howtos, FAQs and Tips & Tricks
Topic: Howto: Sync profiles using dropbox
Replies: 30
Views: 133871

Re: Howto: Sync profiles using dropbox

That will be alrigt? -------------------------------------------------------------- -- First computer -------------------------------------------------------------- mv ~/.config/mudlet ~/Dropbox -- Exampe by Vadi mv /home/xxx/.config/mudlet /home/xxx/Dropbox/SyncProfilesMudlet ln -s ~/Dropbox/mudlet...
by azure_glass
Fri Jun 10, 2016 9:02 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 732522

Re: Mudlet features and API requests

I think something like that could be useful

SaveProfile() -- saves profile i normal mudlet dir
SaveProfile("c:/backup") -- saves profile in directory "c:/backup"
by azure_glass
Thu May 26, 2016 7:59 pm
Forum: Help Forum
Topic: GMCP - target, tables
Replies: 0
Views: 3842

GMCP - target, tables

Hi I wonder how to combine my Enemy table with GMCP output to create bind. Like Shiori and Calerian appers from west. then script do bind f2: send("kick ob_" .. 299170) Enemy = { {describe = "big pink orc", name = "Shiori", guild = "SC"}, {describe = "sma...