Showing results 1 to 25 of 32
Search took 0.00 seconds.
Search: Posts Made By: upyursh
Forum: Lua/XML Help 09-01-10, 01:49 PM
Replies: 7
Boe
Views: 4,634
Posted By upyursh
Thanks peeps :) This is more for Master Looting,...

Thanks peeps :) This is more for Master Looting, but I will have a look.
Forum: Lua/XML Help 09-01-10, 11:29 AM
Replies: 7
Boe
Views: 4,634
Posted By upyursh
Boe

Hey, does anybody know how I would determine if an item in a loot window is BoE?

Thanks for your help :)
Forum: Lua/XML Help 06-28-10, 03:20 AM
Replies: 1
Views: 2,646
Posted By upyursh
got it :) had to execute "aura:ScanAllAuras()" to...

got it :) had to execute "aura:ScanAllAuras()" to refresh first
Forum: Lua/XML Help 06-27-10, 10:20 AM
Replies: 1
Views: 2,646
Posted By upyursh
Issues Checking Buffs

Hi All,

I am writting my own flask/food checking function, it works as I want, but it doesnt seem to recognise when someone has actually flasked since the last check;

I am using for the UnitHasBuff...
Forum: Lua/XML Help 06-11-10, 06:13 AM
Replies: 3
Views: 3,231
Posted By upyursh
Table Sort Headache

Im getting a headache with this haha

I have a table of raid subs, but of course they are added to the table as they come in.

Table is like this..


["subsList"] = {
["AToonName"] =...
Forum: Lua/XML Help 05-25-10, 07:51 PM
Replies: 10
Views: 5,573
Posted By upyursh
If you are wanting to clear the sub tables then...

If you are wanting to clear the sub tables then you will need to pass the ID for the table in something like this;


local function ValidateSlashCommand(msg)
msg = string.lower(msg);
...
Forum: Released AddOns 05-16-10, 02:33 AM
Replies: 362
Views: 286,834
Posted By upyursh
Druid Mana Notice Block

Just wrote this up on my blog but thought I'd shared here.

http://www.upyursh.com/wp-content/uploads/2010/05/manamgt_litepanels.jpg

Basically the block will put a message and play a sound (when not...
Forum: Lua/XML Help 05-11-10, 07:27 AM
Replies: 13
Views: 9,766
Posted By upyursh
I am already monitoring combat log so I will use...

I am already monitoring combat log so I will use that to identify if she's around and then get her health etc, that should do the trick.

Thanks for the code btw I will store that
Forum: Lua/XML Help 05-11-10, 02:48 AM
Replies: 13
Views: 9,766
Posted By upyursh
Thanks Waverian, makes sense why it wouldnt find...

Thanks Waverian, makes sense why it wouldnt find her then :) I'll find an alternate method to check boss health than using boss1 for unitid then
Forum: Lua/XML Help 05-10-10, 06:25 PM
Replies: 13
Views: 9,766
Posted By upyursh
haha im hitting refresh every 15 secs :P

haha im hitting refresh every 15 secs :P
Forum: Lua/XML Help 05-10-10, 06:23 PM
Replies: 13
Views: 9,766
Posted By upyursh
Hmm its ok, I dont know why it wasnt working...

Hmm its ok, I dont know why it wasnt working then, it just never found her :/

Ill create some debugging in the addon to try find the UnitID through a number of ways and see which one works. I'd...
Forum: Lua/XML Help 05-10-10, 06:15 PM
Replies: 13
Views: 9,766
Posted By upyursh
lol ok ill try that next time we face her...

lol ok ill try that next time we face her :)

good news is my addon seemed to help organise people enough to get our first kill :D
Forum: Lua/XML Help 05-10-10, 05:50 PM
Replies: 13
Views: 9,766
Posted By upyursh
So using boss1 didnt work for Sindy, I dont know...

