Jump to content

Official Ovenuç® Flame topic (L2J Professionals)


xdem

Recommended Posts

 

ahahah re ta pisteueis auta pou les? EILIKRINA? TA PISTEUEIS? PANTA PANTA PANTA MA PANTA TO PHX XTIPAEI CLIENTPACKETS!!! KAI META PAEI STA INNER CODING ELA EXETE LA8OS KAI DEN TO PARADEXESTE!!! APLA EGINES GELIOS APO TIN STIGMI POU MILISES GIA PHX KAI LES GAMA TA CLIENTPACKETS POS NA -beep-O TA CLIENTPACKETS OTAN TO PHX DOULEUEI MONO ME AUTA KAI TO BAD CODING TOUS!!

 

apla sou e3igisa oti ama stileis fake packet me objectid pou den iparxei sto l2world to packet 9a kanei return

omos an vrei to object tote 9a tre3ei to doAttack, to doAttack ektelite sinexos mexri na to stamatiseis, dokimase to pata mia fora attack (dld stile mia fora to packet) kai aston char, 9a sinexisei na varaei. Afto simenei oti meta to ka9e doAttack erxete kenourgio doAttack mexri kapia stigmi na stamatisei.

ama peraseis to packet kai kaneis to attack pernas to gamimeno packet kai mpeneis sta loops tou doattack an ka9oli tin diarkia to object gia kapio logo xa9ei tote einai null kai petaei null exception. min me kaneis na to pw pio analitika

Link to comment
Share on other sites

 

intrepid you get your answers if i go to post on l2jserver community that they will be lough all with you you know it that allready.. so say yes i am wrong!

or i will go now on l2j community to post you code

 

 

SO YOU ARE BETTER DEV FROM L2J DEVS BECAUSE L2J DEVS THEY DIDNT USE NULL CHECK IN doAttack

 

protected void doAttack(L2Character target)

{

if ((target == null) || isAttackingDisabled() || !fireAttackListeners(target))

{

return;

}

 

FAIL thats from l2j :DDDD

Link to comment
Share on other sites

Dragonclaw Gracia Final

 

if ((target == null) || isAttackingDisabled() || !fireAttackListeners(target))

{

return;

}

 

Acis

 

if (!isAlikeDead() && target != null)

 

L2J Epilogue

 

if (!isAlikeDead() && target != null)

 

now go die moron

Link to comment
Share on other sites

Guest Elfocrash

Even L2j high five has it:

/**
 * Launch a physical attack against a target (Simple, Bow, Pole or Dual).<br>
 * <B><U>Actions</U>:</B>
 * <ul>
 * <li>Get the active weapon (always equipped in the right hand)</li>
 * <li>If weapon is a bow, check for arrows, MP and bow re-use delay (if necessary, equip the L2PcInstance with arrows in left hand)</li>
 * <li>If weapon is a bow, consume MP and set the new period of bow non re-use</li>
 * <li>Get the Attack Speed of the L2Character (delay (in milliseconds) before next attack)</li>
 * <li>Select the type of attack to start (Simple, Bow, Pole or Dual) and verify if SoulShot are charged then start calculation</li>
 * <li>If the Server->Client packet Attack contains at least 1 hit, send the Server->Client packet Attack to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character</li>
 * <li>Notify AI with EVT_READY_TO_ACT</li>
 * </ul>
 * @param target The L2Character targeted
 */
protected void doAttack(L2Character target)
{
	if ((target == null) || isAttackingDisabled() || !getEvents().onAttack(target))
	{
		return;
	}

	if (!isAlikeDead())
	{
		if ((isNpc() && target.isAlikeDead()) || !getKnownList().knowsObject(target))
		{
			getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
			sendPacket(ActionFailed.STATIC_PACKET);
			return;
		}
		else if (isPl

 

Tho i think you dont know what super.doAttack(target); is on L2PcInstance and you dont see the actually method of doAttack in  L2Character.

 

So yeah you are probably better than L2DC and L2j too

Link to comment
Share on other sites

Even L2j high five has it:

/**
 * Launch a physical attack against a target (Simple, Bow, Pole or Dual).<br>
 * <B><U>Actions</U>:</B>
 * <ul>
 * <li>Get the active weapon (always equipped in the right hand)</li>
 * <li>If weapon is a bow, check for arrows, MP and bow re-use delay (if necessary, equip the L2PcInstance with arrows in left hand)</li>
 * <li>If weapon is a bow, consume MP and set the new period of bow non re-use</li>
 * <li>Get the Attack Speed of the L2Character (delay (in milliseconds) before next attack)</li>
 * <li>Select the type of attack to start (Simple, Bow, Pole or Dual) and verify if SoulShot are charged then start calculation</li>
 * <li>If the Server->Client packet Attack contains at least 1 hit, send the Server->Client packet Attack to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character</li>
 * <li>Notify AI with EVT_READY_TO_ACT</li>
 * </ul>
 * @param target The L2Character targeted
 */
protected void doAttack(L2Character target)
{
	if ((target == null) || isAttackingDisabled() || !getEvents().onAttack(target))
	{
		return;
	}

	if (!isAlikeDead())
	{
		if ((isNpc() && target.isAlikeDead()) || !getKnownList().knowsObject(target))
		{
			getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
			sendPacket(ActionFailed.STATIC_PACKET);
			return;
		}
		else if (isPl

 

Tho i think you dont know what super.doAttack(target); is on L2PcInstance and you dont see the actually method of doAttack in  L2Character.

 

So yeah you are probably better than L2DC and L2j too

 

dats L2Prim son, fack null checks, fack da rulles

Link to comment
Share on other sites

AHAHAHAH I WILL CRY NOW THEY PUT THAT CODE

 

ESI RE ELFO SE PARAKALW MIN PERNIS MEROS SE KOUBENTA PIGENE MA8E TI KANEI TO DOATTACK KAI TO DOCAST KAI META ELA NA BGALIS GNWMI.. AN LEW PSEMATA OTI TO ELEGES ROTAME KAI TRYSKEL..

 

OSO GIA AUTO TWRA MPIKE KAI PALI EINAI AXRISTO KAI DEN EINAI GIA TO L2PHX EINAI GIA TA MOBS!!!

Link to comment
Share on other sites

even phoinix which is coded from scratch has it on Playable.java

 

        Player player = getPlayer();

        if (player == null)

        {

            return;

        }

Link to comment
Share on other sites

Guest Elfocrash

AHAHAHAH I WILL CRY NOW THEY PUT THAT CODE

 

ESI RE ELFO SE PARAKALW MIN PERNIS MEROS SE KOUBENTA PIGENE MA8E TI KANEI TO DOATTACK KAI TO DOCAST KAI META ELA NA BGALIS GNWMI.. AN LEW PSEMATA OTI TO ELEGES ROTAME KAI TRYSKEL..

 

OSO GIA AUTO TWRA MPIKE KAI PALI EINAI AXRISTO KAI DEN EINAI GIA TO L2PHX EINAI GIA TA MOBS!!!

Caps. Caps everywhere. I was talking about the difference between doCast and doAttack nothing else. Just admit you are wrong. It is not bad.

Staying on something while veryone says it is wrong is tho

Link to comment
Share on other sites

CT2.5 l2j code...

 

 

// =========================================================
// Method - Private
/**
 * Launch a physical attack against a target (Simple, Bow, Pole or Dual).<BR><BR>
 *
 * <B><U> Actions</U> :</B><BR><BR>
 * <li>Get the active weapon (always equiped in the right hand) </li><BR><BR>
 * <li>If weapon is a bow, check for arrows, MP and bow re-use delay (if necessary, equip the L2PcInstance with arrows in left hand)</li>
 * <li>If weapon is a bow, consume MP and set the new period of bow non re-use </li><BR><BR>
 * <li>Get the Attack Speed of the L2Character (delay (in milliseconds) before next attack) </li>
 * <li>Select the type of attack to start (Simple, Bow, Pole or Dual) and verify if SoulShot are charged then start calculation</li>
 * <li>If the Server->Client packet Attack contains at least 1 hit, send the Server->Client packet Attack to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character</li>
 * <li>Notify AI with EVT_READY_TO_ACT</li><BR><BR>
 *
 * @param target The L2Character targeted
 *
 */
protected void doAttack(L2Character target)
{
	if (Config.DEBUG)
		_log.fine(getName()+" doAttack: target="+target);

	if (!isAlikeDead() && target != null)
	{
		if (this instanceof L2Npc && target.isAlikeDead()
				|| !getKnownList().knowsObject(target))
		{
			getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
			sendPacket(ActionFailed.STATIC_PACKET);
			return;
		}
		else if (this instanceof L2PcInstance)
		{
			if (target.isDead())
			{
				getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
				sendPacket(ActionFailed.STATIC_PACKET);
				return;
			}

			L2PcInstance actor = (L2PcInstance)this;
			/*
			 * Players riding wyvern or with special (flying) transformations can do melee attacks, only with skills
			 */
			if ((actor.isMounted() && actor.getMountNpcId() == 12621)
					|| (actor.isTransformed() && !actor.getTransformation().canDoMeleeAttack()))
			{
				sendPacket(ActionFailed.STATIC_PACKET);
				return;
			}
		}
	}

	if (isAttackingDisabled())
		return;

Link to comment
Share on other sites

Caps. Caps everywhere. I was talking about the difference between doCast and doAttack nothing else. Just admit you are wrong. It is not bad.

Staying on something while veryone says it is wrong is tho

 

 

Actualy you say remove null from doAttack and go cast prominence skills from sorcer class with out that cast.. :)

Link to comment
Share on other sites

CT2.5 l2j code...

 

 

	if (!isAlikeDead() && target != null)
	{

 

HAHAHAHAHAHAHHAHAHAHAHAHAHAA

 

return and if do the same job here moron

Link to comment
Share on other sites

CT2.5 l2j code...

 

 

// =========================================================
// Method - Private
/**
 * Launch a physical attack against a target (Simple, Bow, Pole or Dual).<BR><BR>
 *
 * <B><U> Actions</U> :</B><BR><BR>
 * <li>Get the active weapon (always equiped in the right hand) </li><BR><BR>
 * <li>If weapon is a bow, check for arrows, MP and bow re-use delay (if necessary, equip the L2PcInstance with arrows in left hand)</li>
 * <li>If weapon is a bow, consume MP and set the new period of bow non re-use </li><BR><BR>
 * <li>Get the Attack Speed of the L2Character (delay (in milliseconds) before next attack) </li>
 * <li>Select the type of attack to start (Simple, Bow, Pole or Dual) and verify if SoulShot are charged then start calculation</li>
 * <li>If the Server->Client packet Attack contains at least 1 hit, send the Server->Client packet Attack to the L2Character AND to all L2PcInstance in the _KnownPlayers of the L2Character</li>
 * <li>Notify AI with EVT_READY_TO_ACT</li><BR><BR>
 *
 * @param target The L2Character targeted
 *
 */
protected void doAttack(L2Character target)
{
	if (Config.DEBUG)
		_log.fine(getName()+" doAttack: target="+target);

	if (!isAlikeDead() && target != null)
	{
		if (this instanceof L2Npc && target.isAlikeDead()
				|| !getKnownList().knowsObject(target))
		{
			getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
			sendPacket(ActionFailed.STATIC_PACKET);
			return;
		}
		else if (this instanceof L2PcInstance)
		{
			if (target.isDead())
			{
				getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);
				sendPacket(ActionFailed.STATIC_PACKET);
				return;
			}

			L2PcInstance actor = (L2PcInstance)this;
			/*
			 * Players riding wyvern or with special (flying) transformations can do melee attacks, only with skills
			 */
			if ((actor.isMounted() && actor.getMountNpcId() == 12621)
					|| (actor.isTransformed() && !actor.getTransformation().canDoMeleeAttack()))
			{
				sendPacket(ActionFailed.STATIC_PACKET);
				return;
			}
		}
	}

	if (isAttackingDisabled())
		return;

 

It's there dude.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.



  • Posts

    • ☎-+256759162994☎ Instant Death Spells Caster   @Revenge Spells Black Magic Voodoo instant revenge death spell caster Azerbaijan, Monte +256759162994.??….Dr. drmamaanani African Famous Voodoo instant revenge death spell caster well known identity as Mama demons Voodoo spell caster, @ CALL / WHATSAPP +256759162994. Results is 100% sure and guaranteed, spell casting specialist, drmamaanani  black magic death spells that work overnight or by accident or by making him / her polarized for his entire life OR to die in a sleep? Cast these strongest black magic revenge death spells that work fast has witchcraft spells to help you with any situation or problems. My witchcraft spells Death CAST overnight Revenge Spell on wicked friends, Voodoo Death Spells to kill Enemies Black Magic Spells To Harm Someone, Black magic death spells on ex lover , Revenge instant death spells on uncle +256759162994….CONTACT ME BY WHATSAPP: +256759162994-can help you if you are feeling HOW TO o kill ex lover, husband, wife girlfriend Enemies without delay. It doesn’t matter whether he or she is in another Country or State. I guarantee you to have your results you are looking for immediately. Just make sure before you contact me you are committed and you want what you are looking for (Victim Death) because my death spell work fast overnight after casting the spells. Immediately working black magic death spells that work fast will be cast on the person and result is 24hours. Mama Sanyu is a Voodoo -witchcraft spell caster who A LOVE SPELLS THAT WORK IMMEDIETLY How To Cast A Death Spell On Someone, Death Spells That Work Overnight to kill wicked Step-dad/ Step mom /@Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Australia, USA, UK, Canada, Mauritius. Bring Back Lost Love Spell Caster in Tasmania Victoria West Norway Hull London Powerful Spiritual Traditional Herbalist Healer experienced in Ancestral healing and spell casting, Astrologers, African Medicines, Ritualism, Herbalist healers, Spiritual healers, Native healer, Philosophy, Traditional healers, Herbal remedies, holistic healing .drmamaanani@gmail.com
    • @$+256759162994!!)SPIRITUAL QUICKEST DEATH SPELL / REVENGE SPELL CASTER IN AUSTRALIA, NORWAY, ITALY, *$$ DEATH SPELLS/ MARRIAGE SPELL CASTER+256759162994.??….Dr. drmamaanani African Famous Voodoo instant revenge death spell caster well known identity as Mama demons Voodoo spell caster, @ CALL / WHATSAPP +256759162994. Results is 100% sure and guaranteed, spell casting specialist, drmamaanani  black magic death spells that work overnight or by accident or by making him / her polarized for his entire life OR to die in a sleep? Cast these strongest black magic revenge death spells that work fast has witchcraft spells to help you with any situation or problems. My witchcraft spells Death CAST overnight Revenge Spell on wicked friends, Voodoo Death Spells to kill Enemies Black Magic Spells To Harm Someone, Black magic death spells on ex lover , Revenge instant death spells on uncle +256759162994….CONTACT ME BY WHATSAPP: +256759162994-can help you if you are feeling HOW TO o kill ex lover, husband, wife girlfriend Enemies without delay. It doesn’t matter whether he or she is in another Country or State. I guarantee you to have your results you are looking for immediately. Just make sure before you contact me you are committed and you want what you are looking for (Victim Death) because my death spell work fast overnight after casting the spells. Immediately working black magic death spells that work fast will be cast on the person and result is 24hours. Mama Sanyu is a Voodoo -witchcraft spell caster who A LOVE SPELLS THAT WORK IMMEDIETLY How To Cast A Death Spell On Someone, Death Spells That Work Overnight to kill wicked Step-dad/ Step mom /@Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Australia, USA, UK, Canada, Mauritius. Bring Back Lost Love Spell Caster in Tasmania Victoria West Norway Hull London Powerful Spiritual Traditional Herbalist Healer experienced in Ancestral healing and spell casting, Astrologers, African Medicines, Ritualism, Herbalist healers, Spiritual healers, Native healer, Philosophy, Traditional healers, Herbal remedies, holistic healing .drmamaanani@gmail.com
    • NAMIBIA@+256759162994- DEATH SPELL CASTER REVENGE DEATH SPELLS WITH GUARANTEE RESULTS IN BOSTON CANADA FRANCE Enemy kill revenge spells in Essen, Germany.+256759162994.??….Dr. drmamaanani African Famous Voodoo instant revenge death spell caster well known identity as Mama demons Voodoo spell caster, @ CALL / WHATSAPP +256759162994. Results is 100% sure and guaranteed, spell casting specialist, drmamaanani  black magic death spells that work overnight or by accident or by making him / her polarized for his entire life OR to die in a sleep? Cast these strongest black magic revenge death spells that work fast has witchcraft spells to help you with any situation or problems. My witchcraft spells Death CAST overnight Revenge Spell on wicked friends, Voodoo Death Spells to kill Enemies Black Magic Spells To Harm Someone, Black magic death spells on ex lover , Revenge instant death spells on uncle +256759162994….CONTACT ME BY WHATSAPP: +256759162994-can help you if you are feeling HOW TO o kill ex lover, husband, wife girlfriend Enemies without delay. It doesn’t matter whether he or she is in another Country or State. I guarantee you to have your results you are looking for immediately. Just make sure before you contact me you are committed and you want what you are looking for (Victim Death) because my death spell work fast overnight after casting the spells. Immediately working black magic death spells that work fast will be cast on the person and result is 24hours. Mama Sanyu is a Voodoo -witchcraft spell caster who A LOVE SPELLS THAT WORK IMMEDIETLY How To Cast A Death Spell On Someone, Death Spells That Work Overnight to kill wicked Step-dad/ Step mom /@Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Australia, USA, UK, Canada, Mauritius. Bring Back Lost Love Spell Caster in Tasmania Victoria West Norway Hull London Powerful Spiritual Traditional Herbalist Healer experienced in Ancestral healing and spell casting, Astrologers, African Medicines, Ritualism, Herbalist healers, Spiritual healers, Native healer, Philosophy, Traditional healers, Herbal remedies, holistic healing .drmamaanani@gmail.com
    • @@$+256759162994- BLACK MAGIC INSTANT DEATH SPELL CASTER IN UGANDA, NETHERLANDS,+256759162994.??….Dr. drmamaanani African Famous Voodoo instant revenge death spell caster well known identity as Mama demons Voodoo spell caster, @ CALL / WHATSAPP +256759162994. Results is 100% sure and guaranteed, spell casting specialist, drmamaanani  black magic death spells that work overnight or by accident or by making him / her polarized for his entire life OR to die in a sleep? Cast these strongest black magic revenge death spells that work fast has witchcraft spells to help you with any situation or problems. My witchcraft spells Death CAST overnight Revenge Spell on wicked friends, Voodoo Death Spells to kill Enemies Black Magic Spells To Harm Someone, Black magic death spells on ex lover , Revenge instant death spells on uncle +256759162994….CONTACT ME BY WHATSAPP: +256759162994-can help you if you are feeling HOW TO o kill ex lover, husband, wife girlfriend Enemies without delay. It doesn’t matter whether he or she is in another Country or State. I guarantee you to have your results you are looking for immediately. Just make sure before you contact me you are committed and you want what you are looking for (Victim Death) because my death spell work fast overnight after casting the spells. Immediately working black magic death spells that work fast will be cast on the person and result is 24hours. Mama Sanyu is a Voodoo -witchcraft spell caster who A LOVE SPELLS THAT WORK IMMEDIETLY How To Cast A Death Spell On Someone, Death Spells That Work Overnight to kill wicked Step-dad/ Step mom /@Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Australia, USA, UK, Canada, Mauritius. Bring Back Lost Love Spell Caster in Tasmania Victoria West Norway Hull London Powerful Spiritual Traditional Herbalist Healer experienced in Ancestral healing and spell casting, Astrologers, African Medicines, Ritualism, Herbalist healers, Spiritual healers, Native healer, Philosophy, Traditional healers, Herbal remedies, holistic healing .drmamaanani@gmail.com  
    • +256759162994= Most Trusted Death Spells Caster in SOUTH AFRICA,Namibia,USA,UK,Austria,Australia,Sweden,Switzerland,Italy,Spain,Canada,Brazil,Norway,New Zealand,Belgium,Zambia,Zimbabwe,Botswana,Lesotho,U.A.E,Egypt,Kuwait,Turkey,Qatar,Pakistan +256759162994.??….Dr. drmamaanani African Famous Voodoo instant revenge death spell caster well known identity as Mama demons Voodoo spell caster, @ CALL / WHATSAPP +256759162994. Results is 100% sure and guaranteed, spell casting specialist, drmamaanani  black magic death spells that work overnight or by accident or by making him / her polarized for his entire life OR to die in a sleep? Cast these strongest black magic revenge death spells that work fast has witchcraft spells to help you with any situation or problems. My witchcraft spells Death CAST overnight Revenge Spell on wicked friends, Voodoo Death Spells to kill Enemies Black Magic Spells To Harm Someone, Black magic death spells on ex lover , Revenge instant death spells on uncle +256759162994….CONTACT ME BY WHATSAPP: +256759162994-can help you if you are feeling HOW TO o kill ex lover, husband, wife girlfriend Enemies without delay. It doesn’t matter whether he or she is in another Country or State. I guarantee you to have your results you are looking for immediately. Just make sure before you contact me you are committed and you want what you are looking for (Victim Death) because my death spell work fast overnight after casting the spells. Immediately working black magic death spells that work fast will be cast on the person and result is 24hours. Mama Sanyu is a Voodoo -witchcraft spell caster who A LOVE SPELLS THAT WORK IMMEDIETLY How To Cast A Death Spell On Someone, Death Spells That Work Overnight to kill wicked Step-dad/ Step mom /@Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Australia, USA, UK, Canada, Mauritius. Bring Back Lost Love Spell Caster in Tasmania Victoria West Norway Hull London Powerful Spiritual Traditional Herbalist Healer experienced in Ancestral healing and spell casting, Astrologers, African Medicines, Ritualism, Herbalist healers, Spiritual healers, Native healer, Philosophy, Traditional healers, Herbal remedies, holistic healing .drmamaanani@gmail.com
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock