Guest User

Untitled

a guest
Apr 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. function mmp.roomVnums(areaName, exact)
  2.     local nums, msg, multiples = mmp.findAreaID(areaName, exact)
  3.     if nums then
  4.         local roomList, endResult = getAreaRooms(nums), {}
  5.         for _, nums in pairs(roomList) do
  6.             endResult[nums] = getRoomName(nums)
  7.         end
  8.         table.sort(roomList)
  9.         display(roomList)
  10.     end
  11. end
Add Comment
Please, Sign In to add comment