So using boss1 didnt work for Sindy, I dont know why :(
I ended up using focus instead :(

Any ideas why UnitHealth("boss1") would return 0 during the encounter?

Is UnitHealth("Sindragosa") a better...
Forum: Lua/XML Help 05-05-10, 08:30 PM
Replies: 13
Views: 9,766
Posted By upyursh
ill try changing to boss1 (this is for Sind) I...

ill try changing to boss1 (this is for Sind)

I am checking for Phase 3, once she's below 35% then i set a flag to Phase3 and then dont need health any longer really

Hmm actually I need to reset...
Forum: Lua/XML Help 05-05-10, 07:32 PM
Replies: 1
Views: 2,724
Posted By upyursh
As a fellow noob addon dev I'll give you some...

As a fellow noob addon dev I'll give you some advise, you've given no details that will assist anyone with helping you.

If you're getting errors you need to say what they are.

You said you copied...
Forum: Lua/XML Help 05-05-10, 06:33 PM
Replies: 13
Views: 9,766
Posted By upyursh
Best Way to get a Bosses Health

So I know the boss name but I want to get its health. Is this the best way? Is their limitations to doing it this way?


bossname = "Ya Mumma"
bossmax = UnitHealthMax(bossname)
...
Forum: Lua/XML Help 05-02-10, 03:29 AM
Replies: 2
Views: 11,685
Posted By upyursh
GetSpellCooldown() issue

I'm having an oddity with GetSpellCooldown


local start, duration, enabled = GetSpellCooldown("Innervate");
if ( start > 0 and duration > 0) then
print("Innervate is on cooldown")
else
...
Forum: Lua/XML Help 04-20-10, 10:43 PM
Replies: 5
Views: 5,952
Posted By upyursh
Dont worry I gots it, had to recall the function...

Dont worry I gots it, had to recall the function that was building the listing :D
Forum: Lua/XML Help 04-20-10, 10:40 PM
Replies: 5
Views: 5,952
Posted By upyursh
ok so I have it dynamically grabbing my emotes...

ok so I have it dynamically grabbing my emotes now, only thing that isnt working is when I add a new emote my options are not updating accordingly.

Is there a function to do this? do you want me to...
Forum: Lua/XML Help 04-20-10, 07:33 AM
Replies: 5
Views: 5,952
Posted By upyursh
thanks mate :) ill have a look tonight /cheer

thanks mate :) ill have a look tonight

/cheer
Forum: Lua/XML Help 04-19-10, 03:27 PM
Replies: 5
Views: 5,952
Posted By upyursh
AceConfig (Ace3)

Hi all,

another question, this time with AceConfig :)
I have gotten my addon working pretty well I'm just having some issues with my Configs.

I have my default db setup as follows;


--...
Forum: Lua/XML Help 04-19-10, 10:39 AM
Replies: 4
Views: 3,964
Posted By upyursh
local function RegisterChatCommand ( Slash ) ...

local function RegisterChatCommand ( Slash )
Addon:RegisterChatCommand( Slash, function ()
print( "You typed " .. Slash )
end )
end

RegisterChatCommand( "slasha"...
Forum: Lua/XML Help 04-08-10, 10:58 AM
Replies: 4
Views: 3,964
Posted By upyursh
Which slash command was run

What I would like is to be able to have multiple slash commands registered in my addon but then be able to identify which one was executed.


Addon:RegisterChatCommand( "slasha" , "SlashFunction"...
Forum: AddOn Help/Support 10-07-09, 10:02 PM
Replies: 11
Views: 3,766
Posted By upyursh
and make sure you actually create a screenshot by...

and make sure you actually create a screenshot by htting Print Screen button while ingame
Forum: AddOn Help/Support 10-07-09, 10:01 PM
Replies: 11
Views: 3,766
Posted By upyursh
Try doing a search of your harddrive for...

Try doing a search of your harddrive for WoWScrnShot*
Showing results 1 to 25 of 32