Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- http://forums.wowace.com/showthread.php?t=19736
- -- math
- abs = math.abs
- ceil = math.ceil
- deg = math.deg
- exp = math.exp
- floor = math.floor
- frexp = math.frexp
- ldexp = math.ldexp
- log = math.log
- log10 = math.log10
- max = math.max
- min = math.min
- mod = math.fmod
- rad = math.rad
- random = math.random
- sqrt = math.sqrt
- --math.acos
- --math.asin
- --math.atan
- --math.atan2
- --math.cos
- --math.sin
- --math.tan
- --math.cosh
- --math.modf
- --math.pow
- --math.sinh
- --math.tanh
- -- string
- format = string.format
- gmatch = string.gmatch
- gsub = string.gsub
- strbyte = string.byte
- strchar = string.char
- strfind = string.find
- strjoin = string.join
- strlen = string.len
- strlower = string.lower
- strmatch = string.match
- strrep = string.rep
- strrev = string.reverse
- strsplit = string.split
- strsub = string.sub
- strtrim = string.trim
- strupper = string.upper
- --string.dump
- --string.gfind
- --string.rtgsub
- -- table
- foreach = table.foreach
- foreachi = table.foreachi
- getn = table.getn
- sort = table.sort
- tinsert = table.insert
- tremove = table.remove
- wipe = table.wipe
- --table.concat
- --table.maxn
- --table.removemulti
- --table.setn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement