Jump to content

vdesai

Members
  • Posts

    21
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Posts posted by vdesai

    • * What bug does the patch fix? What features does the patch add?
      This just fixes the guildlog with apocs earlier fix in rev [6964]
      * For which repository revision was the patch created?
      Latest
      * Is there a thread in the bug report section or at lighthouse? If yes, please add a link to the thread.
      None
      * Who has been writing this patch? Please include either forum user names or email addresses.
      Just me its just a simple one liner

        if((slot->RankId+1) >= guild->GetNrRanks() || slot->RankId <= GetPlayer()->GetRank())
           return;
    
       guild->ChangeRank(plGuid, (slot->RankId+1));
    
       // Put record into guildlog
    -    guild->LogGuildEvent(GUILD_EVENT_LOG_DEMOTE_PLAYER, GetPlayer()->GetGUIDLow(), GUID_LOPART(plGuid), (slot->RankId+1));
    +   guild->LogGuildEvent(GUILD_EVENT_LOG_DEMOTE_PLAYER, GetPlayer()->GetGUIDLow(), GUID_LOPART(plGuid), (slot->RankId));
    
       WorldPacket data(SMSG_GUILD_EVENT, (2+30));             // guess size
       data << (uint8)GE_DEMOTION;
       data << (uint8)3;
    
    

    Sorry, did not know how to make a patch with git but its easy to find in mangos/src/game/GuildHandler.cpp

    Line: 376

  1. No, even if you do it on windows it will be the same process as on linux. You should compile the core on the system you are going to run it on. Its not really difficult on either system but you just have to get over the hurdle once you should try and make a script so it does it automatically for you everytime.

  2. the thing is that the configurations are corrent:

    HeroicCharactersPerRealm = 1
    MinLevelForHeroicCharacterCreating = 55
    SkipCinematics = 0
    MaxPlayerLevel = 80
    StartPlayerLevel = 1
    StartHeroicPlayerLevel = 55

    But still it does not work as it should.

    MinLevelForHeroicCharacterCreating = 55

    That needs to be set to something else

    MinLevelForHeroicCharacterCreating = 1

    That means there must be atleast one character on the account

    MinLevelForHeroicCharacterCreating = 0

    That means there is no such requirement.

  3. Hello I set the compiler to compile for SSE2 Instruction set instead of 1 will this have any effect on performance or stability and I was wondering why not SSE2 for all of them.

    Sorry Forgot to give details:

    VS2008P

    Win (2003 & XP though I test compiles on Vista :P)

    Thats About it. Thank you in advanced ^_^

  4. I like the vid tutorials hopefully I can learn C++ I don't know C or java so I guess it will be difficult for me I do know VB (.NET and VB 6). It would be cool if anyone knows of any other tutorials, logic is easy ive never done anything with WoW though.

    EDIT: Also if there is some type of documentation for Mangos.

  5. I just created a batch file turned it into a exe and packaged it using WinRAR and I also borrowed your icon if you don't mind. I also included the batch file so someone can make improvements it includes MSYSGIT which is why it is so large. This is perfect to put it on a USB drive. Currently it only checkouts the source and updates it. I could not figure out what was required and what wasnt so I just kept all the MSYSGIT files besides the docs if you can figure them out it would surely reduce the size of it by allot. Its not quite a GUI but it works for the people not willing to use command line.

    EDIT: My AV gave off a warning better not try this ill fix it and put the new link up

    EDIT2:

    Fixed it it was the batch compiler so now ill just use the batch file

    http://filebeam.com/567b6f785847e27a7499ed645c36d075

  6. This would be pretty easy to do with just a batch file but I don't know if there is a git stub to just execute to get command. MySQL could be done the old NCDB way, C++ just the way you described, and finally extraction just need to provide AD. Batch files are awsome they are equivalent to scripts and the only diffrence is that you would need to include the executable to get the source. I like the idea though with all the complaints, I guess we can help people get started then they can learn by messing with the batch file.

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