Showing results 1 to 25 of 66
Search took 0.00 seconds.
Search: Posts Made By: Jarod24
Forum: PTR UI Bugs 08-31-17, 03:51 AM
Replies: 5
Views: 6,009
Posted By Jarod24
I've seen the same issue in my addon (IfThen)...

I've seen the same issue in my addon (IfThen) too.

The editbox works just like normal tho and I have no idea how to fix it...

anyone got suggestions?
Forum: PTR UI Bugs 07-17-17, 12:20 PM
Replies: 7
Views: 11,385
Posted By Jarod24
Is there's anyone that could maybe elaborate for...

Is there's anyone that could maybe elaborate for me how/why this new SOUNDKIT approach is better?

I don't quite see the logic in why Blizzard would change PlaySound() from accepting an input string...
Forum: Lua/XML Help 04-03-17, 07:45 AM
Replies: 8
Views: 1,748
Posted By Jarod24
I wrote an addon that did the opposite;...

I wrote an addon that did the opposite; translated all incoming hyperlinks (items, achievements etc) into my own locale.
The reason; I run an English client, but other guildmates are running on...
Forum: Lua/XML Help 10-29-16, 04:27 AM
Replies: 8
Views: 3,207
Posted By Jarod24
1. When in doubt; use parantesis: IF a and b or...

1. When in doubt; use parantesis:

IF a and b or c and not d...

IF (a and b) or (c and (not d))...

IF (a) and (b) or (c) and (not d)...


2. You can always use nesting of IF's.
Forum: Lua/XML Help 10-26-16, 03:52 AM
Replies: 12
Views: 5,425
Posted By Jarod24
Unhappy Having the same issue with my IfThen addon. The...

Having the same issue with my IfThen addon.
The ScrollingMessageFrame used as a ScrollChild no longer display's the output on screen.
After adding messages to it using AddMessage() I can also get...
Forum: Legion Beta archived threads 08-03-16, 07:58 AM
Replies: 1
Views: 9,067
Posted By Jarod24
GetItemIcon fails for Toys and this affects macros

Tested on Live servers, EU
GetBuildInfo() ==> 7.0.3, 22293, Jul 22 2016, 70000

Tested on Beta server
GetBuildInfo() ==> 7.0.3, 22324, Jul 28 2016, 70000


Problem 1: GetItemIcon() does not return a...
Forum: Legion Beta archived threads 05-27-16, 01:36 PM
Replies: 2
Views: 2,352
Posted By Jarod24
Update: Issue seem to have resolved itself with...

Update: Issue seem to have resolved itself with the latest version (21796).
Forum: Legion Beta archived threads 05-15-16, 09:04 AM
Replies: 2
Views: 2,352
Posted By Jarod24
Relevant LUA function...

Relevant LUA

