WoW:API TOSAccepted: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 7: Line 7:
     --user has not accepted Terms of Service
     --user has not accepted Terms of Service
  end
  end
[[Category:World of Warcraft API]]

Revision as of 22:53, 19 January 2006

Sample

local acceptedTOS = TOSAccepted();
if(acceptedTOS) then
   --user accepted the Terms of Service
else
   --user has not accepted Terms of Service
end