Search found 101 matches

>
by OldSerpenT
Sun Jan 24, 2021 1:37 am
Forum: General Discussion
Topic: FMJ lag
Replies: 61
Views: 12288

Re: FMJ lag

It would happen in any zerg encounter, because of addons like SoR that use chat to force-feed you data.
by OldSerpenT
Fri Jun 14, 2019 5:15 am
Forum: Addons
Topic: Core interface modules bugfixes + few fixed add-ons
Replies: 190
Views: 120452

Re: Core interface modules bugfixes + few fixed add-ons

Hello, since i updated my Enemy addon with the version from this thread, the extended SC infos are not working anymore. tried to reload and stuff but not working for me. nay ideas help pls? thx cheers I did turn it off. Along with combat log parser and some other parts that are more work to fix tha...
by OldSerpenT
Wed May 22, 2019 3:36 am
Forum: Addons
Topic: Need help with Aura addon
Replies: 2
Views: 2294

Re: Need help with Aura addon

As I can remember Aura is for buffs/debuffs. Riposte doesn't show any buffs. Though you can set up aura for Repel Blasphemy buff or parry m1 on your target.
by OldSerpenT
Mon Apr 08, 2019 6:52 pm
Forum: Addons
Topic: Core interface modules bugfixes + few fixed add-ons
Replies: 190
Views: 120452

Re: Core interface modules bugfixes + few fixed add-ons

I'll take a look. Not right now though.
by OldSerpenT
Mon Apr 08, 2019 6:10 pm
Forum: Addons
Topic: Core interface modules bugfixes + few fixed add-ons
Replies: 190
Views: 120452

Re: Core interface modules bugfixes + few fixed add-ons

One that you already have would give clues.
2MB... That's impressive.
by OldSerpenT
Mon Apr 08, 2019 5:56 pm
Forum: Addons
Topic: Core interface modules bugfixes + few fixed add-ons
Replies: 190
Views: 120452

Re: Core interface modules bugfixes + few fixed add-ons

There is an instruction of how to turn logs on in the first message.
Then you can upload it to some Google Docs and PM me the link.
by OldSerpenT
Mon Apr 08, 2019 5:51 pm
Forum: Addons
Topic: solved
Replies: 11
Views: 3642

Re: Addon editing (lua files)

You can't because the expected return values are "true", "false" or "nil". If it is not "nil" then there should be further processing. If you want to just skip the entire function then put empty return without true or false value. function ThinkOutLoud.SuperUs...
by OldSerpenT
Mon Apr 08, 2019 5:41 pm
Forum: Addons
Topic: solved
Replies: 11
Views: 3642

Re: Addon editing (lua files)

Put it between 147 and 148.
by OldSerpenT
Mon Apr 08, 2019 5:27 pm
Forum: Addons
Topic: solved
Replies: 11
Views: 3642

Re: Addon editing (lua files)

That's why you need an editor with line numbers.
You probably just need to turn them on.
If your editor doesn't support it, try something like Notepad++

if not now then return end
return false
if earlier and blahblahblah
by OldSerpenT
Mon Apr 08, 2019 4:38 pm
Forum: Addons
Topic: solved
Replies: 11
Views: 3642

Re: Addon editing (lua files)

You're trying to return "false" which inflicts further processing when your settings are not loaded and your last transaction doesn't exist. Put this "return false" after the line that checks "now" value. I'd also suggest editor that supports line numbers. Helps a lot w...