Jump to content

imetallica

Members
  • Posts

    11
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by imetallica

  1. 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. imetallica

    Sports

    I love chess... it's not a physical sport, but it's a mind sport (:
  3. Only in 2013? D: But the world at 2013 already ended!
  4. yah it's solved, thanks (: gotta love non-english versions of OS
  5. 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.
  6. imetallica

    Mangos Coding

    adriann54: cplusplus is a good website too... it has good tutorials and explains alot of stuff easy.
  7. Hi guys, sorry for being away for too long. I had alot of familiar issues there months... Well I hope I can shortly get back to work with playerbot... I'm really sorry for that. Regards.
  8. 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.
  9. 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.
  10. @@ -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.
  11. 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