Showing results 1 to 25 of 194
Search took 0.01 seconds.
Search: Posts Made By: Choonstertwo
Forum: Site help, bugs, suggestions/questions 09-29-16, 12:57 PM
Replies: 3
Views: 1,119
Posted By Choonstertwo
Thanks. The music does appear to be original, so...

Thanks. The music does appear to be original, so it should be fine.
Forum: Site help, bugs, suggestions/questions 09-29-16, 06:55 AM
Replies: 3
Views: 1,119
Posted By Choonstertwo
Possibility of uploading a Pokemon Uranium music pack

Someone recently suggested that I should include the music from Pokemon Uranium (a fan-made Pokemon game) with Pet Battle Music (http://www.wowinterface.com/downloads/info21557-PetBattleMusic.html)....
Forum: General Authoring Discussion 08-29-16, 06:53 AM
Replies: 4
Views: 2,233
Posted By Choonstertwo
Unfortunately I'm using the alert frame system,...

Unfortunately I'm using the alert frame system, which calls GetItemInfo itself; so I need to ensure that it returns valid results before I try to show any alerts.
Forum: General Authoring Discussion 08-29-16, 05:56 AM
Replies: 4
Views: 2,233
Posted By Choonstertwo
Thanks, I'll try using that.

Thanks, I'll try using that.
Forum: General Authoring Discussion 08-28-16, 06:13 PM
Replies: 4
Views: 2,233
Posted By Choonstertwo
Strange GetItemInfo behaviour

Someone has filed a ticket (https://wow.curseforge.com/addons/loot-won-alert-hidermover/tickets/1-error-after-reload/) for one of my AddOns that appears to demonstrate some odd behaviour of...
Forum: Site help, bugs, suggestions/questions 05-01-16, 02:40 PM
Replies: 5
Views: 1,098
Posted By Choonstertwo
Thanks, will do.

Thanks, will do.
Forum: Site help, bugs, suggestions/questions 04-29-16, 10:53 AM
Replies: 5
Views: 1,098
Posted By Choonstertwo
I received the email on 2016-04-29 at 06:28:50...

I received the email on 2016-04-29 at 06:28:50 (UTC), i.e. 10 hours ago.
Forum: Site help, bugs, suggestions/questions 04-29-16, 04:29 AM
Replies: 5
Views: 1,098
Posted By Choonstertwo
New Comment Email Marked As Spam

I just noticed that WoWI sent me an email notifying me of a new comment on one of my AddOns, but GMail marked it as spam.

The reason given was something about violating guidelines, it linked to this...
Forum: Lua/XML Help 11-07-15, 10:15 PM
Replies: 11
Views: 7,907
Posted By Choonstertwo
That's for string.format rather than the pattern...

That's for string.format rather than the pattern matching functions, did you mean to link this page (http://wiki.roblox.com/index.php?title=String_pattern)?
Forum: Lua/XML Help 07-09-15, 02:15 PM
Replies: 3
Views: 2,174
Posted By Choonstertwo
Each Lua file in your AddOn is called with two...

Each Lua file in your AddOn is called with two arguments: the AddOn's folder name and a table unique to the AddOn (often called namespace or ns). You can use the namespace table to store your AddOn's...
Forum: Dev Tools 07-08-15, 09:45 AM
Replies: 59
Views: 66,378
Posted By Choonstertwo
I'm getting a "Fetching failed with status 128"...

I'm getting a "Fetching failed with status 128" error when forcing an update on one of my AddOns.

Full log:Jul 08 08:38:14 choonster-wow-addons heroku/router: at=info method=GET...
Forum: Lua/XML Help 06-25-15, 12:28 PM
Replies: 5
Views: 3,053
Posted By Choonstertwo
Resike's code is getting the WorldMapFramePOI1...

Resike's code is getting the WorldMapFramePOI1 and WorldMapFramePOI1Texture objects, your code is getting the WorldMapFramePOI1 object and then attempting to concatenate that with the "Texture"...
Forum: Lua/XML Help 06-24-15, 05:11 PM
Replies: 8
Views: 3,942
Posted By Choonstertwo
XML doesn't allow any sort of conditional...

XML doesn't allow any sort of conditional declaration (i.e. you can't say "only declare template X when Y is true").
Forum: Lua/XML Help 06-24-15, 04:17 PM
Replies: 8
Views: 3,942
Posted By Choonstertwo
To my knowledge, the Lua environment doesn't know...

To my knowledge, the Lua environment doesn't know anything about virtual objects.
Forum: General Authoring Discussion 06-23-15, 08:26 AM
Replies: 20
Views: 8,670
Posted By Choonstertwo
I ended up using BankNorris' code from post #20,...

I ended up using BankNorris' code from post #20, which you can see here (https://github.com/Choonster-WoW-AddOns/KillingBlow_Enhanced/blob/d3904c973138dcffa04e952661427f519b0c60fc/core.lua). Thanks...
Forum: General Authoring Discussion 06-18-15, 01:53 PM
Replies: 20
Views: 8,670
Posted By Choonstertwo
Thanks for all the responses. I already have...

Thanks for all the responses. I already have arenas and BGs working, but I hadn't actually considered FFA PvP zones (I never did much PvP myself); I was only thinking of the three World PvP zones...
Forum: Lua/XML Help 06-17-15, 01:41 PM
Replies: 8
Views: 4,095
Posted By Choonstertwo
Some AddOn's SavedVariables file (it may or may...

Some AddOn's SavedVariables file (it may or may not be Skada's) is taking up a large amount of memory when loaded so WoW ran out of memory when trying to load Skada's SavedVariables file. Does it...
Forum: Lua/XML Help 06-17-15, 01:25 PM
Replies: 8
Views: 4,095
Posted By Choonstertwo
Notice that ["barheight"] = 12 is part of a table...

