View Single Post
03-23-10, 10:52 AM   #3
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
There is no built in way for this, but you can make them yourself like this:

Code:
local function multeq(check, ...)
    for i=1, select(#, ...) do
        if check==select(i, ...) then return true end
    end
    return false
end
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.

Last edited by nightcracker : 03-23-10 at 03:22 PM.
  Reply With Quote