View Single Post
08-04-17, 01:40 AM   #6
Banknorris
A Chromatic Dragonspawn
 
Banknorris's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 153
Code:
local tableC = {}
for k,v in pairs(tableB)
	if tableA[v] then
		tableC[k] = v
	end
end
table.sort(tableC)
__________________
"In this world nothing can be said to be certain, except that fractional reserve banking is a Ponzi scheme and that you won't believe it." - Mandrill

Last edited by Banknorris : 08-04-17 at 01:42 AM.
  Reply With Quote