Jump to content

kaxias

Members
  • Posts

    53
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Posts posted by kaxias

  1. Yes I did, many test's I pulled the Main branch and did a pull from Tasssadar with recursive merge, and then used sajia's fix, compiled with no errors, then I pulled Tasssadar's branch into a seporate repo and updated it with the main mangos branch fixed it again and compiled with no errors, then I started with kaxias's branch and cleaned it up ( Tasssadar's branch is a mess) compiled it with no problems then fired up to see all errors and all I got was DB errors from items and critters (low hp and mana) then I did the same with Naicisum's ahbot with same results but when I went to playerbot I had about 4 merge errors and 50 compiler errors so I backed out of it and SCREAMED for help from blueboy....lol and I've had the server up and running for about 2 hours now total with no problems and needing to check mounts out yet but I'm pretty shure I can't use the Ulduar or Argent tourny mounts yet because I don't yet know how to get them working.

    LoL!

    I'm silly! I have not seen that had to be changed in two places!

  2. mangos suport 3.3A

    game\\Unit.cpp

       if(GetTypeId() == TYPEID_PLAYER)
           unitPlayer = (Player*)this;
       else if(((Creature*)this)->isVehicle())
           unitPlayer = GetCharmer();
       else
           unitPlayer = NULL;
    

    @Anti

    it is possible to see this "cannot convert from 'Unit *' to 'Player *'"!

  3. Second WhiteSpece Fix

    diff --git a/src/game/Vehicle.cpp b/src/game/Vehicle.cpp
    index dbad562..a74e382 100644
    --- a/src/game/Vehicle.cpp
    +++ b/src/game/Vehicle.cpp
    @@ -98,7 +98,7 @@ void Vehicle::RegeneratePower(Powers power)
    
        float addvalue = 0.0f;
    
    -    // hack: needs more research of power type from the dbc. 
    +    // hack: needs more research of power type from the dbc.
        // It must contains some info about vehicles like Salvaged Chopper.
        if(m_vehicleInfo->m_powerType == POWER_TYPE_PYRITE)
            return;
    @@ -150,7 +150,7 @@ bool Vehicle::Create(uint32 guidlow, Map *map, uint32 phaseMask, uint32 Entry, u
        {
            ((InstanceMap*)map)->GetInstanceData()->OnCreatureCreate(this);
        }
    -    
    +
        if(m_vehicleInfo->m_powerType == POWER_TYPE_STEAM)
        {
            setPowerType(POWER_ENERGY);
    -- 
    

    always good to have everything perfect!

    Good work like this patch!

  4. Frist whiteSpece Fix

    diff --git a/sql/v10_vehicle_test_data.sql b/sql/v10_vehicle_test_data.sql
    index e3fee71..45ad1ed 100644
    --- a/sql/v10_vehicle_test_data.sql
    +++ b/sql/v10_vehicle_test_data.sql
    @@ -455,11 +455,9 @@ DELETE FROM creature_template_addon WHERE entry IN (28887,28833);
    INSERT INTO creature_template_addon (`entry`, `mount`, `bytes1`, `bytes2`, `emote`, `moveflags`, `vehicle_id`, `passengers`, `auras`) VALUES
    (28887, 0, 0, 2049, 0, 0, 68, '', '');
    INSERT INTO creature_template_addon (`entry`, `mount`, `bytes1`, `bytes2`, `emote`, `moveflags`, `vehicle_id`, `passengers`, `auras`) VALUES
    (28833, 0, 0, 2049, 0, 0, 68, '', '');
    
    -
    -
    /*Traveler's Tundra Mammoth */
    REPLACE INTO npc_spellclick_spells VALUES
    (32633, 52196, 0, 0, 0, 0);
    -REPLACE INTO creature_template_addon VALUES
    (32633, 0, 0, 0, 0, 0, 312, NULL, NULL); 
    +REPLACE INTO creature_template_addon VALUES
    (32633, 0, 0, 0, 0, 0, 312, NULL, NULL);
    REPLACE INTO vehicle_data VALUES
    (312, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
    
    /* Grand Ice Mammoth */
    @@ -468,18 +466,18 @@ REPLACE INTO creature_template_addon VALUES
    (31857, 0, 0, 0, 0, 0, 312, NULL, NU
    
    /* Salvaged Chopper */
    REPLACE INTO npc_spellclick_spells VALUES
    (33062, 52196, 0, 0, 0, 0);
    -REPLACE INTO creature_template_addon VALUES
    (33062, 0, 0, 0, 0, 0, 335, NULL, NULL); 
    -REPLACE INTO vehicle_data VALUES
    (335, 12, 62974, 62286, 62299, 64660, 0, 0, 0, 0, 0, 0, 0); 
    +REPLACE INTO creature_template_addon VALUES
    (33062, 0, 0, 0, 0, 0, 335, NULL, NULL);
    +REPLACE INTO vehicle_data VALUES
    (335, 12, 62974, 62286, 62299, 64660, 0, 0, 0, 0, 0, 0, 0);
    REPLACE INTO vehicle_seat_data VALUES
    (3005, 1);
    - 
    +
    /* Salvaged Demolisher */
    REPLACE INTO npc_spellclick_spells VALUES
    (33109, 52196, 0, 0, 0, 0);
    -REPLACE INTO creature_template_addon VALUES
    (33109, 0, 0, 0, 0, 0, 338, NULL, NULL); 
    +REPLACE INTO creature_template_addon VALUES
    (33109, 0, 0, 0, 0, 0, 338, NULL, NULL);
    REPLACE INTO vehicle_data VALUES
    (338, 12, 62306, 62490, 62308, 62324, 0, 0, 0, 0, 0, 0, 0);
    REPLACE INTO vehicle_seat_data VALUES
    (3011, 1);
    - 
    +
    /* Salvaged Siege Engine */
    -REPLACE INTO npc_spellclick_spells VALUES
    (33060, 52196, 0, 0, 0, 0); 
    -REPLACE INTO creature_template_addon VALUES
    (33060, 0, 0, 0, 0, 0, 336, NULL, NULL); 
    +REPLACE INTO npc_spellclick_spells VALUES
    (33060, 52196, 0, 0, 0, 0);
    +REPLACE INTO creature_template_addon VALUES
    (33060, 0, 0, 0, 0, 0, 336, NULL, NULL);
    REPLACE INTO vehicle_data VALUES
    (336, 12, 62345, 62522, 62346, 0, 0, 0, 0, 0, 0, 0, 0);
    REPLACE INTO vehicle_seat_data VALUES
    (3006, 1);
    \\ No newline at end of file
    -- 
    

    always good to have everything perfect!

    Good work like this patch!

  5. Question, that repo just have the mangos source + anticheat, right?

    yes mangos sourge plus anticheat! ;) :lol: ;)

    I open the program GIT!

    enter the following commands!

    mkdir mangos   //make a folder
    cd mangos       //enter the folder 
    git init              //make a repo
    git pull git://github.com/kaxias/mangos.git anticheat     //pull like the clone but that downloading the branch that you choose
    

    so will be able to download perfectly

    sorry for my bad English

  6. hmmm what am i doing wrong..

    git clone git://github.com/Naicisum/mangos.git ahbot

    cd ahbot

    git checkout origin/ahbot

    git checkout -b ahbot

    git diff master ahbot > auctionhousebot.patch

    but that auctionhousebot.patch file is 0 in size

    and its not adding the line's to the mangosd.conf.dist file

    never mind i got it..but Thank You

    look! you can do so

     
    mkdir mangos/ahbot
    cd mangos/ahbot
    git init
    git remote add origin git://github.com/Naicisum/mangos.git
    git pull origin ahbot
    git checkout origin/ahbot
    git checkout -b ahbot
    git diff master ahbot > auctionhousebot.patch
    
    git apply auctionhousebot.patch
    

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