Changeset 2022

Show
Ignore:
Timestamp:
01/20/2009 08:39:31 PM (20 months ago)
Author:
Hasbro
Message:

HAPPY BIRTHDAY ANDY
Applied 3.0.8 from Andy
Updated configs to new build, have fun.

Location:
trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • trunk/configs/Without-definitions/arcemu-logonserver.conf

    r1883 r2022  
    2727 
    2828<Client MinBuild = "9183" 
    29         MaxBuild = "9183"> 
     29        MaxBuild = "9464"> 
    3030 
    3131<LogonServer RemotePassword = "change_me_logon" 
  • trunk/configs/Without-definitions/arcemu-world.conf

    r1883 r2022  
    5757       Power2="1" 
    5858       Power3="1" 
     59       Power4="1" 
    5960       QuestReputation="1" 
    6061       KillReputation="1" 
  • trunk/configs/arcemu-logonserver.conf

    r1876 r2022  
    7474 
    7575<Client MinBuild = "9183" 
    76         MaxBuild = "9183"> 
     76        MaxBuild = "9464"> 
    7777 
    7878# WorldServer Setup 
  • trunk/configs/arcemu-world.conf

    r2017 r2022  
    303303       Power2="1" 
    304304       Power3="1" 
    305                 Power4="1" 
     305      Power4="1" 
    306306       QuestReputation="1" 
    307307       KillReputation="1" 
  • trunk/src/arcemu-world/AddonMgr.cpp

    r2000 r2022  
    144144        sLog.outDetail("Decompression of addon section of CMSG_AUTH_SESSION succeeded."); 
    145145         
     146        unpacked >> addoncount; // 3.0.8 
    146147         
    147148        uint8 Enable; // based on the parsed files from retool 
     
    150151         
    151152        std::string name; 
     153        for (uint32 i=0; i<addoncount; ++i) // 3.0.8 
    152154        size_t p = unpacked.rpos(); 
    153155        while(p != unpacked.size())     // make sure theres always room, otherwise *BAM* crash. 
     
    168170                p = unpacked.rpos(); 
    169171        } 
     172        uint32 unk308; // 3.0.8 
     173        unpacked >> unk308; // 3.0.8 
    170174        m_session->SendPacket(&returnpacket); 
    171175}