Results: 30Comments by: zireko
File: LootDice04/27/14
I moved everything around and now I...
Posted By: zireko
I moved everything around and now I'm getting and error. I think it might be something to do with trying to pull up the savedVar. I'm gonna link all my code lua, xml, and txt and show the picture of the error. Maybe you can see what I'm messing up on. O and Pure thank for all this help. LUA RollVars = {} RollVars = {} Rol...
File: ZAM Notebook04/26/14
Love your addon. I made a page call...
Posted By: zireko
Love your addon. I made a page called Khenarthi's Roost and listed every quest that is on Khenarthi's Roost. I was wonder if there is a way I can past into a page. Because I wanted to make another page called Auridon and there are lots of quest there. I'm planning on putting a little * beside each quest once I finish them. Kind of a...
File: LootDice04/26/14
I know I must be putting the code i...
Posted By: zireko
I know I must be putting the code in the wrong order or something. Not sure exactly where I'm messing up but I feel it's close. RollVars = {} RollVars.Defaults = { = false, = { = 0, = 0, = TOPLEFT, = TOPLEFT, }, } function MyAddonRollDice() local num = math.random(1,100) return num end...
File: LootDice04/26/14
So create something similar to that...
Posted By: zireko
So create something similar to that and then you need to call the saved vars file creation like this: PureVars.SV = ZO_SavedVars:New( "Pure_Variables" , 2 , nil , PureVars.Defaults , nil ) The the arguments in the ZO_SavedVars:New function are as follows: ("Name of saved vars file", "version" (increment this if you need the...
File: LootDice04/26/14
I tried that in my code which now l...
Posted By: zireko
I tried that in my code which now looks like the lua below. It doesn't seem to work. I pulled out the anchor tags and it goes to the top left and can't move it. LUA function MyAddonRollDice() local num = math.random(1,100) return num end Roll:SetHandler("OnMoveStop", OnMoveStopRoll) Roll:SetAnchor(RollVars.SV.r...