Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Ai galera venho aki emplorar kk

preciso muito saber se é possivel e se possivel me ajudar postando o script!

agradeço desde ja!

VALENDO REP+++

barlukinhas017my6lj7.gif

Habilidades :

Scripter = Bom

Mapper = Ótimo

Spriter = Bom

Programer = Ruim

Projetos\Topicos :

-

Att. JokerMind Renan =)

Link para o post
Compartilhar em outros sites

no titulo ja disse tudo , ele quer um script para um vocation poder usar 2 espada , espada no lugar da espada , e uma espada no lugar do shield.

Exatamente!!

barlukinhas017my6lj7.gif

Habilidades :

Scripter = Bom

Mapper = Ótimo

Spriter = Bom

Programer = Ruim

Projetos\Topicos :

-

Att. JokerMind Renan =)

Link para o post
Compartilhar em outros sites

isso é nas sources q mexe sim, caso queira tentar

Vá em player.ccp e procure por:


ret = RET_CANONLYUSEONEWEAPON;

Você ira encontrar dois "ret = RET_CANONLYUSEONEWEAPON;", substitua por:

ret = RET_NOERROR;

Após, localize weapons.h e procure por:

const Weapon* getWeapon(const Item* item) const;

Embaixo você coloca:

static int32_t getAttackLeft;

		    static int32_t getAttackRigth;

		    static int32_t getLeftExtraAttack;

		    static int32_t getRigthExtraAttack;

Depois, localize weapons.ccp e procure por:

int32_t WeaponMelee::getWeaponDamage(const Player* player, const Creature* target, const Item* item, bool maxDamage /*= false*/) const

{

	    int32_t attackSkill = player->getWeaponSkill(item);

	    int32_t attackValue = std::max((int32_t)0, (int32_t(item->getAttack() + item->getExtraAttack()) - elementDamage));

	    float attackFactor = player->getAttackFactor();

Substitua por:

int32_t WeaponMelee::getWeaponDamage(const Player* player, const Creature* target, const Item* item, bool maxDamage /*= false*/) const

{


    int32_t getAttackLeft;

    int32_t getAttackRigth;

    int32_t getLeftExtraAttack;

	    int32_t getRigthExtraAttack;


    getAttackLeft = 0;

    getAttackRigth = 0;

    getLeftExtraAttack = 0;

	    getRigthExtraAttack = 0;


    if (getAttackLeft == 0)

    {

	    if (player->getInventoryItem(SLOT_LEFT) != NULL)

	    {

	    getAttackLeft = player->getInventoryItem(SLOT_LEFT)->getAttack();

	    getLeftExtraAttack = player->getInventoryItem(SLOT_LEFT)->getExtraAttack();

	    }

	    else if (player->getInventoryItem(SLOT_LEFT) == NULL)

	    {

	    getAttackLeft = 0;

	    getLeftExtraAttack = 0; 

	    }

    } 


    if (getAttackRigth == 0)

    {

	    if (player->getInventoryItem(SLOT_RIGHT) != NULL)

	    {

	    getAttackRigth = player->getInventoryItem(SLOT_RIGHT)->getAttack();

	    getRigthExtraAttack = player->getInventoryItem(SLOT_RIGHT)->getExtraAttack();

	    }

	    else if (player->getInventoryItem(SLOT_RIGHT) == NULL)

	    {

	    getAttackRigth = 0;

	    getRigthExtraAttack = 0; 

	    }

    }												



    int32_t attackValue = std::max((int32_t)0, (int32_t)((getAttackLeft + getLeftExtraAttack + getAttackRigth + getRigthExtraAttack) - elementDamage));											  


    int32_t attackSkill = player->getWeaponSkill(item);

    float attackFactor = player->getAttackFactor();

CREDITOS:

Jhon992


Regras Gerais 

 

"Califórnia Brasileira :cool: "

Link para o post
Compartilhar em outros sites

isso é nas sources q mexe sim, caso queira tentar

Vá em player.ccp e procure por:


ret = RET_CANONLYUSEONEWEAPON;

Você ira encontrar dois "ret = RET_CANONLYUSEONEWEAPON;", substitua por:

ret = RET_NOERROR;

Após, localize weapons.h e procure por:

const Weapon* getWeapon(const Item* item) const;

Embaixo você coloca:

static int32_t getAttackLeft;

			static int32_t getAttackRigth;

			static int32_t getLeftExtraAttack;

			static int32_t getRigthExtraAttack;

Depois, localize weapons.ccp e procure por:

int32_t WeaponMelee::getWeaponDamage(const Player* player, const Creature* target, const Item* item, bool maxDamage /*= false*/) const

{

		int32_t attackSkill = player->getWeaponSkill(item);

		int32_t attackValue = std::max((int32_t)0, (int32_t(item->getAttack() + item->getExtraAttack()) - elementDamage));

		float attackFactor = player->getAttackFactor();

Substitua por:

int32_t WeaponMelee::getWeaponDamage(const Player* player, const Creature* target, const Item* item, bool maxDamage /*= false*/) const

{


	int32_t getAttackLeft;

	int32_t getAttackRigth;

	int32_t getLeftExtraAttack;

		int32_t getRigthExtraAttack;


	getAttackLeft = 0;

	getAttackRigth = 0;

	getLeftExtraAttack = 0;

		getRigthExtraAttack = 0;


	if (getAttackLeft == 0)

	{

		if (player->getInventoryItem(SLOT_LEFT) != NULL)

		{

		getAttackLeft = player->getInventoryItem(SLOT_LEFT)->getAttack();

		getLeftExtraAttack = player->getInventoryItem(SLOT_LEFT)->getExtraAttack();

		}

		else if (player->getInventoryItem(SLOT_LEFT) == NULL)

		{

		getAttackLeft = 0;

		getLeftExtraAttack = 0;

		}

	}


	if (getAttackRigth == 0)

	{

		if (player->getInventoryItem(SLOT_RIGHT) != NULL)

		{

		getAttackRigth = player->getInventoryItem(SLOT_RIGHT)->getAttack();

		getRigthExtraAttack = player->getInventoryItem(SLOT_RIGHT)->getExtraAttack();

		}

		else if (player->getInventoryItem(SLOT_RIGHT) == NULL)

		{

		getAttackRigth = 0;

		getRigthExtraAttack = 0;

		}

	}												



	int32_t attackValue = std::max((int32_t)0, (int32_t)((getAttackLeft + getLeftExtraAttack + getAttackRigth + getRigthExtraAttack) - elementDamage));											  


	int32_t attackSkill = player->getWeaponSkill(item);

	float attackFactor = player->getAttackFactor();

CREDITOS:

Jhon992

entao mais tem como colocar esse sistema em 1 só vocaçao?

barlukinhas017my6lj7.gif

Habilidades :

Scripter = Bom

Mapper = Ótimo

Spriter = Bom

Programer = Ruim

Projetos\Topicos :

-

Att. JokerMind Renan =)

Link para o post
Compartilhar em outros sites

ok vlw mesmo assim!

barlukinhas017my6lj7.gif

Habilidades :

Scripter = Bom

Mapper = Ótimo

Spriter = Bom

Programer = Ruim

Projetos\Topicos :

-

Att. JokerMind Renan =)

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo