Jump to content
  • 0

Help


forsas

Question

1 answer to this question

Recommended Posts

  • 0

How do if player is karma and he use silent move or stealth guard see him?

 

if guard see player with karma and activ skill silent move its good because that fuction work perfect but if u want set it u need create new file i will show u how :

 

1. open notepad

 

2. copy that and put it to your notepad

/*

* This program is free software: you can redistribute it and/or modify it under

* the terms of the GNU General Public License as published by the Free Software

* Foundation, either version 3 of the License, or (at your option) any later

* version.

*

* This program is distributed in the hope that it will be useful, but WITHOUT

* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS

* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more

* details.

*

* You should have received a copy of the GNU General Public License along with

* this program. If not, see <http://www.gnu.org/licenses/>.

*/

package ai.group_template;

 

import net.sf.l2j.gameserver.datatables.SpawnTable;

import net.sf.l2j.gameserver.model.L2Spawn;

import net.sf.l2j.gameserver.model.actor.L2Attackable;

import net.sf.l2j.gameserver.model.actor.L2Npc;

import net.sf.l2j.gameserver.util.Util;

 

public class SeeThroughSilentMove extends L2AttackableAIScript

{

       private static final int[] MOBIDS = {18001,18002,22199,22215,22216,22217,22327,29009,29010,29011,29012,29013};

 

       public SeeThroughSilentMove(int questId, String name, String descr)

       {

               super(questId, name, descr);

               for (L2Spawn npc : SpawnTable.getInstance().getSpawnTable().values())

                       if (Util.contains(MOBIDS,npc.getNpcid()) && npc.getLastSpawn() != null && npc.getLastSpawn() instanceof L2Attackable)

                               ((L2Attackable)npc.getLastSpawn()).setSeeThroughSilentMove(true);

               for (int npcId : MOBIDS)

                       this.addSpawnId(npcId);

       }

 

       public String onSpawn(L2Npc npc)

       {

               if (npc instanceof L2Attackable)

                       ((L2Attackable)npc).setSeeThroughSilentMove(true);

               return super.onSpawn(npc);

       }

 

       public static void main(String[] args)

       {

               new SeeThroughSilentMove(-1, "SeeThroughSilentMove", "ai");

       }

}

 

3. if u put save it under the name SeeThroughSilentMove.java u must put it to data/scripts/ai/group_template

 

4. if u use gracia, gracia final or epilogue server pack u must go to data and open scripts.cfg and add this line

ai/group_template/SeeThroughSilentMove.java

 

5. important ! if u use other server pack like l2jfree, l2jbrasil etc. u must change imports for example that

import net.sf.l2j.gameserver.datatables.SpawnTable; for import com.it.br.gameserver.datatables.SpawnTable; (if u use server pack l2jbrasil)
if u dont know how to do it pm me i can help u ;)

 

6. and everything done and run server again i think i help u ;)

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...