Showing results 1 to 25 of 96
Search took 0.00 seconds.
Search: Posts Made By: Spawnova
Forum: Lua/XML Help 07-18-20, 07:15 PM
Replies: 2
Views: 2,662
Posted By Spawnova
Thanks dude that was exactly what I was using for!

Thanks dude that was exactly what I was using for!
Forum: Lua/XML Help 07-17-20, 08:26 PM
Replies: 2
Views: 2,662
Posted By Spawnova
How to set companion pet ability to tooltip

I'm trying to parse the data from the FloatingPetBattleAbilityTooltip however I don't actually know how to set the ability to the tooltip, and I can't find much information online.



local tip =...
Forum: Lua/XML Help 09-07-18, 03:35 PM
Replies: 5
Views: 6,244
Posted By Spawnova
Lua is not my primary language; I thought there...

Lua is not my primary language; I thought there was a better way but since table.foreach worked I didn't bother looking but now I know to use pairs, thank you! :)
Forum: Lua/XML Help 09-02-18, 02:30 AM
Replies: 5
Views: 6,244
Posted By Spawnova
Thank you, I've found a solution with the...

Thank you, I've found a solution with the information provided.

GetQuestsCompleted(quests1) --before killing rare
GetQuestsCompleted(quests2) --then I call this after killing the...
Forum: Lua/XML Help 09-01-18, 10:58 AM
Replies: 5
Views: 6,244
Posted By Spawnova
Question Help finding rare mob quest ID

I'm looking for a way to find the quest ID associated with a rare to determine if I've killed it today or not, searched for hours can't find anything.

I've tried using eventtrace and checking the...
Forum: Lua/XML Help 08-03-15, 04:42 PM
Replies: 4
Views: 2,343
Posted By Spawnova
I'm not sure, I eventually just removed the...

I'm not sure, I eventually just removed the original left click attribute and replaced it with one of my macros and it works fine, I think it had something to do with the key modifiers. Thanks for...
Forum: Lua/XML Help 08-01-15, 01:33 PM
Replies: 4
Views: 2,343
Posted By Spawnova
Right click runs a script to show one of my...

Right click runs a script to show one of my windows, shift left click cast's a macro that can't be done otherwise.

shift-type1 = MACRO_NAME --
type2 = "/script ToggleShinsPetWindow()"
Forum: Lua/XML Help 08-01-15, 10:13 AM
Replies: 4
Views: 2,343
Posted By Spawnova
Can 1 ActionButton have 2 macros attributes?

I have some code to make many actionButton and 1 of the buttons has to have 2 macros, 1 for shift left click and another for right click, but whenever I shift left click, it always executes the macro...
Forum: Lua/XML Help 07-26-15, 02:17 PM
Replies: 0
Views: 1,382
Posted By Spawnova
ActionButton NormalTexture too big

Disregard post, I was using the wrong functions for setting texture sorry. =P
Forum: Lua/XML Help 06-26-14, 11:13 AM
Replies: 2
Views: 3,394
Posted By Spawnova
That seems to work for my needs, thank you very...

That seems to work for my needs, thank you very much!
Forum: Lua/XML Help 06-26-14, 10:55 AM
Replies: 2
Views: 3,394
Posted By Spawnova
Intercept messages

What would be a good way to check a message before it is shown in the chat box and decide whether it should be shown or discarded?
Forum: Lua/XML Help 04-27-14, 01:34 PM
Replies: 5
Views: 5,613
Posted By Spawnova
Ahh thanks leej, I'm looking into UoF now it's...

Ahh thanks leej, I'm looking into UoF now it's seems promising and so far is easy enough to use. =P
Forum: Lua/XML Help 04-26-14, 11:08 PM
Replies: 5
Views: 5,613
Posted By Spawnova
The problem I am having is that none of the...

The problem I am having is that none of the changes actually take effect.

I can't seem to find any info on CharacterFrame or CharacterFramePortrait.

/fstack only shows PlayerFrame/health/mana no...
Forum: Lua/XML Help 04-26-14, 06:44 PM
Replies: 5
Views: 5,613
Posted By Spawnova
Editing PlayerFrame

Is there anyway to edit the PlayerFrame through an addon?

Such as removing the character portrait or certain ui elements without having to completely make new frames?
Forum: Lua/XML Help 03-18-14, 02:42 PM
Replies: 5
Views: 3,402
Posted By Spawnova
Thanks guys, that's a lot of information I did...

Thanks guys, that's a lot of information I did not know about. :)
Forum: Lua/XML Help 03-18-14, 01:47 PM
Replies: 5
Views: 3,402
Posted By Spawnova
Ah okay, that works. I read on the wiki/wowpedia...

Ah okay, that works.

I read on the wiki/wowpedia page that the normal event was the same as unfiltered just only tracking what you did so I figured it would would be fine, but everything shows up...
Forum: Lua/XML Help 03-18-14, 01:30 PM
Replies: 5
Views: 3,402
Posted By Spawnova
Some abilities do not show in combat log

I'm trying to get abilities like concussive shot and silencing shot to show in the combat log but with no success, I'm just curious if such spells are not displayed in the combat log or if I'm...
Forum: Lua/XML Help 02-20-14, 04:28 PM
Replies: 7
Views: 3,998
Posted By Spawnova
I had a problem that I wasn't aware of until just...

I had a problem that I wasn't aware of until just recently that I could not sell items normally which I resolved by reading the code you have submitted and registering clicks for AnyUp, the sell part...
Forum: Lua/XML Help 02-20-14, 01:56 PM
Replies: 7
Views: 3,998
Posted By Spawnova
Ah, you guys are correct! Everything is working...

Ah, you guys are correct!

Everything is working now, thank you so much for your help. :D
Forum: Lua/XML Help 02-20-14, 01:46 PM
Replies: 7
Views: 3,998
Posted By Spawnova
That's exactly what I was looking for! Thanks a...

That's exactly what I was looking for! Thanks a bunch ^.^

I do get one error though, it seems only left and right button are passed, for example in the script below...

for container = 1, 5 do
for...
Forum: Lua/XML Help 02-20-14, 12:36 PM
Replies: 7
Views: 3,998
Posted By Spawnova
Shift middle click an item for GetItemInfo

I would like to be able to Shift Middle click an item in my bags and have it call GetItemInfo on that item, but I'm not sure where to start.

I've done some google-ing and can't find anything myself...
Forum: Lua/XML Help 02-17-14, 08:59 AM
Replies: 4
Views: 6,171
Posted By Spawnova
Thanks vlad, I appreciate all the help. ^.^ This...

Thanks vlad, I appreciate all the help. ^.^

This does a lot more than what I was thinking it will be fun to mess around with it. :D
Forum: Lua/XML Help 02-17-14, 06:50 AM
Replies: 4
Views: 6,171
Posted By Spawnova
Yea I've been working on it most of this morning,...

Yea I've been working on it most of this morning, I'm not very good at math when it comes to things like this but I'm still trying to figure it out in the mean time.
Forum: Lua/XML Help 02-17-14, 03:13 AM
Replies: 4
Views: 6,171
Posted By Spawnova
Ping minimap question

Since the function to ping the minimap uses it's own values instead of what GetPlayerMapPosition returns, I'm having trouble pinging the minimap at the location I would like to.

For instance I would...
Forum: Macro Help 02-12-14, 07:24 PM
Replies: 6
Views: 9,758
Posted By Spawnova
Thanks Vrul, that is helpful, declaring both...

Thanks Vrul, that is helpful, declaring both variables at once makes much more sense.
Showing results 1 to 25 of 96