Showing results 1 to 25 of 29
Search took 0.00 seconds.
Search: Posts Made By: jlam
Forum: AddOn Search/Requests 10-06-19, 05:27 PM
Replies: 2
Views: 2,723
Posted By jlam
I'm pretty sure most of the threat addons are all...

I'm pretty sure most of the threat addons are all just embedding LibThreatClassic to share threat information with each other.
Forum: AddOn Help/Support 08-08-19, 05:57 PM
Replies: 5
Views: 11,897
Posted By jlam
Isn't this what Clique does?

Isn't this what Clique does?
Forum: Lua/XML Help 06-04-19, 08:09 AM
Replies: 4
Views: 6,765
Posted By jlam
Doesn't Feign Death apply a buff on the hunter...

Doesn't Feign Death apply a buff on the hunter that casts it?
Forum: AddOn Help/Support 05-17-19, 10:22 PM
Replies: 6
Views: 2,791
Posted By jlam
Yay, more people that just ignore all licensing...

Yay, more people that just ignore all licensing and copyrights.
Forum: General Authoring Discussion 03-18-19, 05:57 PM
Replies: 2
Views: 1,786
Posted By jlam
Using Moonscript is fine, but you will need to...

Using Moonscript is fine, but you will need to transpile to plain Lua when distributing the addon because Moonscript requires LPeg, which isn't available to the WoW client. But certainly if you...
Forum: Lua/XML Help 01-26-19, 08:47 PM
Replies: 5
Views: 2,459
Posted By jlam
If you are using UNIT_AURA to track unit debuffs,...

If you are using UNIT_AURA to track unit debuffs, you will need to keep track of the debuffs that you see when UNIT_AURA is received so that the next time you receive UNIT_AURA, you can figure out...
Forum: Lua/XML Help 01-15-19, 02:36 PM
Replies: 4
Views: 2,598
Posted By jlam
You can look in FrameXML/LossOfControlFrame.lua...

You can look in FrameXML/LossOfControlFrame.lua for examples of how the C_LossOfControl system is meant to be used. However, not every debuff that causes a Loss Of Control event is caught by the...
Forum: Lua/XML Help 01-10-19, 09:18 AM
Replies: 2
Views: 1,460
Posted By jlam
The GUI just listens for UNIT_POWER_FREQUEST and...

