Advertisement
orblazer

Untitled

Feb 20th, 2025 (edited)
363
0
363 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. local order = config.order.profiles[config.order.selectedProfile]
  2.  
  3. local body = "i = 0;order = newtable()"
  4. if order ~= nil then
  5.   for i = 1, 8 do
  6.     if order["mark"..i] ~= 1 then
  7.       body = body .. format("tinsert(order, %s)", order["mark"..i] - 1)
  8.     end
  9.   end
  10.   print("|cFF00FF00WorldMarkerCycler - The profile #" .. config.order.selectedProfile .. " (" .. order.name .. ") has been selected !|r")
  11. else
  12.   print("|cFFFF0000WorldMarkerCycler - The profile #" .. config.order.selectedProfile .. " doesn't exist !|r")
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement