[X3 Release] Keazain`s Latest Compiles and Converted NCDB & Logon DB ready for use! menu

User Tag List

Page 80 of 190 FirstFirst ... 30767778798081828384130180 ... LastLast
Results 1,186 to 1,200 of 2850
  1. #1186
    keazain's Avatar Banned
    Reputation
    234
    Join Date
    Jun 2008
    Posts
    660
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nope, you cant login until dev. Team is updating cores

    new patch is out from wow "3.0.8 9464" and you cant login to priv servers before login updates!!!!!!!.
    I will keep my eye on updates and release as soon as dev. Team is making new patch updates for cores....!!!!!!!.

    [X3 Release] Keazain`s Latest Compiles and Converted NCDB & Logon DB ready for use!
  2. #1187
    johnstone's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    121
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hum ok i get a dead link win tring 2 down load the new fun pack is it out for downloading?
    ARCEMY REPACK: Last core update 21.01.2009 Rev.2020 RELEASE 22.01.09 - Download Keazain`s Repack ( Revision X12 ) 100% Fun-Repack, Full Spawns! i cant download it ?

    nop saying this win page opens ---> The webpage cannot be found at -->http://www.keazain.com/files/xpack12.rar
    Last edited by johnstone; 01-21-2009 at 02:09 AM. Reason: rep

  3. #1188
    keazain's Avatar Banned
    Reputation
    234
    Join Date
    Jun 2008
    Posts
    660
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i HATE wow`s f... updates LOOL

  4. #1189
    keazain's Avatar Banned
    Reputation
    234
    Join Date
    Jun 2008
    Posts
    660
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ARCEMY REPACK: Last core update 21.01.2009 Rev.2020 RELEASE 22.01.09 - Download Keazain`s Repack ( Revision X12 ) 100% Fun-Repack, Full Spawns! i cant download it ?
    lool

  5. #1190
    dem3entor's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok now we must w8 a repack for 3.0.8(9464) how i can update olde 3.0.3 to 3.0.8 with no delete 3.0.3 db? :d

  6. #1191
    johnstone's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    121
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ges i wont get the new ARCEMY REPACK: Last core update 21.01.2009 Rev.2020 RELEASE 22.01.09 - Download Keazain`s Repack ( Revision X12 ) 100% Fun-Repack, Full Spawns! its a dead link for me

  7. #1192
    W@WAdict's Avatar Member
    Reputation
    9
    Join Date
    Jul 2008
    Posts
    72
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Keazain,

    You might try using this routine from Ascent, it has the addoncount and the unknown uint32 for 3.0.8, apparently the addon info compressed packet changed, hopefully this will solve the login issues.

    Code:
    void AddonMgr::SendAddonInfoPacket(WorldPacket *source, uint32 pos, WorldSession *m_session)
    {
    	WorldPacket returnpacket;
    	returnpacket.Initialize(SMSG_ADDON_INFO);	// SMSG_ADDON_INFO
    
    	uint32 realsize;
    	uLongf rsize;
    	try
    	{
    		*source >> realsize;
    	}
    	catch (ByteBuffer::error &)
    	{
    		sLog.outDebug("Warning: Incomplete auth session sent.");
    		return;
    	}	
    	rsize = realsize;
    	size_t position = source->rpos();
    
    	ByteBuffer unpacked;
    	unpacked.resize(realsize);
    
    	if((source->size() - position) < 4 || realsize == 0)
    	{
    		// we shouldnt get here.. but just in case this will stop any crash here.
    		sLog.outDebug("Warning: Incomplete auth session sent.");
    		return;
    	}
    	int32 result;
    	result = uncompress((uint8*)unpacked.contents(), &rsize, (uint8*)(*source).contents() + position, (uLong)((*source).size() - position));
    
    	if(result != Z_OK)
    	{
    		sLog.outError("Decompression of addon section of CMSG_AUTH_SESSION failed.");
    		return;
    	}
    
    	sLog.outDetail("Decompression of addon section of CMSG_AUTH_SESSION succeeded.");
    	
    	uint32 addoncount;
    	unpacked >> addoncount;
    
    	uint8 Enable; // based on the parsed files from retool
    	uint32 crc;
    	uint32 unknown;
    	
    	std::string name;
    	for (uint32 i=0; i<addoncount; ++i)
    	{
    		unpacked >> name;
    		unpacked >> Enable;
    		unpacked >> crc;
    		unpacked >> unknown;
    		
    		// Hacky fix, Yea I know its a hacky fix I will make a proper handler one's I got the crc crap
    		if (crc != 0x4C1C776D) // CRC of public key version 2.0.1
    			returnpacket.append(PublicKey,264); // part of the hacky fix
    		else
    			returnpacket << uint8(0x02) << uint8(0x01) << uint8(0x00) << uint32(0) << uint8(0);
    		/*if(!AppendPublicKey(returnpacket, name, crc))
    			returnpacket << uint8(1) << uint8(0) << uint8(0);*/
    
    	}
    	
    	uint32 unk308;
    
    	unpacked >> unk308;
    	m_session->SendPacket(&returnpacket);
    }
    The above is code from the AddonMgr.cpp module.

    This is not my code it is from Ascent, so if it works, all credit is theirs.

  8. #1193
    iverdiver's Avatar Member
    Reputation
    2
    Join Date
    Dec 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do i get the talents to work properly? ie Shadowdance for rogues, armored to the teeth and bloodsurge for Warriors doesn't work.. is there anyway I can fix this?

  9. #1194
    Bill Skippy's Avatar Member
    Reputation
    1
    Join Date
    Jul 2008
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello i got an another Repack (Ac-web) and wen i strt it after a few minutes it say that c:Keazein/svn/trunk.. etc why? i can start the server i dont had download ur repack lol

  10. #1195
    keazain's Avatar Banned
    Reputation
    234
    Join Date
    Jun 2008
    Posts
    660
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im testing script now

  11. #1196
    keazain's Avatar Banned
    Reputation
    234
    Join Date
    Jun 2008
    Posts
    660
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i surpose that we get arcemu servers up to run with this new 3.0.8 patch today at some time

  12. #1197
    Techjunkie's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you can play on private server just launch from wow.exe
    although i am still running 3.0.3
    Last edited by Techjunkie; 01-21-2009 at 10:25 AM.

  13. #1198
    heytoj's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    keazain, thanks for your devotion and hard work. you're really awesome!
    btw, the link to your x-6 repack is broken. plz fix it.

  14. #1199
    keazain's Avatar Banned
    Reputation
    234
    Join Date
    Jun 2008
    Posts
    660
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the script cause arcemu crash when entering or try buy from vendor...

  15. #1200
    keazain's Avatar Banned
    Reputation
    234
    Join Date
    Jun 2008
    Posts
    660
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    heytoj, you can take it from OLD COMPILLINGS LINK, repack is under new development to x12 and it says that it should be out 22.01.09 but some delay cause new 3.0.8 patch from wow

Similar Threads

  1. Replies: 0
    Last Post: 07-28-2016, 09:15 PM
  2. [Selling] Undying and Hand of A'dal Account - Ready for Mythic
    By MistiServices in forum WoW-EU Account Buy Sell Trade
    Replies: 0
    Last Post: 05-14-2015, 01:51 PM
All times are GMT -5. The time now is 04:25 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search