Jump to content

imetallica

Members
  • Posts

    11
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Posts posted by imetallica

  1. ... well, the topic says it, it is this season, where people somehow have these warm, kind feelings, and the sheep apparently is no exception.

    I have considered to start a campaign and actually help some people, collect some funds and help a few people get food, or something along those lines.

    What do you think? Worth the effort or a waste of time?

    http://www.pennyexperiment.com/

    Take a look at what this guy is doing. I remember someone linked me that on IRC but I don't remember who. :)

    If some more people would follow his example, world could be a better place to live - without too many people having nothing to eat.

  2. Hi, I'm trying to compile on linux MaNGOS and I got this error

     CXX    AuthSocket.o
     CXX    BufferedSocket.o
     CXX    Main.o
     CXX    PatchHandler.o
     CXX    RealmList.o
     CXXLD  mangos-realmd
    libtool: link: cannot find the library `' or unhandled argument `de'
    make[3]: ** [mangos-realmd] Erro 1
    make[3]: Saindo do diretório `/home/imetallica/Área de Trabalho/mangos/dev/mangos/objdir/src/realmd'
    make[2]: ** [all-recursive] Erro 1
    make[2]: Saindo do diretório `/home/imetallica/Área de Trabalho/mangos/dev/mangos/objdir/src'
    make[1]: ** [all-recursive] Erro 1
    make[1]: Saindo do diretório `/home/imetallica/Área de Trabalho/mangos/dev/mangos/objdir'
    make: ** [all] Erro 2
    
    

    any advice how to solve it? Solved.

  3. Brazilian Portuguese (Português brasileiro):

    1 - Início

    2 - Sobre

    3 - Fale Conosco

    4 - Minha Conta

    5 - Ajuda

    6 - Entrar

    7 - Sair

    8 - Registre-se

    9 - Bem vindo

    10 - Adeus

    11 - Obrigado

    12 - Você entrou

    13 - Você saiu

    14 - Dados inválidos

    15 - A sua conta foi atualizada

    16 - A sua conta foi banida/suspensa

    17 - Houve um erro ao processar seu pedido

    And reusing the list from Endon:

    Realm = Realm

    Happy Birthday = Feliz Aniversário

    Password = Senha

    Login name = Nome de Usuário

    E-mail adress = Endereço de e-mail

    Computer = Computador

    System = Sistema

    Unauthorized = Não autorizado

    Nickname = Apelido

    PS: There are some differences between, Brazilian Portuguese and Portugal Portuguese. Mostly are about the words. :P

  4. if( (co&ORDERS_PRIMARY) )
    m_combatOrder = (CombatOrderType)(((uint32)m_combatOrder&(uint32)O RDERS_SECONDARY)|(uint32)co);
    else
    m_combatOrder = (CombatOrderType)(((uint32)m_combatOrder&(uint32)O RDERS_PRIMARY)|(uint32)co);} 
    

    Yes I was wondering what that last part means but now it's explained. But I'm not sure if that works as you said. Anyway I'll test it without this part of my code and let's see what happens... Hope it doesn't EXPLODE! ;D

    Thanks for the advice.

    Regards.

  5. @@ -1855,15 +1855,15 @@ Unit *PlayerbotAI::FindAttacker( ATTACKERINFOTYPE ait, Unit *victim )
        return a;
    }
    
    void PlayerbotAI::SetCombatOrderByStr( std::string str, Unit *target ) {
        CombatOrderType co;
    -    if( str == "tank" ) co = ORDERS_TANK;
    -    else if( str == "assist" ) co = ORDERS_ASSIST;
    -    else if( str == "heal" ) co = ORDERS_HEAL;
    +    if( str == "tank" )         co = ORDERS_TANK;
    +    else if( str == "assist" )  co = ORDERS_ASSIST;
    +    else if( str == "heal" )    co = ORDERS_HEAL;
        else if( str == "protect" ) co = ORDERS_PROTECT;
    -    else co = ORDERS_RESET;
    +    else                        co = ORDERS_RESET;
        SetCombatOrder( co, target );
    }
    
    void PlayerbotAI::SetCombatOrder( CombatOrderType co, Unit *target ) {
        if( (co == ORDERS_ASSIST || co == ORDERS_PROTECT) && !target )
    @@ -1872,10 +1872,14 @@ void PlayerbotAI::SetCombatOrder( CombatOrderType co, Unit *target ) {
            m_combatOrder = ORDERS_NONE;
            m_targetAssist = 0;
            m_targetProtect = 0;
            return;
        }
    +    if( co == ORDERS_TANK )
    +        m_combatOrder = ORDERS_TANK;
    +    if( co == ORDERS_HEAL )
    +        m_combatOrder = ORDERS_HEAL;
        if( co == ORDERS_PROTECT )
            m_targetProtect = target;
        else if( co == ORDERS_ASSIST )
            m_targetAssist = target;
        if( (co&ORDERS_PRIMARY) )
    

    This should do the trip to allow bots to role as tankers and healers. The rest is about to script 'em.

  6. Ey blueboy, I've been working abit with this bot and I really liked the idea. I've got some ideas to improve it and I'm really up to help developing it. But first I need time ))

    I've done some modifications and as soon as I can I'll show you 'em.

    Regards

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