[Ascent] Not able to enter Naxx

Results 1 to 3 of 3
  1. #1
    Newbie Silencer is offline
    MemberRank
    Oct 2007 Join Date
    6Posts

    [Ascent] Not able to enter Naxx

    Hello all, I run a private server for myself and a few friends.. We decided we wanted to hit up Naxx for a bit of fun, upon arriving in EPL None of us could get the attunement from the npc's inside the chapel nor could we enter Naxx thru the ziggaraut teleporter.. I tried .gotrig 4055 and I tried .recall port Naxx they take me to a loading screen and the toon becomes unplayable unless I can glitch it out and have one of my friends .summon me back to where they are.. Any ideas of why this may be happening?

    Side note - All of my other major raid instances are working fine, we smoked TK, BWL, AQ40, and BT just for the hell of it since we couldn't get into naxx.
    Last edited by Silencer; 04-10-07 at 03:19 AM. Reason: typos :\


  2. #2
    Sorcerer Supreme KingXCrosses is offline
    Member +Rank
    May 2007 Join Date
    Silvermoon, Quel'thalasLocation
    426Posts

    Re: [Ascent] Not able to enter Naxx

    ummm i think its just the map thing missing
    when you try to join it should say somethign about a missing map instance
    type .createinstance [map numberh here]
    then .goinstance [Instance number given] x y z (aka position in the instance i just put 100 100 100 and then i recall to the begining)
    then you are able to do w/e
    well you ahve to do the stuff every time you're server restarts, idk why but thats just how it is

  3. #3
    Elite Member gmaze is offline
    Member +Rank
    May 2007 Join Date
    IndianaLocation
    238Posts

    Re: [Ascent] Not able to enter Naxx

    Here is a script I found. Create a new folder in your ascent root folder named scripts (NOT script_bin). Put the following inside and start your server.

    More scripts here> Ascent scripts project SVN note:must use a subversion client to download.

    Code:
    ////////////////////////////////////////////
    //            Next-Chapter Project
    //                  NCDB.Info
    //            Made by: Darkened Fate
    ////////////////////////////////////////////
    
    global Naxxramas_Attunement_Check = function(plr)
    {
    	// check for a quest
    	if(plr.HasFinishedQuest(7487) == 1)
    	{
    		if(plr.GetStandingRank(529) >= 5)// HONORED
    		{
    			plr.JoinInstance(533, 3006.06, -3436.72, 293.891, 64.8757); 
    			return 1;
    		}
    	}
    	//plr.SendAreaTriggerMessage("You need to be level 58, Honored or higher with the Argent Dawn, and have completed the quest : The Dread Citadel - Naxxramas");
    	//plr.BroadcastMessage(1,"You need to be level 58, Honored or higher with the Argent Dawn, and have completed the quest : The Dread Citadel - Naxxramas");
    	return 0;
    };
    
    // register in script system
    this.RegisterAreaTriggerEvent(4055, Naxxramas_Attunement_Check);



Advertisement