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

    • Luniage - a custom Interlude client on Unity, with its own server Hi everyone. I've been quietly working on this for a long time and I think it's finally at the point where it's worth showing. Short version: it's Interlude, but the client and the server are both mine. The client is a custom one, built in Unity — not a patched or reskinned original. The server is written from scratch in C#. The only thing that comes from the old game is the content: the world, the models, the animations, the sounds, the icons, the interface art. The game looks and feels like the game you know. Everything underneath it is new. Why do this at all   Because the old client is a 2004 executable and anyone who has ever tried to add something to it knows exactly how that conversation ends. You can't add a window. You can't change how a skill looks. You can't fix a bug that's staring you in the face. Every server that wanted a feature of its own had to fake it through HTML dialogs and system messages, because the client simply won't bend. At some point it stops being worth fighting. I'd rather keep the game and rebuild everything around it. Where it is right now   You can sit down and play it. Not a tech demo, not a walk-around-and-look-at-the-trees build - an actual character. Most of the game is in: movement, combat, the skill system with its real formulas and timings, items and equipment, enchanting, shops and player trade, quests, parties, clans, and the whole interface that ties it together. Progression works from level 1 all the way through A grade - you can level, gear up, join a clan and run content today. What's missing isn't the foundation. It's the top end - and that's exactly where the work is pointed next.   Videos     What I'm working on now   Castle sieges and the Olympiad. The two biggest systems the game has, the ones that turn a working world into a server people actually stay on. And visual effects. They already run, but "runs" and "looks the way you remember it" are two very different things, and closing that gap turned out to be a much longer road than I expected. I'm going through them one by one. Does it run outside Windows   Yes. It's a Unity project, so Windows, Mac and Linux are just build targets. I actually develop on a Mac, which has kept the whole thing honest about staying portable. Will it work with my existing server   No, and it never will. The client talks to my server and nothing else - that's the trade I made, and it's the reason everything above is possible in the first place. If you're looking for a drop-in replacement client for a setup you already have, this isn't it. What's the goal   First and foremost, to launch my own project on it. That's what the client and the server are being built for, and that's what sets the priorities. Longer term, I'd like to open-source it. This community has spent twenty years working around a client nobody can touch, and I think the honest ending to this story is handing over something people can actually build on. I'm not putting a date on that - first it has to be good enough to be worth someone else's time. Can I try it   Not yet. When there's a build worth handing out, it gets posted here first. In the meantime I'll be posting progress regularly, and I read every reply. If you've run a server, built a client, or just spent a decade staring at this game and know exactly which detail everyone gets wrong — please say so. A good share of what's right in this project is right because somebody pointed at a screenshot and said "that's not how it looked." Thanks for reading.  
  • 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..