The GUI just listens for UNIT_POWER_FREQUEST and calls UnitPower() from the handler (Interface/Addons/Blizzard_Nameplates), so it doesn't seem to be doing anything differently from what you are...
Forum: Lua/XML Help 01-09-19, 09:09 PM
Replies: 17
Views: 7,386
Posted By jlam
I dry-coded this (didn't run, didn't check for...

I dry-coded this (didn't run, didn't check for syntax errors), but hopefully it gets the idea across. It looks like you're mainly concerned with replacing names with class-colored versions of those...
Forum: Lua/XML Help 01-07-19, 11:50 AM
Replies: 17
Views: 7,386
Posted By jlam
Your function does this when it is invoked: local...

Your function does this when it is invoked:
local words, coloredMessage = {strsplit(' ', chatMessage)}, ''
for i = 1, #words do
...
end
You are not using words in any way further on in the code...
Forum: Lua/XML Help 01-05-19, 09:40 AM
Replies: 4
Views: 2,064
Posted By jlam
As an alternative that many addons use that have...

As an alternative that many addons use that have a "configuration mode", you can create a dialog button on the screen while in configuration mode that cancels the mode.
Forum: Lua/XML Help 12-29-18, 02:51 PM
Replies: 15
Views: 2,606
Posted By jlam
Here is one way to shorten it. You're doing the...

Here is one way to shorten it. You're doing the same thing per faction, so you can create a loop that does the same thing. I've renamed some variables to make it more obvious what values they hold. I...
Forum: Lua/XML Help 12-24-18, 08:30 PM
Replies: 6
Views: 6,925
Posted By jlam
I doubt they will ever update the version of Lua...

I doubt they will ever update the version of Lua (5.1.x) that is embedded into WoW. The changes from 5.1 to 5.2 with function environments will probably break too many things that were written with...
Forum: Lua/XML Help 12-09-18, 08:34 AM
Replies: 3
Views: 1,438
Posted By jlam
I believe he was just directing interested forum...

I believe he was just directing interested forum users to where the thread was hashed out since the discussion didn't take place here.
Forum: Lua/XML Help 12-04-18, 12:22 PM
Replies: 1
Views: 1,275
Posted By jlam
Is it possible to post the actual Lua instead of...

Is it possible to post the actual Lua instead of a WA export string?
Forum: Lua/XML Help 11-20-18, 10:32 PM
Replies: 14
Views: 5,752
Posted By jlam
I don't think that's quite right. AceAddon-3.0...

I don't think that's quite right. AceAddon-3.0 probably registers PLAYER_LOGIN to trigger all of the OnEnable() methods of any Ace3 addons, since OnEnable is only run once per login. ...
Forum: Lua/XML Help 11-18-18, 10:10 AM
Replies: 14
Views: 5,752
Posted By jlam
I don't think GetSpecialization() returns a spec...

I don't think GetSpecialization() returns a spec ID. You want GetInspectSpecialization() (https://wow.gamepedia.com/API_GetInspectSpecialization), but I think that only returns valid information...
Forum: General Authoring Discussion 11-09-18, 09:40 PM
Replies: 17
Views: 5,297
Posted By jlam
I wonder if you have seen this project...

I wonder if you have seen this project already?

https://github.com/wowts

There is a TypeScript-to-Lua transpiler as well as a Lua-to-TypeScript transpiler under that project umbrella. It is...
Forum: Wish List 11-19-16, 08:08 PM
Replies: 5
Views: 10,131
Posted By jlam
It sounds like the problem is more that the...

It sounds like the problem is more that the client receives events in a different order than the server generated them sometimes.

Having the server ensure that events are well-ordered when received...
Forum: Wish List 11-18-16, 01:41 AM
Replies: 5
Views: 10,131
Posted By jlam
What's the use-case for this change? Sent from...

What's the use-case for this change?

Sent from my SAMSUNG-SM-G920A using Tapatalk
Forum: Tutorials & Other Helpful Info. 02-14-15, 06:00 PM
Replies: 35
Views: 53,636
Posted By jlam
curseforge-packager...

curseforge-packager (https://github.com/ultijlam/curseforge-packager) is a shell script that you can get from GitHub (https://github.com/ultijlam/curseforge-packager). If you have Git for Windows...
Forum: Dev Tools 01-18-15, 08:03 PM
Replies: 59
Views: 66,906
Posted By jlam
I've not looked at the project code yet, but from...

I've not looked at the project code yet, but from the description I'm uneasy with using Curse's download bandwidth as part of a project to upload to WowInterface. Is there a way to just provide the...
Forum: Site help, bugs, suggestions/questions 01-15-15, 02:34 AM
Replies: 6
Views: 2,768
Posted By jlam
Ah, yes, that threw me as well. Sorry for the...

Ah, yes, that threw me as well. Sorry for the noise.
Forum: Site help, bugs, suggestions/questions 01-14-15, 02:12 AM
Replies: 6
Views: 2,768
Posted By jlam
Supporting Markdown for description & changelog

I'd like to request that Markdown support be added to the descriptions and changelogs when uploading a new file for an addon. This is mostly for convenience -- GitHub supports Markdown for the...
Forum: WoD Beta archived threads 10-12-14, 01:56 AM
Replies: 10
Views: 16,421
Posted By jlam
Ah, having GlobalStrings.lua for all locales will...

Ah, having GlobalStrings.lua for all locales will make this easier. Thanks for the link.
Showing results 1 to 25 of 29