View Single Post
04-02-24, 02:52 PM   #3
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,334
Xrystal already answered, but I do have a note for the posted code.

Originally Posted by Hubb777 View Post
Lua Code:
  1. local function IsQuestInList(questID)
  2.     for _, id in ipairs(QuestIDs) do
  3.         if questID == id then
  4.             return true
  5.         end
  6.     end
  7.     return false
  8. end
This function already exists as tContains().
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)

Last edited by SDPhantom : 04-02-24 at 03:00 PM.
  Reply With Quote