Jump to content
  • 0

Raidboss Shout When Killed


Question

Recommended Posts

  • 0
Posted

If you're using Pride's shared pack, its already up and working. (because of the screen you linked)

Otherwise, just get to your L2RaidBossInstance, create in a variable your custom messages, then create a method which will start making the announces.

  • 0
Posted

If you're using Pride's shared pack, its already up and working. (because of the screen you linked)

 

Otherwise, just get to your L2RaidBossInstance, create in a variable your custom messages, then create a method which will start making the announces.

i use pride shared pack...you can help me more? in tv or skype,etc?

  • 0
Posted

l2raidbossinstance

 

public boolean doDie(L2Character killer)
 
 
 
RaidBossPointsManager.addPoints(player, getNpcId(), (getLevel() / 2) + Rnd.get(-5, 5));
 
+int npcId = getNpcId();
 
+switch (npcId)
+{
+case 244248:
+broadcastPacket(new CreatureSay(25286, 1, "Tiat: Argghhh!", null));
+break;
 
 
  • 0
Posted

onAttack script with a Rnd.get(100) == 1 check to avoid to spam. You can also limit it once, or based on current HPs.

 

Avoid to touch to the core for such thing notably if it's limited to one or few npc ids.

  • 0
Posted

onAttack script with a Rnd.get(100) == 1 check to avoid to spam. You can also limit it once, or based on current HPs.

 

Avoid to touch to the core for such thing notably if it's limited to one or few npc ids.

I dont understand you...:/

  • 0
Posted (edited)

Check Gordon Ai if you want onattack ondie or w/e.. I told you.. Else this crappy pride like pack is so shitty and doesnt support those methods.

 

Your title and first post say "on kill". So why everyone say "on attack"!?

Edited by SweeTs
  • 0
Posted (edited)
L2RaidBossInstance.java

package net.sf.l2j.gameserver.model.actor.instance;

import net.sf.l2j.gameserver.Announcements;
import net.sf.l2j.gameserver.ThreadPoolManager;
import net.sf.l2j.gameserver.instancemanager.RaidBossPointsManager;
import net.sf.l2j.gameserver.instancemanager.RaidBossSpawnManager;
import net.sf.l2j.gameserver.model.L2Effect;
import net.sf.l2j.gameserver.model.L2Skill;
import net.sf.l2j.gameserver.model.L2Spawn;
import net.sf.l2j.gameserver.model.actor.L2Character;
import net.sf.l2j.gameserver.model.actor.L2Playable;
import net.sf.l2j.gameserver.model.actor.L2Summon;
import net.sf.l2j.gameserver.network.SystemMessageId;
import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;
import net.sf.l2j.gameserver.templates.chars.L2NpcTemplate;
import net.sf.l2j.gameserver.templates.chars.L2NpcTemplate.AIType;
import net.sf.l2j.gameserver.util.Broadcast;
import net.sf.l2j.util.Rnd;

public class L2RaidBossInstance extends L2MonsterInstance
{
private static final int RAIDBOSS_MAINTENANCE_INTERVAL = 15000; // 15 sec

/*private static List<L2RaidBossInstance> _alive85Raids = new ArrayList<L2RaidBossInstance>();
	private static List<L2RaidBossInstance> _alive91Raids = new ArrayList<L2RaidBossInstance>();
	public static int _rbCounter = 0;*/
private boolean _dead = true;

/*private ScheduledFuture<?> _announceRBSpawnTask = null;
	
	private class announceRBSpawnTask implements Runnable
	{
		L2RaidBossInstance _boss;
		
		public announceRBSpawnTask(L2RaidBossInstance boss)
		{
			_boss = boss;
		}
		
		public void run()
		{
			if (_boss != null && !_boss.isDead() && !_boss.isInCombat() && _boss.getCurrentHp() > _boss.getMaxHp() * 0.92 && _boss.isLevelOneRaidboss())
			{
				try
				{
					SystemMessage sm = new SystemMessage(SystemMessageId.A_RAIDBOSS_SPAWNED_IN_S1_REGION);
					sm.addZoneName(_boss.getX(), _boss.getY(), _boss.getZ()); // Region Name
					Announcements.getInstance().announceToAll(sm);
				}
				catch (Throwable t)
				{
				}
			}
		}
	}
	
	private ScheduledFuture<?> _announceRBSpawnTaskClan = null;
	
	private class announceRBSpawnTaskClan implements Runnable
	{
		L2RaidBossInstance _boss;
		
		public announceRBSpawnTaskClan(L2RaidBossInstance boss)
		{
			_boss = boss;
		}
		
		public void run()
		{
			if (_boss != null && !_boss.isDead() && !_boss.isInCombat()
			        && _boss.getCurrentHp() > _boss.getMaxHp() * 0.92)
			{
				try
				{
					final Castle castle = CastleManager.getInstance().getCastleById(MapRegionTable.getInstance().getAreaCastle(_boss));
					if (castle == null)
						return;
					
					final L2Clan clan = ClanTable.getInstance().getClan(castle.getOwnerId());
					if (clan == null)
						return;
					
					CreatureSay say = new CreatureSay(0, Say2.PARTYROOM_ALL, castle.getName()
					        + " Castle", _boss.getName()
					        + " has appeared in a region controlled by your castle.");
					clan.broadcastToOnlineMembers(say);
					
				}
				catch (Throwable t)
				{
				}
			}
		}
	}*/

private RaidBossSpawnManager.StatusEnum _raidStatus;

/**
 * Constructor of L2RaidBossInstance (use L2Character and L2NpcInstance constructor).<BR>
 * <BR>
 * 
 * <B><U> Actions</U> :</B><BR>
 * <BR>
 * <li>Call the L2Character constructor to set the _template of the L2RaidBossInstance (copy
 * skills from template to object and link _calculators to NPC_STD_CALCULATOR)</li> <li>Set the
 * name of the L2RaidBossInstance</li> <li>Create a RandomAnimation Task that will be launched
 * after the calculated delay if the server allow it</li><BR>
 * <BR>
 * 
 * @param objectId
 *            Identifier of the object to initialized
 * @param L2NpcTemplate
 *            Template to apply to the NPC
 */
public L2RaidBossInstance(int objectId, L2NpcTemplate template)
{
	super(objectId, template);
}

@Override
public synchronized void onSpawn()
{
	if (!_dead)
		return;
	
	_dead = false;
	
	setIsRaid(true);
	setIsNoRndWalk(true);
	super.onSpawn();
	
	/*		if (isLevelOneRaidboss())
		{
			_alive85Raids.add(this);
			_rbCounter++;
			
			if (_announceRBSpawnTask != null)
				_announceRBSpawnTask.cancel(true);
			
			_announceRBSpawnTask = ThreadPoolManager.getInstance().scheduleGeneral(new announceRBSpawnTask(this), 3800000); // 1hrs
			
			if (_announceRBSpawnTaskClan != null)
				_announceRBSpawnTaskClan.cancel(true);
			
			_announceRBSpawnTaskClan = ThreadPoolManager.getInstance().scheduleGeneral(new announceRBSpawnTaskClan(this), 3480000); // 2hrs
		}
		else if (isLevelTwoRaidboss())
		{
			_alive91Raids.add(this);
			
			if (_announceRBSpawnTaskClan != null)
				_announceRBSpawnTaskClan.cancel(true);
			
			_announceRBSpawnTaskClan = ThreadPoolManager.getInstance().scheduleGeneral(new announceRBSpawnTaskClan(this), 3480000); // 1.36hrs
		}*/
}

@Override
protected int getMaintenanceInterval()
{
	return RAIDBOSS_MAINTENANCE_INTERVAL;
}

@Override
public synchronized boolean doDie(L2Character killer)
{
	if (!super.doDie(killer))
		return false;
	
	if (_dead)
		return true;
	
	_dead = true;
	
	L2PcInstance player = null;
	if (killer instanceof L2PcInstance)
		player = (L2PcInstance) killer;
	else if (killer instanceof L2Summon)
		player = ((L2Summon) killer).getOwner();
	
	if (player != null)
	{
		broadcastPacket(new SystemMessage(SystemMessageId.RAID_WAS_SUCCESSFUL));
		if (player.getParty() != null)
		{
			for (L2PcInstance member : player.getParty().getPartyMembers())
			{
				RaidBossPointsManager.addPoints(member, getNpcId(), (getLevel() / 2)
						+ Rnd.get(-5, 5));
			}
		}
		else
			RaidBossPointsManager.addPoints(player, getNpcId(), (getLevel() / 2)
					+ Rnd.get(-5, 5));
	}
	
	if (getInstanceId() < 1000)
	{
		if (getLevel() >= 87)
		{
			String clan = "";
			if (player.getClan() != null)
				clan = " of clan "+player.getClan().getName();
			
			Announcements.getInstance().announceToAll(getName() + " has been defeated by " + player.getDisplayName() + clan);
		}
		
		if (!isTempSpawn())
			RaidBossSpawnManager.getInstance().updateStatus(this, true);
	}
	
	/*if (isLevelOneRaidboss())
		{
			_alive85Raids.remove(this);
			_rbCounter--;
			
			if (_announceRBSpawnTask != null)
				_announceRBSpawnTask.cancel(true);
			
			if (_announceRBSpawnTaskClan != null)
				_announceRBSpawnTaskClan.cancel(true);
			
			if (!player.isGM())
			{
				FastList<Integer> clans = new FastList<Integer>();
				
				if (player.getClan() != null)
				{
					player.getClan().incRBkills();
					clans.add(player.getClanId());
				}
				
				if (player.getParty() != null)
				{
					for (L2PcInstance noob : player.getParty().getPartyMembers())
					{
						if (noob != null && !noob.isGM() && noob.getClan() != null && !clans.contains(noob.getClanId()) && Util.checkIfInRange(1800, player, noob, true))
						{
							noob.getClan().incRBkills();
							clans.add(noob.getClanId());
						}
					}
				}
			}
		}
		else if (isLevelTwoRaidboss())
		{
			_alive91Raids.remove(this);
			
			if (_announceRBSpawnTaskClan != null)
				_announceRBSpawnTaskClan.cancel(true);
			
			if (!player.isGM())
			{
				FastList<Integer> clans = new FastList<Integer>();
				
				if (player.getClan() != null)
				{
					player.getClan().incRBkills();
					clans.add(player.getClanId());
				}
				
				if (player.getParty() != null)
				{
					for (L2PcInstance noob : player.getParty().getPartyMembers())
					{
						if (noob != null && !noob.isGM() && noob.getClan() != null && !clans.contains(noob.getClanId()) && Util.checkIfInRange(1800, player, noob, true))
						{
							noob.getClan().incRBkills();
							clans.add(noob.getClanId());
						}
					}
				}
			}
		}*/
	
	return true;
}

/**
 * Spawn all minions at a regular interval Also if boss is too far from home location at the
 * time of this check, teleport it home
 * 
 */
@Override
protected void manageMinions()
{
	if (_minionList != null)
		_minionList.spawnMinions();
	
	_minionMaintainTask = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable()
	{
		public void run()
		{
			// teleport raid boss home if it's too far from home location
			final L2Spawn bossSpawn = getSpawn();
			
			int radius = 3500;
			
			if (L2RaidBossInstance.this.isAPC())
				radius = 5000;
			
			if (L2RaidBossInstance.this.getTemplate().AI == AIType.MAGE || L2RaidBossInstance.this.getTemplate().AI == AIType.ARCHER)
				radius += 5000;
			
			if (L2RaidBossInstance.this.getInstanceId() > 0)
				radius *= 4;
			
			if (!isInsideRadius(bossSpawn.getCurX(), bossSpawn.getCurY(), bossSpawn.getCurZ(), radius, true, false))
			{
				teleToLocation(bossSpawn.getCurX(), bossSpawn.getCurY(), bossSpawn.getCurZ(), false);
				healFull(); // prevents minor exploiting with it
				_minionList.recallMinions();
				_minionList.maintainMinions();
				return;
			}
			
			_minionList.maintainMinions();
			
			for (L2PcInstance player : getKnownList().getKnownPlayers().values())
			{
				if (player == null || player.isGM())
					continue;
				
				for (L2Effect e : player.getAllEffects())
				{
					if (e == null)
						continue;
					
					int id = e.getSkill().getId();
					
					if (id == 176 || id == 292 || id == 538 || id == 929 || id == 930 || id == 931) // frenzy, bison, final form, summoner transforms
						e.exit();
				}
			}
			
			int val = 5;
			
			if (getLevel() > 85)
				val = 3;
			
			if (getNpcId() != 25325)
			{
				if (getTarget() instanceof L2Playable && getTarget().getActingPlayer() != null)
				{
					if (getTarget().getActingPlayer().getClan() != null)
					{
						if (getTarget().getActingPlayer().getClan().getLevel() < 6)
							val -= 1;
					}
					else
						val -= 1;
				}
				
				if (Rnd.get(98) < val && (getAI().getAttackTarget() != null || getAI().getFollowTarget() != null) && L2RaidBossInstance.this.getInstanceId() == 0)
					taunt();
			}
		}
	}, 60000, getMaintenanceInterval() + Rnd.get(5000));
}

protected void taunt()
{
	L2PcInstance target = getAI().getAttackTarget().getActingPlayer();
	
	if (target == null)
		target = getAI().getFollowTarget().getActingPlayer();
	
	if (target == null)
		target = getTarget().getActingPlayer();
	
	if (target == null)
		return;
	
	if (target.isGM())
		return;
	
	final String name = target.getDisplayName();
	
	final String[] msgs = {
			name + "! You think you can defeat me?",
			"Enjoy the hells " + name + "!",
			name
			+ "! I will show you my power, and then you can tremble before my might as I crush your puny bones to bits!",
			"You are really stupid to have challenged me... " + name + "!" + " Get ready!",
			"I really have no items, I swear!",
			name + "! I will destroy you!",
			name + "! I will make you realize what true power is!",
			name + ", You are on the way to destruction.",
			name + "! You have no chance to survive make your time.",
			"So we meet again, " + name + "! This time you die!",
			"Vegeta! What does the scouter say about " + name + "'s powerlevel?",
			"How brave of you to walk straight into death, " + name,
			name
			+ "! I've braved the fires of hell, stood against the attrition of time, and single-handedly unified this region, you think a little scrub like you can defeat me?",
			name + "! How inconsiderate of you, won't your friends miss you after you die?",
			"Start the clock! " + name + ", you will die in 5 minutes!",
			"It's time to sharpen my blade with human flesh!",
			name + "! You will not win! Get out of here while you can!",
			name + "! Even with all this zerg here I will still kill you all by myself!",
			"This one here named " + name + " will be no more soon...",
			name + "! You will die here like the rest before you!",
			name + "! I will show you the punishment that follows folly!",
			"Why do you attempt the futile, " + name + "?"
					+ " Throwing your life away carelessly like this...",
					"Today is a sad day for you! " + name + "!",
					"Today is a good day to die!... for " + name + "!",
					"Haha! The ant is trying to fight the lion!",
					name + " is a fool! Fools die!",
					"Death looms near for " + name,
					"I **** YOUR MOTHER " + name.toUpperCase() +"!",
					name + "! You should be proud that you will die by my hands!",
					name + "! What is the meaning of death? well, I'll show it to you!",
					name + ", I think you need more healers!",
					name + ", You sure the loot is set on finders keepers?",
					name + "! I will kill you with my left hand and your friends with my right! Muhahaha!",
					"Brethren prior to WENCHES!",
					"I hath ninety-nine difficulties, nary a wench among them!",
					"HALT! The hour of the hammer has begun!",
					"Compelling tale, male sibling.",
					"Bare thy bosoms or make hasty egress!",
					"Relocate yourself, hound of the female gender. Be certain not to block the direction of which I am travelling.",
					"Fornicate this excrement!",
					"Cease all activities thou art engaged in - The hour of the hammer is upon us.",
					"Female canine I beg of you!",
					"Allow the carcasses to make contact with the ground!",
					"Advance towards me in an aggressive manner, male sibling!",
					"I so happen to be attracted to large posteriors, and I am inclined to be completely factual on the matter.",
					"Make thy brethren a priority before enjoying the company of loose women.",
					"Fecal matter tends to occur...",
					"Insert thy reproductive organ into thine own self!"
	};
	
	if (target.getName().equalsIgnoreCase("smalls"))
	{
		if (Rnd.get(100) < 100)
			Broadcast.shoutChat("I'll take care of you Smalls", getName(), this);
		else
			Broadcast.shoutChat(msgs[Rnd.get(msgs.length)], getName(), this);
	}
	else
	{
		Broadcast.shoutChat(msgs[Rnd.get(msgs.length)], getName(), this);
	}
}

public void setRaidStatus(RaidBossSpawnManager.StatusEnum status)
{
	_raidStatus = status;
}

public RaidBossSpawnManager.StatusEnum getRaidStatus()
{
	return _raidStatus;
}

/**
 * Reduce the current HP of the L2Attackable, update its _aggroList and launch the doDie Task if
 * necessary.<BR>
 * <BR>
 * 
 */
@Override
public void reduceCurrentHp(double damage, L2Character attacker, boolean awake, boolean isDOT,
		L2Skill skill)
{
	super.reduceCurrentHp(damage, attacker, awake, isDOT, skill);
}

public void healFull()
{
	super.setCurrentHp(super.getMaxHp());
	super.setCurrentMp(super.getMaxMp());
}

public static void showRaidsThatAreUp(final L2PcInstance activeChar)
{
	/*		int count = 0;
		
		for (L2RaidBossInstance boss : _alive85Raids)
		{
			if (boss == null)
				continue;
			
			activeChar.sendMessage(count + ": " + boss.getName() + " (" + boss.getLevel() + ")");
			count++;
		}
		for (L2RaidBossInstance boss : _alive91Raids)
		{
			if (boss == null)
				continue;
			
			activeChar.sendMessage(count + ": " + boss.getName() + " (" + boss.getLevel() + ")");
			count++;
		}*/
}

public static void goToRaid(final L2PcInstance activeChar, final int number)
{
	/*		int count = 0;
		
		for (L2RaidBossInstance boss : _alive85Raids)
		{
			if (boss == null)
				continue;
			
			if (count == number)
			{
				activeChar.teleToLocation(boss.getX(), boss.getY(), boss.getZ());
				return;
			}
			
			count++;
		}
		for (L2RaidBossInstance boss : _alive91Raids)
		{
			if (boss == null)
				continue;
			
			if (count == number)
			{
				activeChar.teleToLocation(boss.getX(), boss.getY(), boss.getZ());
				return;
			}
			
			count++;
		}*/
}

@Override
public float getVitalityPoints(int damage)
{
	return -super.getVitalityPoints(damage) / 100;
}

@Override
public boolean useVitalityRate()
{
	return false;
}
}

