PDA

View Full Version : [RAF] Any way to know how many 'grantable' levels remain?



Zub
09-30-2008, 09:49 PM
Hi all,

regarding the whole RAF level granting, I've lost track on my multiple toons, after moving transfering them etc.
Any way to know how many levels a toon still has to grant?

Maybe a macro or function or something?

I'm levelling a paly, and from my calculations i should be able to take it to level 60.9 if I first get it to 31.9 and then grant levels.. but i fear i might have miscalculated lol as i've tested granting here and there, and transferred a toon around 45, then leveled it to 60, and leveled a few others here and there.

I guess i'm safer to level my paly to 33.9 and start granting levels from there ;-) but was just curious if there was a way to know for sure.

Cheers,
-Zub

Tasty
10-01-2008, 12:29 AM
As far as I can see theres no function to tell you how many are left, there is a way to see if you have Any left though. Dunno if thats any good to you.

local status = CanGrantLevel("target")
if status then
ChatFrame1:AddMessage("I can grant levels to my friend!")
else
ChatFrame1:AddMessage("I am out of free levels for now.")
end

Zub
10-01-2008, 12:41 AM
As far as I can see theres no function to tell you how many are left, there is a way to see if you have Any left though. Dunno if thats any good to you.

local status = CanGrantLevel("target")
if status then
ChatFrame1:AddMessage("I can grant levels to my friend!")
else
ChatFrame1:AddMessage("I am out of free levels for now.")
end
sweet, thanks. that's pretty good for starters ;-)
I'll check if i can find any related stuff.

Cheers,
-Zub