Showing results 1 to 25 of 63
Search took 0.01 seconds.
Search: Posts Made By: kraftman
Forum: AddOn Help/Support 10-20-16, 02:17 PM
Replies: 4
Views: 2,883
Posted By kraftman
That's a great shout, cheers!

That's a great shout, cheers!
Forum: AddOn Search/Requests 10-19-16, 04:17 AM
Replies: 11
Views: 4,040
Posted By kraftman
You could try my old addon:...

You could try my old addon: http://www.wowinterface.com/downloads/info12613-Buffed.html

Lets you move each buff individually, resize, add timer bars, etc.
I had a quick go with it last night and...
Forum: AddOn Help/Support 10-19-16, 03:42 AM
Replies: 4
Views: 2,883
Posted By kraftman
Is there no longer a way to do it directly then?...

Is there no longer a way to do it directly then? Using buttons directly would then mean my addon is a requirement for the bindings to work, rather than an optional way to edit them
Forum: AddOn Help/Support 10-18-16, 02:01 PM
Replies: 4
Views: 2,883
Posted By kraftman
SetBindingSpell() for mounts?

I'm updating an old addon that deals with keybinds, it used to use SetBindingSpell to bind mounts to keys, but it doesn't seem to work any more.

I'm running:
SetBindingSpell('I','Albino Drake')...
Forum: AddOn Search/Requests 05-02-11, 04:49 AM
Replies: 9
Views: 4,472
Posted By kraftman
Well since you don't want to code it yourself,...

Well since you don't want to code it yourself, why not just ask the author of overachiever to consider adding the enhancements you've suggested?
Forum: AddOn Help/Support 04-29-11, 03:18 PM
Replies: 2
Views: 3,152
Posted By kraftman
Unbelievable.

Unbelievable.
Forum: Lua/XML Help 04-29-11, 03:16 PM
Replies: 5
Views: 5,573
Posted By kraftman
I've been having a lot of similar issues with...

I've been having a lot of similar issues with textures recently too. It seems you cant set the saturation of a hidden texture, and changing a texture resets the saturation. PITA
Forum: Lua/XML Help 04-07-11, 05:00 PM
Replies: 5
Views: 3,842
Posted By kraftman
pretty much if UnitName("player") == "Kraftman"...

pretty much

if UnitName("player") == "Kraftman" then
--do stuff
else
--do other stuff
end
Forum: Lua/XML Help 04-07-11, 02:56 PM
Replies: 3
Views: 3,277
Posted By kraftman
I think when you drag and drop a frame, it gets...

I think when you drag and drop a frame, it gets reparented, which could be something to do with it. I'm not entirely sure how wow implements scaling.
It might be scaling the x and y offsets of frame...
Forum: AddOn Search/Requests 04-07-11, 01:03 PM
Replies: 3
Views: 3,268
Posted By kraftman
perfect, thanks!

perfect, thanks!
Forum: AddOn Search/Requests 04-07-11, 12:28 PM
Replies: 3
Views: 3,268
Posted By kraftman
LF addon that will save profiles for which addons to load.

similar to optionhouse i guess, but with the ability to switch between sets of addons that i want to load.

So for example when I'm coding, i can have the bare minimum addons loaded, to improve ui...
Forum: General Authoring Discussion 04-07-11, 12:24 PM
Replies: 25
Views: 25,972
Posted By kraftman
If you were using the savedvariables file....

If you were using the savedvariables file. However an external program could still change the code of the addon to incorporate the new data upon reloading the UI, just like when you edit your code...
Forum: Lua/XML Help 04-07-11, 12:07 PM
Replies: 3
Views: 3,277
Posted By kraftman
Where are you changing the scale? Where are you...

Where are you changing the scale?
Where are you initially setting the frames position?
Forum: General Authoring Discussion 04-07-11, 11:53 AM
Replies: 25
Views: 25,972
Posted By kraftman
There are plenty of addons that allow you to...

There are plenty of addons that allow you to upload your data to their website. Using a program to automate the process is not a giant leap.
Forum: General Authoring Discussion 04-07-11, 11:25 AM
Replies: 25
Views: 25,972
Posted By kraftman
Why not? :/

Why not? :/
Forum: General Authoring Discussion 04-07-11, 10:58 AM
Replies: 25
Views: 25,972
Posted By kraftman
Surely it would be easier just to have each addon...

Surely it would be easier just to have each addon update its data to an external website then it would to have a huge set of slave accounts needed to log in and receive the data from each addon.
Forum: General Authoring Discussion 04-07-11, 10:07 AM
Replies: 25
Views: 25,972
Posted By kraftman
you could have the game reloadui whenever you go...

you could have the game reloadui whenever you go afk, and an external program edit the .lua files for your addon, and potentially read from the savedvars file if you wanted to communicate from inside...
Forum: AddOn Search/Requests 03-26-11, 01:23 PM
Replies: 17
Views: 7,083
Posted By kraftman
I don't see any reason why you couldnt hide the...

I don't see any reason why you couldnt hide the nameplates for every player except the target.
Forum: Lua/XML Help 03-24-11, 01:05 PM
Replies: 8
Views: 5,807
Posted By kraftman
well it was just an example. can you post your...

well it was just an example. can you post your new lua file?
Forum: Lua/XML Help 03-24-11, 06:46 AM
Replies: 8
Views: 5,807
Posted By kraftman
yup, just do a for loop changing the value of i...

yup, just do a for loop changing the value of i inside UnitAura each time, for example:


for i = 1, 16 do
local name = UnitAura("target", i)
if name == "name of buff i want to check" then
--do stuff...
Forum: Lua/XML Help 03-23-11, 08:52 PM
Replies: 8
Views: 5,807
Posted By kraftman
1. Make sure your functions are local unless they...

1. Make sure your functions are local unless they really need to be global, creating a global function called "OnUpdate" is a bad idea.

2. Check out how the function UnitAura actually works: if you...
Forum: AddOn Search/Requests 02-10-11, 12:26 PM
Replies: 4
Views: 3,633
Posted By kraftman
Because my german is terrible. :P

Because my german is terrible. :P
Forum: Lua/XML Help 02-10-11, 11:03 AM
Replies: 4
Views: 6,219
Posted By kraftman
I should have been more specific, i meant my...

I should have been more specific, i meant my other buff addon, Buffed! (http://www.wowinterface.com/downloads/info12613-Buffed.html)

I'll check out those links too, thanks :)
Forum: Lua/XML Help 02-10-11, 08:30 AM
Replies: 4
Views: 6,219
Posted By kraftman
CancelUnitBuff, SecureAuraHeader, etc

I'm trying to update my addon now that the buff system has been changed, but im having some issues.

Here are my findings:

With no changes to my addon, i can do whatever i want in and out of combat,...
Forum: AddOn Search/Requests 02-09-11, 07:28 PM
Replies: 17
Views: 23,449
Posted By kraftman
Check out my addon "keybind" - it seems to do...

Check out my addon "keybind" - it seems to do just what you want. Ill be adding different keyboard layouts in soon too. (can't link it cos I'm on my phone)
Showing results 1 to 25 of 63