Search found 12 matches

by Saros
Mon Apr 20, 2020 7:37 pm
Forum: Scripts & Packages
Topic: Wait and Wait Line
Replies: 20
Views: 38991

Re: Wait and Wait Line

Thanks for this!

I don’t see v2 attached, can you try again?
by Saros
Fri Mar 20, 2020 8:58 pm
Forum: General Forum
Topic: Streaming tomorrow
Replies: 4
Views: 8696

Re: Streaming tomorrow

Awesome. I’m clueless as to unit tests, but I’ll try to make it!
by Saros
Tue Feb 25, 2020 12:02 am
Forum: Scripts & Packages
Topic: fText, the text formatting library
Replies: 12
Views: 19801

Re: fText, the text formatting library

This looks awesome.

Thanks!
by Saros
Sun Sep 10, 2017 6:07 pm
Forum: Help Forum
Topic: if check before executing an alias command
Replies: 1
Views: 2211

Re: if check before executing an alias command

I am green too! But.. You would create triggers to track your current totem. Then, modify your alias to check your current totem and execute the correct commands. Example: Triggers for tracking totems: Pattern: ^You hold the totem of awesomeness.$ Script: currentTotem = "awesomeness" Patte...
by Saros
Wed Nov 23, 2016 5:22 pm
Forum: Help Forum
Topic: Multiplayer (Controlling multiple session)
Replies: 40
Views: 33638

Re: Multiplayer (Controlling multiple session)

Numbers passed through this addition seem to be rounding. function test(...) echo("Passed: ") display(select(3,...)) end registerAnonymousEventHandler("sysInterProfileEvent","test") results in.. lua raiseInterProfileEvent(99999) Passed: 99999 lua raiseInterProfileEvent(...
by Saros
Fri Nov 18, 2016 11:29 pm
Forum: Help Forum
Topic: Scripting Help - Simple but not?
Replies: 7
Views: 6108

Re: Scripting Help - Simple but not?

I am as new to mudlet as you, but I think they are all executing at the same time because you are making them all at the same time and with the same duration. According to this mudlet wiki link when you make them all at the same time, you need to make the duration of subsequent timers increase by th...
by Saros
Sat Oct 29, 2016 6:54 pm
Forum: Geyser Layout Manager
Topic: What am I doing wrong..?
Replies: 5
Views: 17508

Re: What am I doing wrong..?

Thanks for the background info SlySven, definitely helps to know whats going on! I changed my code to below and everything works as "expected": The gauges are correctly created in the "hidden" geyser table, unlike before. Not sure why this works and the other code did not. With t...
by Saros
Fri Oct 28, 2016 11:00 pm
Forum: Geyser Layout Manager
Topic: What am I doing wrong..?
Replies: 5
Views: 17508

Re: What am I doing wrong..?

The output is crazy long... too long to display in my post

http://pastebin.com/raw/RUS8hwT2
by Saros
Fri Oct 28, 2016 8:16 pm
Forum: Geyser Layout Manager
Topic: What am I doing wrong..?
Replies: 5
Views: 17508

What am I doing wrong..?

First, I am totally new to Mudlet/LUA, so I am sure you'll get some laughs from my code.. :shock: ;) :lol: function createHpGauge(gname, xpx, ypx, gmessage) local gauge = Geyser.Gauge:new({name = gname, x = xpx .."px", y = ypx .."px", width = "80px", height = "15px...
by Saros
Mon Oct 24, 2016 7:14 pm
Forum: Help Forum
Topic: Multiplayer (Controlling multiple session)
Replies: 40
Views: 33638

Re: Multiplayer (Controlling multiple session)

I wanted to say THANK YOU for this addition, it really makes Mudlet a viable option for us multiplayers! Using pr337 I've been able to do almost everything... The last piece of this puzzle for me is the ability to change host (profile/session) window focus via code. Is there any chance for this bein...