Originally Posted by
Selfrot
I count 142 quests, level 20 in leveling, on both Horde and Alliance sides. Every script is working perfectly as well as those I added and edited (No I did not change the looks of your scripts, only a few numbers here and there) -- However...; is there by any chance a way of adding TBC and WOTLK to the accounts? Setting flags does nothing.
I'm trying to add things to it, so that I can enjoy it even more, but it's kinda' hard when I can't access; Outland (except Shattrath), Northrend and Ghostlands.
All Outland/NR instances are working fine, except ICC and Valgarde, however, the actual zones doesn't work.
Great repack, love it! +rep
-Selfrot
Make sure your not in game, change the account flags from 0 to 8/24 for TBC/WOTLK and TBC. Type "reload" into the logonserver, hit enter, then login.
As for outlands, in zzzNetherstormEffects.lua in scripts/other - world events you will see:
Code:
function zzz_OnEnterWorld(event, plr)
if plr:GetMapId() == 530 then -- Needs to be changed to netherstorm/area52 id since it's effecting the instance.
SetDBCSpellVar(42786, "c_is_flags", 0x01000)
plr:CastSpell(42786)
else
if plr:HasAura(42786) == true then
plr:RemoveAura(42786)
end
end
end
RegisterServerHook(4, "zzz_OnEnterWorld")
You can comment this out to get outlands to work, however it will break the Alliance quest where you go to Area 52.