View Single Post
09-24-21, 02:56 AM   #2
rulezyx
A Flamescale Wyrmkin
 
rulezyx's Avatar
Join Date: Jan 2020
Posts: 106
Seems a bit hardcore to me. Your addon avoids all talking-heads.

So people can't use this function combined with your addon.

No Immersion at all.

I didn't tried anything like that before but it is possible to "fake" max-level and maybe something like this will stop popups.

Lua Code:
  1. function GetEffectivePlayerMaxLevel()
  2.   return MAX_PLAYER_LEVEL_TABLE[GetExpansionLevel()];
  3. end
  4.  
  5. function IsLevelAtEffectiveMaxLevel(level)
  6.   return level >= GetEffectivePlayerMaxLevel();
  7. end
  8.  
  9. function IsPlayerAtEffectiveMaxLevel()
  10.   return IsLevelAtEffectiveMaxLevel(UnitLevel("player"));
  11. end

I guess your idea with blocking "forced" shadowlands content is not bad for alts but the current solution seems not user-friendly.
  Reply With Quote