function IfThen:Frame_Search(searchBox, outputBox, searchMode)
cache_helpPageType = "argument";
local text = strlower(strtrim(searchBox:GetText()));
--pprint("Frame_Search",...
Forum: Legion Beta archived threads 05-15-16, 09:01 AM
Replies: 2
Views: 2,352
Posted By Jarod24
Changes to ScrollingMessageFrame?

I'm working on updating my addon to Legion and for some reason the scrollframes in my UI do not show any entries in the scrolling list anymore.

I'm using a ScrollingMessageFrame. It's content is...
Forum: General Authoring Discussion 08-08-15, 10:42 AM
Replies: 14
Views: 14,432
Posted By Jarod24
WoW: Legion (LEG) Beta access

So Blizzard annonced the new expansion: World of Warcraft: Legion (LEG)

I can read lots of details on wowhead.com or other sites but i'm wondering about beta access for addon developers.

I know...
Forum: General Authoring Discussion 07-12-15, 06:54 AM
Replies: 4
Views: 3,677
Posted By Jarod24
If i understand correctly the scenario you are...

If i understand correctly the scenario you are describing, then the problem is that your code is running -before- everything in the game is finished loading properly.

-Do not run the code until...
Forum: General Authoring Discussion 07-12-15, 02:06 AM
Replies: 1
Views: 2,409
Posted By Jarod24
Yes, seems its broken. It also returns 0,0 for a...

Yes, seems its broken.
It also returns 0,0 for a WOD bodyguard (Defender Illona).

My solution to this is to call GetFriendshipReputation() (notice the subtle name difference of the function). If it...
Forum: General Authoring Discussion 07-09-15, 11:01 AM
Replies: 21
Views: 12,710
Posted By Jarod24
TakeScreenshow() global is removed. Use...

TakeScreenshow() global is removed.
Use Screenshot() instead
Forum: AddOn Help/Support 03-27-15, 01:50 AM
Replies: 7
Views: 4,411
Posted By Jarod24
yep. thats worse ::rolleyes: Thanks for the...

yep. thats worse ::rolleyes:


Thanks for the info.
Forum: AddOn Help/Support 03-26-15, 06:39 AM
Replies: 7
Views: 4,411
Posted By Jarod24
Skinnable/Salvage/Minable

Is there an function in the API to determine wether a dead npc can be skinned/salvaged or mined by the player?

I guess what i'm looking for is something simple like...
Forum: RealUI 03-01-15, 09:03 AM
Replies: 7
Views: 4,675
Posted By Jarod24
Known issue since patch 6.1 Blizzard added stuff...

Known issue since patch 6.1

Blizzard added stuff that requires a taint-free approach to hooking "ChatFrame_OnHyperlinkShow".

The solution i used in my own addon was to:
1. Post-hook...
Forum: Wish List 02-22-15, 11:16 AM
Replies: 1
Views: 8,491
Posted By Jarod24
Bug: GetSavedWorldBossInfo() and GetNumSavedWorldBosses() not working with WOD bosses

Functions in question:

GetSavedWorldBossInfo() (source: http://wow.gamepedia.com/API_GetSavedWorldBossInfo)
GetNumSavedWorldBosses() (source:...
Forum: Class Discussions 10-16-14, 08:02 AM
Replies: 6
Views: 16,965
Posted By Jarod24
Fishing rods and their lures. They return enchant...

Fishing rods and their lures. They return enchant data.
Forum: WoD Beta archived threads 08-17-14, 09:20 AM
Replies: 5
Views: 7,614
Posted By Jarod24
SpellHasRange() and IsSpellInRange() sometimes not working

I have tested SpellHasRange() and IsSpellInRange() on both the beta server (build 18716) and live servers.

Basically; if you use either SpellHasRange() or IsSpellInRange() for the spell "Ice lance"...
Forum: Lua/XML Help 08-07-14, 09:13 AM
Replies: 81
Views: 43,515
Posted By Jarod24
Hmm. yes "GetCurrentRegion()" is a function in...

Hmm. yes "GetCurrentRegion()" is a function in the latest build but i dont know if it's working or not.


I did a "/dump GetCurrentRegion()" on two of the the current Beta servers ("Level 100 PvE"...
Forum: Lua/XML Help 08-07-14, 07:46 AM
Replies: 81
Views: 43,515
Posted By Jarod24
Was skimming over this post a while back and...

Was skimming over this post a while back and remembered it when i was working on updating my addon for patch 6.0.

Dont know if this has been said before or not but here we go.


GUID's are changing...
Forum: Tutorials & Other Helpful Info. 09-08-13, 09:07 AM
Replies: 24
Views: 49,345
Posted By Jarod24
Just tested the IsInProvingGround() function and...

Just tested the IsInProvingGround() function and it will only return 1 after the player has talked to the NPC inside the scenario and the timer has finished counting down.



local inProvingGround...
Forum: General Authoring Discussion 04-09-13, 05:26 AM
Replies: 1
Views: 8,064
Posted By Jarod24
Notepad++ got builtin support for LUA and will...

Notepad++ got builtin support for LUA and will identify the most common keywords/functions of lua (print,for,function,if etc) automatically. Most of the time it identifies this through the filetype...
Forum: AddOn Search/Requests 01-18-13, 05:06 PM
Replies: 7
Views: 5,549
Posted By Jarod24
Ok, i finally got around to doing this. I've...

Ok, i finally got around to doing this.

I've now uploaded a new addon called "LinkTranslator" to curseforge and wowinterface.
It simply translates [itemlinks] to the language that you are using...
Forum: AddOn Help/Support 01-11-13, 06:23 AM
Replies: 7
Views: 5,938
Posted By Jarod24
Weird green compass huh.... Sounds like the...

Weird green compass huh....

Sounds like the 'crazy arrow' from the addon TomTom from your description.
You can move that around or turn it off by unlocking it in the addon settings section.
Lots...
Showing results 1 to 25 of 66