Jump to content
  • 0

Question

Posted

hello how i can make this code for only monster with 22587 id only and not all monsters its for cancel cast:

 
if ((target.isRaid() && target.isMonster()) || target.isInvul() || (init <= 0))
{
return false; // No attack break
}

 

Recommended Posts

  • 0
Posted

 

hello how i can make this code for only monster with 22587 id only and not all monsters its for cancel cast:

 
if ((target.isRaid() && target.isMonster()) || target.isInvul() || (init <= 0))
{
return false; // No attack break
}

 

i didnt understand what you want to do but to add id so you must start your code

if (getNpcId() == 22587
  • 0
Posted

 

i didnt understand what you want to do but to add id so you must start your code

if (getNpcId() == 22587

Ok though i am not really confidend i think i get the base idea so i will try giving you some tips:

 

So from my understanding you want this code to function not for all Monsters but only for 22587 but 22587 is defined as a Monster or isn't it?

So  you will have to create a definition for this just like Reborn said if(getNpcId) == blabla.

So i will tell it to you in pseudoce:

If target isMonster then getNpcId blabla

 

return

 

this will make the code work for a monster with the specific NpcId or atleast i believe it to be so if i am mistaken please correct :P

 

  • 0
Posted

i want to add the id of mob inside this code and remove isMonster because i want it for one monster only this code is inside Formulas.java

I gave you the answer change israid with ismonster and add first if((getnpcid() == id && target.israid())

  • 0
Posted

ty guys for the tips but when i add getNpcId  it says method is undefined for formulas

Lets give this a shot go to your gameserver.model.actor  and create this

public int getNpcId()
{
return getTemplate().getNpcId();
}
 
save and try it again this will create a public intiger for the getNpcId... i am really not the best guy to ask here but you could give it a shot i mean nothing to lose :P
  • 0
Posted (edited)

 

hello how i can make this code for only monster with 22587 id only and not all monsters its for cancel cast:

 
     
if ((target.isRaid() || target.isInvul() || (init <= 0))
      if (target instanceof L2Npc)
      {
           L2Npc mob = (L2Npc) target;

           if (mob.getNpcId() == 323232)
               return false; // No attack break
      }

 

 

I don't know in which file this code exist, or what project is but try it.

Edited by AccessDenied
  • 0
Posted (edited)

You don't need to edit the check with isRaid and isInvul (Unless you want them completely removed)

All you have to do is add a new check like this:
 


if (target instanceof L2Npc && ((L2Npc)target).getId() == 22587)
{          
    return false; // No attack break
} 

Additionally do not forget to add this import at the very beginning of the class:
 

import com.l2jserver.gameserver.model.actor.L2Npc; 

That should work (At least it does for me and I think I use a similar project to yours).

Edited by Meydex
  • 0
Posted (edited)

i want to add the id of mob inside this code and remove isMonster because i want it for one monster only this code is inside Formulas.java

wut..

 

Dunno...,since u want it for 1 monster and its && ,there is no reason to worry for it.It will work.U just need to add && getId() == theidyouwant.(It will check if its monster and if its 1 and if the id is the specific it,1 and 1 = 1.

The check will return 0 if its not the chosen mob,so it will work only for that mob.

Edited by bravetobe

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • NEW HIDDENSTASH KEY SYSTEM INTRODUCED TO THE SITE   **Earn While You Spend - Introducing HS Cashback!**   Every purchase on our site now rewards you with **HS Keys cashback**   EVERY ONE WHO REGISTERS IN SITE UNTILL 15TH OF MAY GETS 2000 HS KEYS IN HES BALANE   Here's how it works:       **1 USD = 1000 HS Keys**   **Get 3% cashback** on every purchase   **Use your HS Keys to **save on your next order**   ---   ### ⚡ Why this is awesome   * Every order gives you value back   * Stack it with promos & HS usage   * Turn your spending into future discounts   ---   ### Example   Spend **$10** → Get **300 HS Keys** back   Spend **$50** → Get **1500 HS Keys** back   ---   ### Smart system (built for fairness)   * Cashback is rounded to keep things balanced   * Prevents abuse from tiny orders   * Rewards real buyers   ---   ### Start earning now   Every purchase = progress toward your next discount   Shop now and build your HS balance!   #cashback #gamingdeals #d2r #rewards #loyalty   Stay safe out there, heroes - and happy hunting! www.d2rhiddenstash.com     We just launched our new Affiliate Program — and it’s the easiest way to earn HS Keys.   Invite your friends using your personal link.   Example: If your friend spends $10 → you get 300 HS Keys No limits. No effort. Just share your link.   Get your referral link here: www.d2rhiddenstash.com/profile     Start earning today
    • https://jumpshare.com/share/L45ApA5PVrGN2O5Ua5pQ   Skill synchronization with the server: Launching and synchronizing animations, launching and synchronizing effects. All of this is tied to the server's timing  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and 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..