Forum: Lua/XML Help
03-01-21, 07:31 PM
|
Replies: 9
Views: 421
|
Forum: AddOn Search/Requests
02-04-21, 11:11 AM
|
Replies: 2
Views: 287
|
Forum: AddOn Help/Support
01-24-21, 05:18 PM
|
Replies: 7
Views: 606
Lua does not use regex. It has a similar but...
Lua does not use regex. It has a similar but limited engine:
https://wow.gamepedia.com/Pattern_matching
In this case, since I assume you want to keep the comma in the center, you need %d with...
|
Forum: Lua/XML Help
01-17-21, 03:33 PM
|
Replies: 3
Views: 751
|
Forum: Lua/XML Help
01-17-21, 10:36 AM
|
Replies: 3
Views: 751
|
Forum: Macro Help
01-13-21, 07:37 PM
|
Replies: 4
Views: 2,641
|
Forum: Macro Help
01-13-21, 05:26 PM
|
Replies: 2
Views: 950
The "a" table with the numbers contains the...
The "a" table with the numbers contains the marker ids. It only has 6, in order: skull, moon, square, triangle, diamond, and cross. You just need to add the other two, which is 5 for star and 6 for...
|
Forum: Lua/XML Help
01-10-21, 11:04 PM
|
Replies: 7
Views: 1,147
I was curious what addon had those ebars,...
I was curious what addon had those ebars, googling brought me to your unanswered reddit thread. Since you want to check if the group has 4 or more players, checking the number of members is...
|
Forum: Lua/XML Help
01-10-21, 09:09 PM
|
Replies: 7
Views: 1,147
local...
local f=CreateFrame("frame")
f:RegisterEvent("GROUP_ROSTER_UPDATE")
f:SetScript("OnEvent",function()
if UnitName("party3")...
|
Forum: Lua/XML Help
01-09-21, 11:39 PM
|
Replies: 2
Views: 826
|
Forum: Lua/XML Help
01-05-21, 08:28 AM
|
Replies: 2
Views: 1,732
|
Forum: Macro Help
01-04-21, 08:30 PM
|
Replies: 4
Views: 2,641
The WorldStateFrame was removed, so...
The WorldStateFrame was removed, so GetNumWorldStateUI no longer exists. All extra info frames, such as capture bars under the minimap, world pvp zones, battleground information, and so on was...
|
Forum: AddOn Help/Support
01-04-21, 07:35 AM
|
Replies: 4
Views: 2,599
|
Forum: AddOn Help/Support
01-02-21, 01:25 PM
|
Replies: 1
Views: 917
|
Forum: AddOn Search/Requests
12-24-20, 08:16 PM
|
Replies: 2
Views: 1,839
Looking at the code for the ElvUI Wild Imps...
Looking at the code for the ElvUI Wild Imps Tracker, it seems like it could be converted into a WeakAura with some work.
However, with four simple code edits, you can get it working alone without...
|
Forum: Lua/XML Help
12-23-20, 05:52 PM
|
Replies: 8
Views: 2,752
The guild member index is from 1 to the total...
The guild member index is from 1 to the total number of guild members. The order of the index depends on the view settings of the roster window, but even then, there's no rhyme or reason for which...
|
Forum: AddOn Search/Requests
12-21-20, 03:52 PM
|
Replies: 2
Views: 2,675
|
Forum: Lua/XML Help
12-19-20, 01:20 PM
|
Replies: 5
Views: 1,695
It's possible there's a problem with accessing...
It's possible there's a problem with accessing global variables within the aura environment during loading screens. WeakAuras attempts to keep aura environments restricted. You can try collecting the...
|
Forum: RealUI
12-16-20, 02:18 PM
|
Replies: 3
Views: 1,920
|
Forum: AddOn Search/Requests
12-16-20, 07:56 AM
|
Replies: 5
Views: 3,583
|
Forum: Lua/XML Help
12-16-20, 07:51 AM
|
Replies: 19
Views: 7,821
|
Forum: Lua/XML Help
12-15-20, 02:10 PM
|
Replies: 19
Views: 7,821
If you're using the backdrop method, the API...
If you're using the backdrop method, the API behind that is called "NineSlice". This is a method of creating resizeable textured frames of nine pieces, consisting of four static corners, four...
|
Forum: Lua/XML Help
12-14-20, 09:41 PM
|
Replies: 10
Views: 3,047
|
Forum: Lua/XML Help
12-14-20, 08:48 AM
|
Replies: 3
Views: 2,650
|
Forum: Lua/XML Help
12-12-20, 02:27 PM
|
Replies: 19
Views: 7,821
|