I find shout's but is not 100%....some rb's dont make shout...how i make it 100% ???

Edited by GastOne
  • 0
Posted (edited)

What's the part you added...? Such a messy file with many useless, commented code..

Edited by SweeTs
  • 0
Posted (edited)

What's the part you added...? Such a messy file with many useless, commented code..

I Find...soz

final String[] msgs = {
            name + "! You think you can defeat me?",
            "Enjoy the hells " + name + "!",
            name
            + "! I will show you my power, and then you can tremble before my might as I crush your puny bones to bits!",
            "You are really stupid to have challenged me... " + name + "!" + " Get ready!",
            "I really have no items, I swear!",
            name + "! I will destroy you!",
            name + "! I will make you realize what true power is!",
            name + ", You are on the way to destruction.",
            name + "! You have no chance to survive make your time.",
            "So we meet again, " + name + "! This time you die!",
            "Vegeta! What does the scouter say about " + name + "'s powerlevel?",
            "How brave of you to walk straight into death, " + name,
            name
            + "! I've braved the fires of hell, stood against the attrition of time, and single-handedly unified this region, you think a little scrub like you can defeat me?",
            name + "! How inconsiderate of you, won't your friends miss you after you die?",
            "Start the clock! " + name + ", you will die in 5 minutes!",
            "It's time to sharpen my blade with human flesh!",
            name + "! You will not win! Get out of here while you can!",
            name + "! Even with all this zerg here I will still kill you all by myself!",
            "This one here named " + name + " will be no more soon...",
            name + "! You will die here like the rest before you!",
            name + "! I will show you the punishment that follows folly!",
            "Why do you attempt the futile, " + name + "?"
                    + " Throwing your life away carelessly like this...",
                    "Today is a sad day for you! " + name + "!",
                    "Today is a good day to die!... for " + name + "!",
                    "Haha! The ant is trying to fight the lion!",
                    name + " is a fool! Fools die!",
                    "Death looms near for " + name,
                    "I **** YOUR MOTHER " + name.toUpperCase() +"!",
                    name + "! You should be proud that you will die by my hands!",
                    name + "! What is the meaning of death? well, I'll show it to you!",
                    name + ", I think you need more healers!",
                    name + ", You sure the loot is set on finders keepers?",
                    name + "! I will kill you with my left hand and your friends with my right! Muhahaha!",
                    "Brethren prior to WENCHES!",
                    "I hath ninety-nine difficulties, nary a wench among them!",
                    "HALT! The hour of the hammer has begun!",
                    "Compelling tale, male sibling.",
                    "Bare thy bosoms or make hasty egress!",
                    "Relocate yourself, hound of the female gender. Be certain not to block the direction of which I am travelling.",
                    "Fornicate this excrement!",
                    "Cease all activities thou art engaged in - The hour of the hammer is upon us.",
                    "Female canine I beg of you!",
                    "Allow the carcasses to make contact with the ground!",
                    "Advance towards me in an aggressive manner, male sibling!",
                    "I so happen to be attracted to large posteriors, and I am inclined to be completely factual on the matter.",
                    "Make thy brethren a priority before enjoying the company of loose women.",
                    "Fecal matter tends to occur...",
                    "Insert thy reproductive organ into thine own self!"
    };

