Forum: Lua/XML Help
01-09-21, 01:44 AM
|
Replies: 2
Views: 300
|
Forum: Lua/XML Help
01-09-21, 12:32 AM
|
Replies: 8
Views: 760
|
Forum: AddOn Search/Requests
01-05-21, 04:25 PM
|
Replies: 3
Views: 1,172
It's more because of a limit in the system they...
It's more because of a limit in the system they use. The ZoneAbility system attaches abilities to the zone you're in. This works in the storyline when you get the abilities to try out when you're in...
|
Forum: AddOn Search/Requests
01-02-21, 05:48 PM
|
Replies: 3
Views: 1,172
|
Forum: Lua/XML Help
12-28-20, 11:00 PM
|
Replies: 4
Views: 542
|
Forum: Lua/XML Help
12-17-20, 10:13 AM
|
Replies: 7
Views: 1,162
|
Forum: Lua/XML Help
12-16-20, 05:54 PM
|
Replies: 1
Views: 1,172
The DefaultUI already does this.
if...
The DefaultUI already does this.
if self.isHeader then
self:GetParent():GetParent():OnHeaderButtonClicked(self, self.tradeSkillInfo, button);
else
if IsModifiedClick()...
|
Forum: Lua/XML Help
12-15-20, 12:13 AM
|
Replies: 10
Views: 2,441
|
Forum: Macro Help
12-12-20, 09:26 AM
|
Replies: 2
Views: 1,919
|
Forum: Lua/XML Help
12-12-20, 09:06 AM
|
Replies: 11
Views: 1,964
|
Forum: Macro Help
12-10-20, 09:41 AM
|
Replies: 1
Views: 1,235
|
Forum: Lua/XML Help
12-05-20, 11:14 AM
|
Replies: 6
Views: 1,685
|
Forum: Site help, bugs, suggestions/questions
12-03-20, 03:45 AM
|
Replies: 1
Views: 530
|
Forum: AddOn Search/Requests
11-27-20, 05:33 PM
|
Replies: 1
Views: 662
|
Forum: Lua/XML Help
11-27-20, 03:20 AM
|
Replies: 5
Views: 845
|
Forum: Lua/XML Help
11-27-20, 12:17 AM
|
Replies: 5
Views: 845
|
Forum: Lua/XML Help
11-26-20, 06:44 PM
|
Replies: 5
Views: 845
|
Forum: Macro Help
11-24-20, 07:54 PM
|
Replies: 1
Views: 725
First, you say yourself you can just use Prowl...
First, you say yourself you can just use Prowl alone to end up stealthed and in Cat Form. You don't need to manually cast Cat Form.
Secondly, unexpected things can and do happen when you mash keys....
|
Forum: Graphics Help
11-24-20, 07:36 PM
|
Replies: 4
Views: 1,883
You would use two texture objects. For the...
You would use two texture objects. For the ability icon, use SetPortraitToTexture() (https://wow.gamepedia.com/API_SetPortraitToTexture) to convert it to a circular image. Then you put the artifact...
|
Forum: Lua/XML Help
11-22-20, 05:47 PM
|
Replies: 8
Views: 1,058
I'd honestly convert it to a loop.
function...
I'd honestly convert it to a loop.
function BattleDex.RecordBattle()
if not C_PetBattles.IsWildBattle() then return; end
local primary=0;
for i=1,C_PetBattles.GetNumPets(2) do
local...
|
Forum: Lua/XML Help
11-21-20, 11:46 PM
|
Replies: 8
Views: 1,058
|
Forum: Lua/XML Help
11-21-20, 09:00 PM
|
Replies: 8
Views: 1,058
SavedVars should be ready by the time...
SavedVars should be ready by the time ADDON_LOADED fires. It's part of the addon loading process. The error isn't complaining about the table itself being nil, there's a different error for that. The...
|
Forum: Lua/XML Help
11-21-20, 05:37 AM
|
Replies: 1
Views: 782
I was having problems with this during BfA and...
I was having problems with this during BfA and with BigWigs in particular.
I ended up splitting the bigger LoD packages into smaller pieces to deal with it, then wrote a preloader that would split...
|
Forum: Lua/XML Help
11-07-20, 06:49 PM
|
Replies: 6
Views: 4,695
|
Forum: Lua/XML Help
11-07-20, 06:24 PM
|
Replies: 6
Views: 2,962
|