Jump to content
  • 0

HIT DO MELEE


xmaster0

Question

Opa, podem me dizer a parte da source que eu possa mudar a cor do melee?

--é o ataque fisico, o melee

--  porque no meu ot as cores do melee variam de acordo com a especia do poke

-- queria deixar tudo so vermelho

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Possui as sources do servidor ?

Enfim, se tiver é só você ir em game.cpp e achar a parte que tá assim

				switch(combatType)
				{
					case COMBAT_PHYSICALDAMAGE:
					{
						Item* splash = NULL;
						switch(target->getRace())
						{
 						aqui dentro vai ter varios switch
					}

Você vai mudar a parte do 

case COMBAT_PHYSICALDAMAGE:

Para essa aqui:

case COMBAT_PHYSICALDAMAGE:
					{
						Item* splash = NULL;
						switch(target->getRace())
						{
							default:
								textColor = TEXTCOLOR_RED;
								magicEffect = MAGIC_EFFECT_HIT_AREA;
								break;
						}

						if(splash)
						{
							internalAddItem(NULL, target->getTile(), splash, INDEX_WHEREEVER, FLAG_NOLIMIT);
							startDecay(splash);
						}
						break;
					}

 

Link to comment
Share on other sites

  • 0

@edit

 

Citar

switch(combatType)
                {
                    case COMBAT_PHYSICALDAMAGE:
                    {
                        Item* splash = NULL;
                        switch(target->getRace())
                        {
                            default:
                            textColor = TEXTCOLOR_RED;
                            magicEffect = MAGIC_EFFECT_HIT_AREA;
                            break;

                            if(splash)
                        {
                            internalAddItem(NULL, target->getTile(), splash, INDEX_WHEREEVER, FLAG_NOLIMIT);
                            startDecay(splash);
                        }
                        break;
 

deixei assim; SEM ERRO na compilação, mas nao pegou no servidor, continua cada hit do melee ficando da cor da raça do poke.

 

 

 

 

 

 

 

Edited by xmaster0
Link to comment
Share on other sites

×
×
  • Create New...