Showing results 1 to 25 of 33
Search took 0.00 seconds.
Search: Posts Made By: sirpucna
Forum: AddOn Help/Support 04-08-24, 09:10 PM
Replies: 3
Views: 318
Posted By sirpucna
the best thing that person should of done is...

the best thing that person should of done is noted in their comments that their work was based on yours, common practice.

blizzard have a policy...
Forum: AddOn Help/Support 03-28-24, 06:30 AM
Replies: 4
Views: 306
Posted By sirpucna
i got ChatGPT to whip this up for me a bit...

i got ChatGPT to whip this up for me a bit ago.


--/dump C_GossipInfo.GetOptions()
--use above on every dialog to capture gossip IDs
local NPC_LIST = {
["Katy Stampwhistle"] =...
Forum: AddOn Help/Support 03-12-24, 08:09 AM
Replies: 1
Views: 505
Posted By sirpucna
theres only 1 way to solve this, use a nameplate...

theres only 1 way to solve this, use a nameplate addon that draws its own frames, i.e plater in combination with the weakaura you're using
Forum: General Authoring Discussion 03-12-24, 03:11 AM
Replies: 3
Views: 2,489
Posted By sirpucna
i went down a similar path to you to for dark...

i went down a similar path to you to for dark blizz frames, check out a project on curseforge called 'Blizzard Raid Frames - Debuff Highlight By slothpala' to get you started

using the above project...
Forum: General Authoring Discussion 01-23-23, 09:23 PM
Replies: 4
Views: 3,217
Posted By sirpucna
after a bit of testing, i've determined any new...

after a bit of testing, i've determined any new information you teach it is localized to the window you initiated the chat in, if you create a new chat window, it simply forgets what you taught...
Forum: General Authoring Discussion 01-22-23, 11:21 PM
Replies: 4
Views: 3,217
Posted By sirpucna
ChatGPT

Just signed up and thought i'd try put it through World of Warcraft lua.

curious to see what else people can do with it

here are some things i've tried so far:

build a lua script for world of...
Forum: Lua/XML Help 11-27-22, 06:39 PM
Replies: 2
Views: 1,066
Posted By sirpucna
perfect! located the string I wanted swapped out...

perfect!
located the string I wanted
swapped out child.SliderWithSteppers for child.DropDown, changed .Slider to .Button and all is well.

much appreciated.
Forum: Lua/XML Help 11-27-22, 12:43 AM
Replies: 2
Views: 1,066
Posted By sirpucna
gray out a setting

looking for a way to gray out a setting in Blizzards new DF setting panel.
In the past I did:

InterfaceOptionsNamesPanelUnitNameplatesMakeLarger.setFunc = function()...
Forum: Lua/XML Help 11-12-22, 12:57 AM
Replies: 2
Views: 817
Posted By sirpucna
cheers, not much info about this stuff, infact...

cheers, not much info about this stuff, infact posts relating to this was from you back in 2016.

think i'll scrap the idea i had.
Forum: Lua/XML Help 11-11-22, 01:09 AM
Replies: 2
Views: 817
Posted By sirpucna
Class info while in vehicle

When I use UnitClass(unit) while in a vehicle, when I target myself it returns as "Rogue" even though I am not, any way to check what class/name someone is while they are in a vehicle? I guess this...
Forum: AddOn Search/Requests 11-09-22, 09:03 PM
Replies: 19
Views: 8,724
Posted By sirpucna
line added in bold local hideRest =...

line added in bold

local hideRest = CreateFrame("Frame")
PlayerFrame.PlayerFrameContent.PlayerFrameContentContextual.PlayerRestLoop:SetParent(hideRest) --hide...
Forum: AddOn Search/Requests 11-09-22, 05:31 AM
Replies: 19
Views: 8,724
Posted By sirpucna
heres my way: local hideRest =...

heres my way:

local hideRest = CreateFrame("Frame")
PlayerFrame.PlayerFrameContent.PlayerFrameContentContextual.PlayerRestLoop:SetParent(hideRest) --hide...
Forum: Lua/XML Help 10-27-22, 03:16 AM
Replies: 22
Views: 8,606
Posted By sirpucna
is the pre patch using a old version of wow...

is the pre patch using a old version of wow compared to the beta?
Retail Pre-Patch: 46313
Current Beta: 46259

Seems many of the old Tooltip handlers are still used whereas the new ones suggested for...
Forum: AddOn Help/Support 10-18-22, 03:14 AM
Replies: 2
Views: 1,420
Posted By sirpucna
instead of TargetFrame.SetPoint = function()...

instead of
TargetFrame.SetPoint = function() end
try
TargetFrame:SetUserPlaced(true)
and so on
Forum: PTR General Discussion 10-16-22, 06:34 PM
Replies: 13
Views: 5,175
Posted By sirpucna
i had similar problems, inconsistency in...

i had similar problems, inconsistency in taints.

i've found that any manipulation of the chat frame, no matter how small always leads to Edit Mode causing taints, if it doesn't right away,...
Forum: PTR General Discussion 10-16-22, 06:18 PM
Replies: 9
Views: 3,615
Posted By sirpucna
ahh InterfaceOptionsFrame:Show() did indeed throw...

ahh InterfaceOptionsFrame:Show() did indeed throw a error, swear it didn't in beta last week, but regarding beta(not ptr), the following was tested working just now.

CreateFrame("Frame",...
Forum: PTR General Discussion 10-16-22, 07:26 AM
Replies: 9
Views: 3,615
Posted By sirpucna
try...

try instead:

InterfaceOptionsFrame:Show()
InterfaceOptionsFrame_OpenToCategory("YourAddonName")
Forum: Lua/XML Help 10-08-22, 02:29 AM
Replies: 2
Views: 1,188
Posted By sirpucna
i dont remember who i pulled this off, works in...

i dont remember who i pulled this off, works in retail and beta.

local rplc =...
Forum: PTR General Discussion 10-07-22, 04:25 AM
Replies: 8
Views: 3,384
Posted By sirpucna
ended up having to look at...

ended up having to look at the:
https://wowpedia.fandom.com/wiki/Patch_10.0.0/API_changes

and sure enough a new line listed for exactly what i needed since everything else i tried didn't...
Forum: PTR General Discussion 10-03-22, 08:47 AM
Replies: 13
Views: 5,175
Posted By sirpucna
Edit Mode taints easily

I do something as simple as
CHAT_TAB_HIDE_DELAY = 0

soon as i hit "Edit Mode" in the 10.x client it taints.
[ADDON_ACTION_FORBIDDEN] AddOn 'Test' tried to call the protected function 'ClearTarget()
Forum: PTR General Discussion 10-01-22, 01:24 AM
Replies: 8
Views: 3,384
Posted By sirpucna
do you know how to change the color of the...

do you know how to change the color of the texture in the playerframe and targetframe.

specifically this texture, its green.
<BarTexture...
Forum: PTR General Discussion 09-26-22, 07:56 AM
Replies: 8
Views: 3,384
Posted By sirpucna
cheers, it is indeed changing, i did the same...

cheers, it is indeed changing, i did the same thing before, however i wasn't targeting anything and when the frame updated, the change refreshed back to default.
next step, figure out how to make it...
Forum: PTR General Discussion 09-25-22, 06:34 AM
Replies: 8
Views: 3,384
Posted By sirpucna
i tried that exact line, i couldn't modify...

i tried that exact line, i couldn't modify it.
even tried using Terciob's Frame Inspect addon to edit it on the fly.
Forum: PTR General Discussion 09-25-22, 03:18 AM
Replies: 8
Views: 3,384
Posted By sirpucna
TargetFrame texture

This is for WoW 10.0x DF

I can't seem to figure out how to change the texture of the TargetFrame
I can set the PlayerFrame just fine like this:
PlayerFrameHealthBar:SetStatusBarTexture(423819)

Any...
Forum: Lua/XML Help 03-15-21, 07:12 AM
Replies: 3
Views: 1,488
Posted By sirpucna
thanks for the reply, i uploaded a better picture...

thanks for the reply, i uploaded a better picture of the area i want to cut(green), but doing so would leave a ugly mark on the left, so i was thinking using the purple highlighted area to copy and...
Showing results 1 to 25 of 33