Jump to content

Recommended Posts

Posted

Is it possible to load the Alterac-Valley Map (id: 30) or any other BG map as an usual world map, so that testers could teleport there and be saved there?

i've been looking into that problem for ages, but just could load it as an BG.. which does not allow me to save players on it.

thanks for your answers and help,

mrlocus

Posted

yep thats how i managed it, thanks :)

thats what i changed:

bool Instanceable() const

{

// ADD AV TO CONTINENT MAP

if( MapID == 30 )

{

return false;

}

return map_type == MAP_INSTANCE || map_type == MAP_RAID || map_type == MAP_BATTLEGROUND || map_type == MAP_ARENA;

}

bool IsBattleGround() const

{

// ADD AV TO CONTINENT MAP

if( MapID == 30 )

{

return false;

}

return map_type == MAP_BATTLEGROUND;

}

bool IsBattleGroundOrArena() const

{

// ADD AV TO CONTINENT MAP

if( MapID == 30 )

{

return false;

}

return map_type == MAP_BATTLEGROUND || map_type == MAP_ARENA;

}

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use