View Single Post
09-09-05, 03:01 AM   #9
farang
A Deviate Faerie Dragon
 
farang's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2005
Posts: 19
there is an easy way to solve your problem.

Just take one of the new Commands, and see if it it's existing...

Code:
if (SomeBlizzCommand) then
	DEFAULT_CHAT_FRAME:AddMessage ("Command exists, therefore we can use it!")
else
         DEFAULT_CHAT_FRAME:AddMessage ("Command dosn't exists, damn!")
end
Of course you need to replace "SomeBlizzCommand" with a real new 1.7 command/function
  Reply With Quote