thats is the shout's

Edited by GastOne
  • 0
Posted

There is no hope for you. Where to fack did you added it.. Full page of replies where you have to add it and still.. :rage:

 

I'm out.

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.




  • Posts

    • hello, i want to wtt my charracter in l2elmorelab 1x harbor for 1.5kkk adena in l2reborn 10x new. Or if you interested tell me your offer. :)) Clean Mail 30 lvl Cleric Naked   Updated.
    • package ai.npc.NFWalker; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Random; import l2r.gameserver.enums.CtrlIntention; import l2r.gameserver.model.Location; import l2r.gameserver.model.actor.L2Npc; import l2r.gameserver.model.quest.Quest; import l2r.gameserver.network.clientpackets.Say2; import l2r.gameserver.network.serverpackets.NpcSay; public class NFWalkerAI extends Quest { private static final int WALKER_NPC_ID = 20116; private final Map<String, Route> routes = new HashMap<>(); private final Map<Integer, Integer> npcIndexes = new HashMap<>(); private final Map<Integer, Boolean> npcReverse = new HashMap<>(); private final Map<Integer, String> npcCurrentRoute = new HashMap<>(); public NFWalkerAI() { super(-1, NFWalkerAI.class.getSimpleName(), "ai/npc/NFWalker"); loadRoutes(); addSpawnId(WALKER_NPC_ID); } private void loadRoutes() { // Route 1 Data Route route1 = new Route("route1"); route1.addPoint(new RoutePoint(0, 149363, 172341, -941, 0, false, "")); route1.addPoint(new RoutePoint(1, 148568, 172328, -980, 5, true, "Puff")); route1.addPoint(new RoutePoint(2, 148536, 172792, -980, 0, false, "")); // Route 2 Data Route route2 = new Route("route2"); route2.addPoint(new RoutePoint(0, 149363, 172341, -941, 0, false, "")); route2.addPoint(new RoutePoint(1, 150248, 172328, -980, 5, true, "Rise my children! Bring me the servants of the god! Let them be offered to our god Bifrons!")); route2.addPoint(new RoutePoint(2, 150248, 172776, -980, 0, false, "")); // Add routes to the map routes.put("route1", route1); routes.put("route2", route2); } @Override public String onSpawn(L2Npc npc) { if (npc.getId() == WALKER_NPC_ID) { selectInitialRouteForNpc(npc); } return super.onSpawn(npc); } @Override public String onAdvEvent(String event, L2Npc npc, l2r.gameserver.model.actor.instance.L2PcInstance player) { if (event.equalsIgnoreCase("move")) { moveNpc(npc); } else if (event.equalsIgnoreCase("check_reached")) { checkIfReached(npc); } return null; } private void moveNpc(L2Npc npc) { String routeName = npcCurrentRoute.get(npc.getObjectId()); Route route = routes.get(routeName); Integer pointIndex = npcIndexes.get(npc.getObjectId()); if (route != null && pointIndex != null) { RoutePoint point = route.getPoints().get(pointIndex); if (point.isRun()) { npc.setRunning(); } else { npc.setWalking(); } if (!point.getChat().isEmpty()) { npc.broadcastPacket(new NpcSay(npc.getObjectId(), Say2.NPC_ALL, npc.getId(), point.getChat())); } npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, new Location(point.getX(), point.getY(), point.getZ())); // Log movement intention System.out.println("NPC " + npc.getObjectId() + " moving to " + point.getX() + ", " + point.getY() + ", " + point.getZ()); // Schedule a check to see if the NPC has reached its destination startQuestTimer("check_reached", 1000, npc, null); } } private void checkIfReached(L2Npc npc) { String routeName = npcCurrentRoute.get(npc.getObjectId()); Route route = routes.get(routeName); Integer pointIndex = npcIndexes.get(npc.getObjectId()); if (route != null && pointIndex != null) { RoutePoint point = route.getPoints().get(pointIndex); Location currentLocation = npc.getLocation(); Location targetLocation = new Location(point.getX(), point.getY(), point.getZ()); // Check if the NPC has reached the target location if (currentLocation.equals(targetLocation)) { // Log that the NPC has reached the target System.out.println("NPC " + npc.getObjectId() + " reached target " + targetLocation); // Schedule the next movement startQuestTimer("move", point.getDelay() * 1000, npc, null); if (!npcReverse.get(npc.getObjectId())) { pointIndex++; if (pointIndex >= route.getPoints().size()) { npcReverse.put(npc.getObjectId(), true); pointIndex = route.getPoints().size() - 1; } } else { pointIndex--; if (pointIndex < 0) { npcReverse.put(npc.getObjectId(), false); pointIndex = 0; // Choose a new route after completing the current one in both directions switchRouteForNpc(npc); return; } } npcIndexes.put(npc.getObjectId(), pointIndex); } else { // Check again after 1 second startQuestTimer("check_reached", 1000, npc, null); } } } private void selectInitialRouteForNpc(L2Npc npc) { // Randomly select either route1 or route2 String selectedRouteName = "route" + (new Random().nextInt(2) + 1); npcCurrentRoute.put(npc.getObjectId(), selectedRouteName); npcIndexes.put(npc.getObjectId(), 0); npcReverse.put(npc.getObjectId(), false); startQuestTimer("move", 5000, npc, null); // Log initial route selection System.out.println("NPC " + npc.getObjectId() + " selected initial route " + selectedRouteName); } private void switchRouteForNpc(L2Npc npc) { String currentRoute = npcCurrentRoute.get(npc.getObjectId()); String newRoute = currentRoute.equals("route1") ? "route2" : "route1"; npcCurrentRoute.put(npc.getObjectId(), newRoute); npcIndexes.put(npc.getObjectId(), 0); npcReverse.put(npc.getObjectId(), false); startQuestTimer("move", 5000, npc, null); // Log route switching System.out.println("NPC " + npc.getObjectId() + " switched to route " + newRoute); } private static class Route { private List<RoutePoint> points = new ArrayList<>(); public Route(String name) { } public void addPoint(RoutePoint point) { points.add(point); } public List<RoutePoint> getPoints() { return points; } } private static class RoutePoint { private int id; private int x, y, z, delay; private boolean run; private String chat; public RoutePoint(int id, int x, int y, int z, int delay, boolean run, String chat) { this.id = id; this.x = x; this.y = y; this.z = z; this.delay = delay; this.run = run; this.chat = chat; } public int getId() { return id; } public int getX() { return x; } public int getY() { return y; } public int getZ() { return z; } public int getDelay() { return delay; } public boolean isRun() { return run; } public String getChat() { return chat; } } } I looking for help, with this, the npc not start to move. Im trying to create, an NPC wich have multiple walk routes basic logic is  random pick a route complite the route  like Route 1 start form zero (0 -> 1 -> 2(or more) -> 1 -> 0) When the npc return to 0, the script should pic the other route and start again.  And if there is a message like point 1 here     "route1.addPoint(new RoutePoint(1, 148568, 172328, -980, 5, true, "Puff"));" The npc should display the chat message. Currently my problem is the npc not moving, but if I manage it to start moving its randomly move between the route 1 and 2 set of coordinates. Currently for me its  a nightmare. I hope anyone can help somhow.
    • We are certainly not an ambulance, but we will definitely cure you of blacklists and empty pockets. Live freely with SX! Each of you will receive a trial version of SX to familiarize yourself with the product, all you have to do is post in this thread
    • qual e o valor pra atualizar o java da soucer ?
    • qual e o valor pra atualizar o java ?
  • Topics

×
×
  • Create New...