of     1   

jbn011
#180853680Friday, January 01, 2016 9:32 PM GMT

Is there a way to determine if something is numeric or not?
cntkillme
#180853860Friday, January 01, 2016 9:34 PM GMT

if tonumber(blah) then -- is a number end
MrJoeyJoeJoey
#180854127Friday, January 01, 2016 9:38 PM GMT

or this if your not working with strings if type(val) == "number" then end
bosswalrus
#180854213Friday, January 01, 2016 9:38 PM GMT

function isNumeric() end Then I guess just put that in a function if you want a function for it.
bosswalrus
#180854247Friday, January 01, 2016 9:39 PM GMT

function isNumeric(x) end
MrJoeyJoeJoey
#180854279Friday, January 01, 2016 9:39 PM GMT

local function isNumberic(n) return type(n) == "number" end
UnstableScript0
#180856201Friday, January 01, 2016 10:03 PM GMT

Pfft, your all inefficient. function IS_NUMBER_NUMERIC(N) if N==nil and not N then error'NUMBER IS NIL' else print'NUMBER IS NOT NIL' end local RET if type(N)=="number" or tonumber(N)then RET = true else RET = false end return RET end When I looked up "Ninjas" in Thesaurus.com, it said "Ninja's can't be found" Well played Ninjas, well played.

    of     1