Notice that ["barheight"] = 12 is part of a table inside the windows table, the data isn't in the windows table itself. This inner table is at index 1 of the windows table.

When you put values...
Forum: General Authoring Discussion 06-17-15, 09:51 AM
Replies: 20
Views: 8,670
Posted By Choonstertwo
Thanks for that. So it's safe to assume that the...

Thanks for that. So it's safe to assume that the user is in an active World PvP zone from when BATTLEFIELD_MGR_ENTERED fires up until BATTLEFIELD_MGR_EJECTED, BATTLEFIELD_MGR_STATE_CHANGED or...
Forum: General Authoring Discussion 06-17-15, 06:18 AM
Replies: 20
Views: 8,670
Posted By Choonstertwo
Do you know whether that returns true only during...

Do you know whether that returns true only during an active battle or any time you're in a World PvP zone? Do you know which event to listen for to know when the return value changes? Unfortunately I...
Forum: General Authoring Discussion 06-15-15, 09:03 AM
Replies: 20
Views: 8,670
Posted By Choonstertwo
Just for future reference: When you enter a new...

Just for future reference:


When you enter a new continent/instance (including when you first log in), PLAYER_ENTERING_WORLD and ZONE_CHANGED_NEW_AREA are fired in that order. When...
Forum: General Authoring Discussion 06-15-15, 08:03 AM
Replies: 20
Views: 8,670
Posted By Choonstertwo
That's a good idea. Using GetInstanceInfo, I can...

That's a good idea. Using GetInstanceInfo, I can at least avoid calling SetMapToCurrentZone on every continent except Northrend.
Forum: General Authoring Discussion 06-15-15, 03:42 AM
Replies: 20
Views: 8,670
Posted By Choonstertwo
Thanks, I'll use that approach.

Thanks, I'll use that approach.
Forum: General Authoring Discussion 06-14-15, 10:43 PM
Replies: 20
Views: 8,670
Posted By Choonstertwo
Detecting World PvP Zones

Someone has recently commented (http://www.curse.com/addons/wow/killingblow_enhanced#c57) on my KillingBlow_Enhanced AddOn that it doesn't work in Ashran when PvP only mode (i.e. only report killing...
Forum: Site help, bugs, suggestions/questions 03-06-15, 05:00 PM
Replies: 4
Views: 2,113
Posted By Choonstertwo
There's been a few threads asking about...

There's been a few threads asking about it:
http://www.wowinterface.com/forums/showthread.php?t=50250
http://www.wowinterface.com/forums/showthread.php?t=51528

Dolby responded here...
Showing results 1 to 25 of 194