Search found 101 matches
- Sun Jan 24, 2021 1:37 am
- Forum: General Discussion
- Topic: FMJ lag
- Replies: 61
- Views: 17425
Re: FMJ lag
It would happen in any zerg encounter, because of addons like SoR that use chat to force-feed you data.
- Fri Jun 14, 2019 5:15 am
- Forum: Addons
- Topic: Core interface modules bugfixes + few fixed add-ons
- Replies: 190
- Views: 161881
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 ...
- Wed May 22, 2019 3:36 am
- Forum: Addons
- Topic: Need help with Aura addon
- Replies: 2
- Views: 2672
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.
- Mon Apr 08, 2019 6:52 pm
- Forum: Addons
- Topic: Core interface modules bugfixes + few fixed add-ons
- Replies: 190
- Views: 161881
Re: Core interface modules bugfixes + few fixed add-ons
I'll take a look. Not right now though.
- Mon Apr 08, 2019 6:10 pm
- Forum: Addons
- Topic: Core interface modules bugfixes + few fixed add-ons
- Replies: 190
- Views: 161881
Re: Core interface modules bugfixes + few fixed add-ons
One that you already have would give clues.
2MB... That's impressive.
2MB... That's impressive.
- Mon Apr 08, 2019 5:56 pm
- Forum: Addons
- Topic: Core interface modules bugfixes + few fixed add-ons
- Replies: 190
- Views: 161881
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.
Then you can upload it to some Google Docs and PM me the link.
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.SuperUsefulFunc() return end
Re: Addon editing (lua files)
Put it between 147 and 148.
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
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
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 when pointing on what line has ...