Showing results 1 to 25 of 96
Search took 0.00 seconds.
Search: Posts Made By: yssaril
Forum: Macro Help 09-07-12, 08:43 PM
Replies: 16
Views: 18,241
Posted By yssaril
i may be blind but where is the DK category?

i may be blind but where is the DK category?
Forum: Lua/XML Help 09-05-12, 06:28 PM
Replies: 3
Views: 5,117
Posted By yssaril
change the level of the texture not frame also...

change the level of the texture not frame

also it is a bad habbit to call both textures "textures" give them unique names such as foreground_texture and background_texture

edit: also why create 2...
Forum: Lua/XML Help 02-18-11, 09:47 PM
Replies: 25
Views: 14,629
Posted By yssaril
i think it boils down to your understanding of...

i think it boils down to your understanding of how lua tables work and are constructed http://www.lua.org/pil/3.6.html would be a usefull read for you
Forum: Lua/XML Help 02-18-11, 04:49 PM
Replies: 25
Views: 14,629
Posted By yssaril
LeftScrollBar.scrollChild.button1 will not work...

LeftScrollBar.scrollChild.button1 will not work (and as always you have to make sure that you create your tables before using them otherwise you will get errors :D)
Forum: Lua/XML Help 02-18-11, 01:05 PM
Replies: 25
Views: 14,629
Posted By yssaril
LeftScrollBar.scrollChild.button =...

LeftScrollBar.scrollChild.button = CreateFrame('button', "HHeaderButton" .. bnid, LeftScrollBar.scrollChild)

the above code always sets the reference to your button to...
Forum: Lua/XML Help 02-17-11, 11:43 AM
Replies: 25
Views: 14,629
Posted By yssaril
its my own API sorry :) i created a small widget...

its my own API sorry :) i created a small widget recycler so i can make widgets use them and then toss them back and reuse them

Recycler looks like this
local addonname, addon = ...

function...
Forum: Lua/XML Help 02-17-11, 11:12 AM
Replies: 25
Views: 14,629
Posted By yssaril
here is what i am currently using (pick and chose...

here is what i am currently using (pick and chose the sections you want)

local addonname, addon = ...

local backdrop = {
bgFile = [[Interface\Tooltips\UI-Tooltip-Background]],
edgeFile =...
Forum: Lua/XML Help 02-13-11, 06:26 PM
Replies: 4
Views: 4,233
Posted By yssaril
if not next(table) then -- table is...

if not next(table) then
-- table is empty
else
-- table is not empty
end
Forum: Lua/XML Help 02-12-11, 10:41 AM
Replies: 3
Views: 3,686
Posted By yssaril
as far as the overlay goes i have no idea (check...

as far as the overlay goes i have no idea (check OmniCCs code)

question 1:
do ... end simply defines a chunk/block in the code anything local to that chunk can only be accessed from within the chunk...
Forum: AddOn Search/Requests 02-04-11, 07:04 PM
Replies: 2
Views: 9,978
Posted By yssaril
Magic marker can do priority based...

Magic marker can do priority based marking
http://www.wowinterface.com/downloads/info9110-MagicMarker.html

though you do have to tell it the priority (it is fairly smart too)
Forum: General Authoring Discussion 01-29-11, 09:06 AM
Replies: 5
Views: 3,088
Posted By yssaril
why do you need to detect a players client...

why do you need to detect a players client version unless you are coding for a private server? (discussions about private servers or anything related to them is a big NO)
Forum: Macro Help 01-19-11, 06:15 PM
Replies: 3
Views: 13,116
Posted By yssaril
check out the 3rd example under...

check out the 3rd example under http://www.wowpedia.org/Making_a_macro#Using_Focus

the entire page is also very useful in writing your own macros
Forum: Lua/XML Help 01-07-11, 08:46 PM
Replies: 1
Views: 2,599
Posted By yssaril
first you have to make sure that each subtable is...

first you have to make sure that each subtable is created before using it

data[ID] = data[ID] or {}
data[ID][Player] = data[ID][Player] or {}
data[ID][Player][level] = data[ID][Player][level] or...
Forum: AddOn Search/Requests 12-17-10, 08:13 PM
Replies: 4
Views: 6,281
Posted By yssaril
i just start my digging in the middle of the dig...

i just start my digging in the middle of the dig site (i mark it via tomtom) after that i just follow my spyglass (dig indicator) and have only once been sent outside the site(but that was one of...
Forum: AddOn Help/Support 12-11-10, 09:40 AM
Replies: 1
Views: 3,077
Posted By yssaril
the PLAYER_REGEN_ENABLED event always fires when...

the PLAYER_REGEN_ENABLED event always fires when you come out of combat

conversely PLAYER_REGEN_DISABLED always fires when going into combat
Forum: General Authoring Discussion 11-30-10, 12:33 PM
Replies: 13
Views: 8,409
Posted By yssaril
The first is more efficient. lua is very...

The first is more efficient. lua is very efficient in loading/creating long strings but is slow when parsing tables at load time so you want to reduce the number of tables initially. With a bit of...
Forum: AddOn Search/Requests 11-28-10, 09:46 PM
Replies: 3
map
Views: 2,933
Posted By yssaril
mapster can remove the "fog" for you

mapster can remove the "fog" for you
Forum: Lua/XML Help 11-27-10, 12:35 AM
Replies: 1
Views: 2,920
Posted By yssaril
only one font/style per font string if you want...

only one font/style per font string if you want to mix and match you have to create multiple fontstrings and align them
Forum: General WoW Chat 10-15-10, 09:49 PM
Replies: 37
Views: 23,340
Posted By yssaril
also make sure that you don't have any addons...

also make sure that you don't have any addons that are constantly erroring out in the back (if you have lua errors disabled)

try running the game without any addons to see if you still lag
Forum: Lua/XML Help 09-17-10, 09:29 PM
Replies: 4
Views: 3,655
Posted By yssaril
i am not sure if there is a way to get the...

i am not sure if there is a way to get the hunters name, however if you have the pet targeted you can iterate over your partymembers pets and check, via UnitIsUnit(), if the pet belogs to one of your...
Forum: Cataclysm Beta 09-13-10, 06:43 AM
Replies: 35
Views: 16,439
Posted By yssaril
i posted...

i posted http://forums.worldofwarcraft.com/thread.html?topicId=26725725136&postId=267233006386&sid=2000#0 on the wow cata UI & macro forums last week should i add anything to this?

also do you know...
Forum: Cataclysm Beta 09-13-10, 06:34 AM
Replies: 35
Views: 16,439
Posted By yssaril
currently taints on beta (same with my addon...

currently taints on beta (same with my addon YssBossLoot) neither of which taint on live
Forum: Cataclysm Beta 09-13-10, 06:03 AM
Replies: 35
Views: 16,439
Posted By yssaril
speaking of taint, is there any way to modify...

speaking of taint,

is there any way to modify the world map (move,size,scale, add things to the dropdown, etc) that will not cause it to taint and consequently break during combat?

Also anyone know...
Forum: Archive 09-10-10, 10:38 PM
Replies: 14
Views: 6,925
Posted By yssaril
i personally use both the curse client and...

i personally use both the curse client and wowinterface minion. in each i set addons to ignore that i want the other to update so that they do not conflict. this takes a bit to setup but once running...
Forum: Tech Chat 08-30-10, 09:14 PM
Replies: 2
Views: 5,636
Posted By yssaril
you can move/delete them wow won't care. though...

you can move/delete them wow won't care. though unless you have a use for the logs you may want to give us info of which ones they are so we can help you turn off the logging (logging can impact...
Showing results 1 to 25 of 96