Advertisement
Guest User

Untitled

a guest
Jul 6th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1.     if IsPartyLFG() and IsInLFGDungeon() and difficulty == 2 and instanceType == "raid" and maxPlayers == 25 then
  2.         return "lfr25"
  3.     elseif difficulty == 1 then
  4.         return instanceType == "raid" and "normal10" or "normal5"
  5.     elseif difficulty == 2 then
  6.         return instanceType == "raid" and "normal25" or "heroic5"
  7.     elseif difficulty == 3 then
  8.         return "heroic10"
  9.     elseif difficulty == 4 then
  10.         return "heroic25"
  11.     else
  12.         return "unknown"
  13.     end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement