Search found 351 matches

by Rakon
Thu Sep 03, 2015 3:37 am
Forum: Help Forum
Topic: Notifications when not in focus
Replies: 2
Views: 2870

Re: Notifications when not in focus

Here is what I use; It requires notify-send on linux function notify(notify_msg) if hasFocus() == false then os.execute(string.format("%s", [[notify-send --hint=int:transient:1 --icon="mudlet/mudlet.png" "Mudlet" "]] .. notify_msg .. [["]])) end -- if end -- n...
by Rakon
Thu Jun 04, 2015 4:15 am
Forum: Mudlet Development
Topic: Mudlet 3.0.0-delta (preview #4)
Replies: 146
Views: 265017

Re: Mudlet 3.0.0-delta (preview #4)

Use the development branch, master has latest released. Still the same issue. ~/Documents/projects/Mudlet$ git checkout development Already on 'development' Your branch is up-to-date with 'origin/development'. ~/Documents/projects/Mudlet$ git pull origin development From https://github.com/Mudlet/M...
by Rakon
Thu Jun 04, 2015 12:16 am
Forum: Mudlet Development
Topic: Mudlet 3.0.0-delta (preview #4)
Replies: 146
Views: 265017

Re: Mudlet 3.0.0-delta (preview #4)

Hey guys, I'm seeing a regression of this bug - https://bugs.launchpad.net/mudlet/+bug/1377401 : People are reporting that their script are getting wiped on 3.0.0-alpha[1] and beta[2]. This is a regression in 3.0 as it doesn't happen in 2.1. Steps to replicate: - Select a script with your mouse - Na...
by Rakon
Thu Sep 18, 2014 4:32 pm
Forum: Mudlet Development
Topic: Mudlet2+ Branch
Replies: 20
Views: 21620

Re: Mudlet2+ Branch

I'm having this issue as well. Trigger capture for the lines worked fine prior to using Mudlet 3.0 build. I'll clarify: Using Mudlet 3.0.0 Alpha on Windows 7 64 bit. Trigger setup as follows: http://i.imgur.com/O3wJ3sK.png ChatStuff.append code : function ChatStuff.append(chat) appendBuffer(string.f...
by Rakon
Fri Jan 31, 2014 4:13 pm
Forum: Help Forum
Topic: Multiple word highlights on same line
Replies: 7
Views: 8040

Re: Multiple word highlights on same line

@vadi match all is for regex patterns to continue matching them on the line. It doesn't do anything in a substring context across multiple patterns. This is not correct. The match-all option also captures substring patterns, e.g. you can use it in conjunction with the highlight option to highlight ...
by Rakon
Wed Jan 29, 2014 5:03 pm
Forum: Help Forum
Topic: Multiple word highlights on same line
Replies: 7
Views: 8040

Multiple word highlights on same line

Why does this trigger not work the way I am expecting?? This is the trigger: http://i.imgur.com/5WlDmEj.png This is what I get with that trigger (only highlights the word monolith): http://ada-young.appspot.com/pastebin/0ccac9de This is what I expect from that trigger (highlights all occurrences of ...
by Rakon
Sun Jan 26, 2014 4:36 pm
Forum: Scripts & Packages
Topic: Define English word plugin
Replies: 5
Views: 5518

Re: Define English word plugin

Thanks for this. It makes me want to add custom right click hooks for the general mud screen now (similar to the mapper hooks I made). I think a hover (word hilited, hover and it fires a sysHoverEvent type thing), double left click (sysEventDoubleLeftClick can hook to auto-attack, etc.), and a righ...
by Rakon
Sat Jan 25, 2014 5:37 pm
Forum: Scripts & Packages
Topic: Define English word plugin
Replies: 5
Views: 5518

Re: Define English word plugin

It probably could, yes. I have not tested such. I'll research adding in translate functionality.


Edit:

Google translate API is a paid service. So, not going to be adding in that functionality. There are some other ways to scrape the translate information, but not reliably.
by Rakon
Sat Jan 25, 2014 1:56 am
Forum: Scripts & Packages
Topic: Define English word plugin
Replies: 5
Views: 5518

Define English word plugin

I'm not the smartest guy at time, and I have to look up words from conversations often. I wrote a quick plugin to help get the definition of a word in game. Syntax: define <word> http://i.imgur.com/fNbwnfD.png I cannot promise the API for Google won't change, or that the word you want to find will a...
by Rakon
Thu Dec 05, 2013 3:49 pm
Forum: Scripts & Packages
Topic: GMCP Inventory Organizer (Achaea)
Replies: 64
Views: 59645

Re: GMCP Inventory Organizer (Achaea)

I'm having the issue of whenever I type 'more', it just echos the inventory instead of displaying what I was trying to. I.E. I can't peruse journals, messages, skill lists, etc if they require me to use 'more' to display the rest. If I disable the 'more' alias the organizer's scripts then I can wor...