Search found 287 matches

by icesteruk
Sun Sep 14, 2014 6:46 pm
Forum: General Forum
Topic: Mudlet 3.0.0-alpha
Replies: 118
Views: 138949

Re: Mudlet 3.0.0-alpha

I download it on windows 7 and seems, It loads in full screen mode. even the full screen mode button gives me full screen.
by icesteruk
Sat Sep 06, 2014 6:55 pm
Forum: Help Forum
Topic: Answered
Replies: 7
Views: 4950

Re: Answered

You can also use: ^x(?: (\w+))?$ as a pattern. The main difference is that this pattern will not accept single words that start with x, i.e. xylophone won't trigger this pattern, but it will trigger ^x ?(\w*)$. no it doesnt.. what I posted I have ^c ?(\w+)$ and whenever I type C words it doesnt tri...
by icesteruk
Fri Sep 05, 2014 6:53 pm
Forum: Help Forum
Topic: Absolutely confused now...
Replies: 6
Views: 4555

Re: Absolutely confused now...

Your welcome! also if you do post an help, give it a few days for people to reply. or check out the mudlet IRC as people normally log into that and not notice a post on forums dude :P
by icesteruk
Tue Sep 02, 2014 4:07 pm
Forum: Help Forum
Topic: Absolutely confused now...
Replies: 6
Views: 4555

Re: Absolutely confused now...

Im unsure what this is suppose to do I have the basic initialization of the vars. i.e.: if hpcur == nil then hpcur = 0 end but if you click highlight on the trigger, you can see if its firing right, have you also set the trigger to perl regex? for the trigger input part I would do something like pro...
by icesteruk
Tue Sep 02, 2014 3:59 pm
Forum: Help Forum
Topic: Answered
Replies: 7
Views: 4950

Re: HOWTO: Idk how to even say this without explaining...

^x ?(\w*)$

if matches[2] == "" then
send("kill " .. target)
else
target = matches[2]
send("kill " .. target)
end


x bob ... will target bob then kill ..

x ... will kill whatever you have targetted.

Hope that helps!
by icesteruk
Sat Aug 09, 2014 4:20 pm
Forum: Help Forum
Topic: [ SOLVED ] Mudlet built-in IRC client doesn't connect
Replies: 11
Views: 8031

Re: Mudlet built-in IRC client doesn't connect

pathris wrote:Tried on a different laptop, fresh Windows 7 install, fresh Mudlet 2.1 install... Same exact thing...
Mines also trying to connect to #mudlet-help .. maybe its not changed in the mudlet download? im running 2.1 also
by icesteruk
Sun Aug 03, 2014 12:54 am
Forum: Help Forum
Topic: [ SOLVED ] Quick Geyser and GMCP question
Replies: 26
Views: 18696

Re: Quick Geyser and GMCP question

namelabel:echo(myname.."<br>Level: "..mylevel.."<br>Gold: "..mygold.."<br>Messages: "..mymessages) I would put the above into something like function MyStatLabel() namelabel:echo etc end then make a trigger for 'return isPrompt()' - lua .. and place MyStatLabel so on e...
by icesteruk
Thu Jul 24, 2014 10:03 pm
Forum: Help Forum
Topic: Defense, table issue
Replies: 7
Views: 4517

Re: Defense, table issue

soo, Having a huge issue, this suppose to be coming back false but its coming back true reqs = function() return hasSkill("ReflexiveDiversion") and hasSkill("Dodging") end, doing lua hasSkill("ReflexiveDiversion") and same for dodging, both return false, but it keeps pu...
by icesteruk
Tue Jul 22, 2014 11:57 pm
Forum: Help Forum
Topic: Defense, table issue
Replies: 7
Views: 4517

Re: Defense, table issue

yeah if deftop.reqs() then .. ?


Thanks dude your the best - not told you in months :P lol
by icesteruk
Tue Jul 22, 2014 9:32 pm
Forum: Help Forum
Topic: Defense, table issue
Replies: 7
Views: 4517

Re: Defense, table issue

icesteruk wrote:reqs = function() tonumber(gmcp.Char.Vitals.spark > 5) then return true end,
can I use that in the code?? and just run deftoputup.reqs() like I would a script?

If so, thank you so much I didnt now that