2017-04-20 01:05:59 +10:00
|
|
|
fT = {}
|
|
|
|
function fres(p)
|
2017-04-23 19:05:16 +10:00
|
|
|
local F = (p:match("(%a-):") or p:match("/?(%a-)/"))
|
|
|
|
local P = (p:match("%a-:(.+)") or p:match("/?%a-/(.+)"))
|
2017-04-23 19:31:13 +10:00
|
|
|
if fT[F] ~= nil then return fT[F],P else return false end
|
2017-04-20 01:05:59 +10:00
|
|
|
end
|