Jump to content

marcelomax

Members
  • Posts

    31
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Posts posted by marcelomax

  1. 9571 made the patch incompatible... i don't know how you managed to compile it :)

    i managed to fix it, but i'm not using a clean MaNGOS and fixed it by hand so i can't make you guys a patch file...you can still check what i did though http://github.com/Darkrulerz/Hellscreamcore/commit/52856bc5a676eca8e127b18d4a74720c9b177fb2#diff-2

    Well... it gave me a lot of work. I just copy/paste from .rej files to .cpp files where every line rejected would must be placed.

    I ever did this until someone place updated patches ... ever work! Works in AH, vehicle, Dual Spec and others... :)

    Now... my real life "patience" skill level up!!

  2. and it's time for the new patch

    Take the updated vehicle patch for MaNGOS rev.9562 (source code)

    download link: http://filebeam.com/d3e364596ff25c7e8901f9a56eaa0e8c

    Edit:

    already has a double seat for 'Mammoth' and 'Salvaged Chopper'

    now they will be able to ride by two players (driver and passenger).

    important: (only need to re-import the file: v02_vehicle_data.sql again).

    breaking news:

    vehicle patch for MaNGOS rev.9565

    http://filebeam.com/008edefb8d972ffe9cc29535f15464e4

    This "Mammoth" is that Traveller's Tundra Mammoth buyed in Dalaran giving the mounts?

    Have any magic to do it get work?

    See...

    I've compiled a clean mangos rev 9570 and 9571 with your vehicle patch posted yesterday. I have success on compilation but the mounts like in Argent Tournament don't work and personal mount Traveler's Tundra Mammmoth not working too.

    My steps:

    - rev 9570 compiled using your 9565 vehicle patch

    - installed clean UDB and updated to last rev for UDB and Core

    - updated all DB to last sql from 9570

    - then ... the v01_vehicle_tables and v02_vehicle_data on mangos database.

    i've tryed using SD2 last updates too...

    any hint?? :D

    Sorry for my english.

  3. @@ -591,16 +591,14 @@ void WorldSession::HandleRequestVehicleSwitchSeat(WorldPacket &recv_data)
        if(!vehicleGUID)                                        // something wrong here...
            return;
    
        if(Vehicle *vehicle = ObjectAccessor::GetVehicle(vehicleGUID))
        {
    -        CHECK_PACKET_SIZE(recv_data, recv_data.rpos()+1);
            uint64 guid = 0;
            if(!recv_data.readPackGUID(guid))
                return;
    
    -        CHECK_PACKET_SIZE(recv_data, recv_data.rpos()+1);
            int8 seatId = 0;
            recv_data >> seatId;
    
            if(guid)
            {
    @@ -642,16 +640,14 @@ void WorldSession::HandleChangeSeatsOnControlledVehicle(WorldPacket &recv_data)
        {
            MovementInfo mi;
            ReadMovementInfo(recv_data, &mi);
            //_player->m_movementInfo = mi;
    
    -        CHECK_PACKET_SIZE(recv_data, recv_data.rpos()+1);
            uint64 guid = 0;
            if(!recv_data.readPackGUID(guid))
                return;
    
    -        CHECK_PACKET_SIZE(recv_data, recv_data.rpos()+1);
            int8 seatId = 0;
            recv_data >> seatId;
    
            if(guid)
            {
    

    Just removing? woohoo... Thanks

    I'll compile tonight again! :)

×
×
  • 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