Jump to content
  • 0

Spawn Cordenadas Code


Question

Posted
 

Could someone create the code for the char to be born in the same area without changing the respawns?

Example, I hedge an area and in the .properties file I edit the coordinates of when the players die inside it ..

Could someone please do?

Recommended Posts

  • 0
Posted
default:
if (activeChar.getKarma() > 0 && Config.ALT_KARMA_TELEPORT_TO_FLORAN)
{
  loc = new Location(17836, 170178, -3507);// Floran Village
  break;
}
if (activeChar.isInsideZone(L2Character.ZONE_FLAG))
{
  Location[] flagLocations =
  {
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3)
   };
   loc = flagLocations[Rnd.get(5)];
   break;
}
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);
break;
}

Replace L2Character.ZONE_FLAG with the correct field name of the flag zone. (Just go to L2Character and see how FlagZone is named).

 

Or

write into the parenthesis L2Character. and press control + Space to see available zones.

  • 0
Posted

To make this straight, you want the following:

 

I die into flagzone, i click "To Village" and i respawn again into flag zone?

  • 0
Posted (edited)

To make this straight, you want the following:

 

I die into flagzone, i click "To Village" and i respawn again into flag zone?

Yes man,  again into flag zone.

Edited by nortim
  • 0
Posted (edited)

You could tell us what pack are you using...

 

RequestRestartPoint.java

 

find the line for the loc when pressing to vilage and add a check if is inside your zone and change the XYZ

				if (_player.isInsideZone(ZoneId.FLAG))
					loc = new Location(1,2,3);
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);

You can add also random spawns 

				if (_player.isInsideZone(ZoneId.FLAG))
				{
					Location[] flagLocations =
					{
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3)
					};
					loc = flagLocations[Rnd.get(5)];
				}
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);
Edited by melron
  • 0
Posted

 

You could tell us what pack are you using...

 

RequestRestartPoint.java

 

find the line for the loc when pressing to vilage and add a check if is inside your zone and change the XYZ

				if (_player.isInsideZone(ZoneId.FLAG))
					loc = new Location(1,2,3);
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);

You can add also random spawns 

				if (_player.isInsideZone(ZoneId.PVP))
				{
					Location[] flagLocations =
					{
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3)
					};
					loc = flagLocations[Rnd.get(5)];
				}
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);

I using jfrozen.

  • 0
Posted

 

You could tell us what pack are you using...

 

RequestRestartPoint.java

 

find the line for the loc when pressing to vilage and add a check if is inside your zone and change the XYZ

				if (_player.isInsideZone(ZoneId.FLAG))
					loc = new Location(1,2,3);
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);

You can add also random spawns 

				if (_player.isInsideZone(ZoneId.FLAG))
				{
					Location[] flagLocations =
					{
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3),
						new Location(1,2,3)
					};
					loc = flagLocations[Rnd.get(5)];
				}
				else
					loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.TOWN);
 
Could you tell me where to add and the line references?
  • 0
Posted

 

 
Could you tell me where to add and the line references?

 

Post here requestrestartpoint.java and we will make it for you. However, dont wait everything ready from us, you should try to do them by yourself...Especially when melron explained you exactly how u could do it.

  • 0
Posted (edited)

i im not using frozen but it should be in clientpackets with name RequestRestartPoint.java

 

search something similar to

loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.Town);

Edit:

 

its in line 210..

Edited by melron
  • 0
Posted (edited)

i im not using frozen but it should be in clientpackets with name RequestRestartPoint.java

 

search something similar to

loc = MapRegionTable.getInstance().getLocationToTeleport(_player, TeleportType.Town);

Edit:

 

its in line 210..

 

Sorry for the lack of wisdom, I'm starting now, and thank you very much for the attention! I'm going to study java from now on.

I am adding but I am with the following error (from the photo), I will post my request restart and if possible show me how to add.

20qci89.png

 

 

/*

 * L2jProject x - www.l2jprojectx.com 
 * 
 * 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 2, 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 *
 */
package net.l2jpx.gameserver.network.clientpackets;
 
import org.apache.log4j.Logger;
 
import net.l2jpx.Config;
import net.l2jpx.gameserver.datatables.xml.MapRegionData;
import net.l2jpx.gameserver.managers.CastleManager;
import net.l2jpx.gameserver.managers.ClanHallManager;
import net.l2jpx.gameserver.managers.FortManager;
import net.l2jpx.gameserver.model.L2SiegeClan;
import net.l2jpx.gameserver.model.Location;
import net.l2jpx.gameserver.model.actor.instance.L2PcInstance;
import net.l2jpx.gameserver.model.entity.ClanHall;
import net.l2jpx.gameserver.model.entity.event.CTF;
import net.l2jpx.gameserver.model.entity.event.DM;
import net.l2jpx.gameserver.model.entity.event.TvT;
import net.l2jpx.gameserver.model.entity.siege.Castle;
import net.l2jpx.gameserver.model.entity.siege.Fort;
import net.l2jpx.gameserver.network.serverpackets.Revive;
import net.l2jpx.gameserver.thread.ThreadPoolManager;
import net.l2jpx.gameserver.util.IllegalPlayerAction;
import net.l2jpx.gameserver.util.Util;
 
/**
 * @author programmos
 */
public final class RequestRestartPoint extends L2GameClientPacket
{
private static Logger LOGGER = Logger.getLogger(RequestRestartPoint.class);
 
protected int _requestedPointType;
protected boolean _continuation;
 
@Override
protected void readImpl()
{
_requestedPointType = readD();
}
 
class DeathTask implements Runnable
{
L2PcInstance activeChar;
 
DeathTask(final L2PcInstance _activeChar)
{
activeChar = _activeChar;
}
 
@Override
public void run()
{
if ((activeChar._inEventTvT && TvT.is_started()) || (activeChar._inEventDM && DM.is_started()) || (activeChar._inEventCTF && CTF.is_started()))
{
activeChar.sendMessage("You can't restart in Event!");
return;
}
try
{
Location loc = null;
Castle castle = null;
Fort fort = null;
 
if (activeChar.isInJail())
{
_requestedPointType = 27;
}
else if (activeChar.isFestivalParticipant())
{
_requestedPointType = 4;
}
 
if (activeChar.isPhoenixBlessed())
activeChar.stopPhoenixBlessing(null);
 
switch (_requestedPointType)
{
case 1: // to clanhall
 
if (activeChar.getClan() != null)
{
 
if (activeChar.getClan().getHasHideout() == 0)
{
// cheater
activeChar.sendMessage("You may not use this respawn point!");
Util.handleIllegalPlayerAction(activeChar, "Player " + activeChar.getName() + " used respawn cheat.", IllegalPlayerAction.PUNISH_KICK);
return;
}
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.ClanHall);
 
if (ClanHallManager.getInstance().getClanHallByOwner(activeChar.getClan()) != null && ClanHallManager.getInstance().getClanHallByOwner(activeChar.getClan()).getFunction(ClanHall.FUNC_RESTORE_EXP) != null)
{
activeChar.restoreExp(ClanHallManager.getInstance().getClanHallByOwner(activeChar.getClan()).getFunction(ClanHall.FUNC_RESTORE_EXP).getLvl());
}
 
break;
}
 
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);
break;
case 2: // to castle
Boolean isInDefense = false;
castle = CastleManager.getInstance().getCastle(activeChar);
fort = FortManager.getInstance().getFort(activeChar);
MapRegionData.TeleportWhereType teleportWhere = MapRegionData.TeleportWhereType.Town;
 
if (castle != null && castle.getSiege().getIsInProgress())
{
// siege in progress
if (castle.getSiege().checkIsDefender(activeChar.getClan()))
{
isInDefense = true;
}
}
 
if (fort != null && fort.getSiege().getIsInProgress())
{
// siege in progress
if (fort.getSiege().checkIsDefender(activeChar.getClan()))
{
isInDefense = true;
}
}
 
if (activeChar.getClan().getHasCastle() == 0 && activeChar.getClan().getHasFort() == 0 && !isInDefense)
{
// cheater
activeChar.sendMessage("You may not use this respawn point!");
Util.handleIllegalPlayerAction(activeChar, "Player " + activeChar.getName() + " used respawn cheat.", IllegalPlayerAction.PUNISH_KICK);
return;
}
 
if (CastleManager.getInstance().getCastleByOwner(activeChar.getClan()) != null)
teleportWhere = MapRegionData.TeleportWhereType.Castle;
else if (FortManager.getInstance().getFortByOwner(activeChar.getClan()) != null)
teleportWhere = MapRegionData.TeleportWhereType.Fortress;
 
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, teleportWhere);
break;
 
case 3: // to siege HQ
L2SiegeClan siegeClan = null;
castle = CastleManager.getInstance().getCastle(activeChar);
fort = FortManager.getInstance().getFort(activeChar);
 
if (castle != null && castle.getSiege().getIsInProgress())
{
siegeClan = castle.getSiege().getAttackerClan(activeChar.getClan());
}
else if (fort != null && fort.getSiege().getIsInProgress())
{
siegeClan = fort.getSiege().getAttackerClan(activeChar.getClan());
}
 
if (siegeClan == null || siegeClan.getFlag().size() == 0)
{
// cheater
activeChar.sendMessage("You may not use this respawn point!");
Util.handleIllegalPlayerAction(activeChar, "Player " + activeChar.getName() + " used respawn cheat.", IllegalPlayerAction.PUNISH_KICK);
return;
}
 
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.SiegeFlag);
break;
 
case 4: // Fixed or Player is a festival participant
if (!activeChar.isGM() && !activeChar.isFestivalParticipant())
{
// cheater
activeChar.sendMessage("You may not use this respawn point!");
Util.handleIllegalPlayerAction(activeChar, "Player " + activeChar.getName() + " used respawn cheat.", IllegalPlayerAction.PUNISH_KICK);
return;
}
 
loc = new Location(activeChar.getX(), activeChar.getY(), activeChar.getZ()); // spawn them where they died
break;
 
case 27: // to jail
if (!activeChar.isInJail())
return;
loc = new Location(-114356, -249645, -2984);
break;
 
default:
if (activeChar.getKarma() > 0 && Config.ALT_KARMA_TELEPORT_TO_FLORAN)
{
loc = new Location(17836, 170178, -3507);// Floran Village
break;
}
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);
break;
}
 
// Stand up and teleport, proof dvp video.
activeChar.setIsIn7sDungeon(false);
activeChar.setIsPendingRevive(true);
activeChar.teleToLocation(loc, true);
}
catch (final Throwable e)
{
e.printStackTrace();
// LOGGER.error( "", e);
}
}
}
 
@Override
protected void runImpl()
{
final L2PcInstance activeChar = getClient().getActiveChar();
 
if (activeChar == null)
return;
activeChar.setLastActionMillis(System.currentTimeMillis());
      
if (activeChar.isFakeDeath())
{
activeChar.stopFakeDeath(null);
activeChar.broadcastPacket(new Revive(activeChar));
return;
}
else if (!activeChar.isAlikeDead())
{
LOGGER.warn("Living player [" + activeChar.getName() + "] called RestartPointPacket! Ban this player!");
return;
}
 
final Castle castle = CastleManager.getInstance().getCastle(activeChar.getX(), activeChar.getY(), activeChar.getZ());
if (castle != null && castle.getSiege().getIsInProgress())
{
if (activeChar.getClan() != null && castle.getSiege().checkIsAttacker(activeChar.getClan()))
{
// Schedule respawn delay for attacker
ThreadPoolManager.getInstance().scheduleGeneral(new DeathTask(activeChar), castle.getSiege().getAttackerRespawnDelay());
activeChar.sendMessage("You will be re-spawned in " + castle.getSiege().getAttackerRespawnDelay() / 1000 + " seconds");
return;
}
}
// run immediately (no need to schedule)
new DeathTask(activeChar).run();
}
 
@Override
public String getType()
{
return "[C] 6d RequestRestartPoint";
}
}

Edited by nortim
  • 0
Posted

1st. delete the L2Character _player since is null and take the player with the correct name (maybe activeChar?)

 

2nd i cannot help you in this case cause i dont have frozen sources to check how the functions are written..

  • 0
Posted

@Solomun 

 

add else before 

loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);

cause it will get the 2nd tp anyway :p

  • 0
Posted

@Solomun 

 

add else before 

loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);

cause it will get the 2nd tp anyway :P

 

That's why "break;" stands for? 

  • 0
Posted (edited)

That's why "break;" stands for? 

Oops xD didnt see that ... cause frozen take _requestType in case :P

Edited by melron
  • 0
Posted

You should take some times to learn Java basics, or you will have to ask everytime every single thing. On your previous topic, someone helped you but the answer wasn't even correct, temporary objects created for nothing.

  • 0
Posted
default:
if (activeChar.getKarma() > 0 && Config.ALT_KARMA_TELEPORT_TO_FLORAN)
{
  loc = new Location(17836, 170178, -3507);// Floran Village
  break;
}
if (activeChar.isInsideZone(L2Character.ZONE_FLAG))
{
  Location[] flagLocations =
  {
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3),
   new Location(1,2,3)
   };
   loc = flagLocations[Rnd.get(5)];
   break;
}
loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town);
break;
}

Replace L2Character.ZONE_FLAG with the correct field name of the flag zone. (Just go to L2Character and see how FlagZone is named).

 

Or

write into the parenthesis L2Character. and press control + Space to see available zones.

 

 

1st. delete the L2Character _player since is null and take the player with the correct name (maybe activeChar?)

 

2nd i cannot help you in this case cause i dont have frozen sources to check how the functions are written..

 
I want to thank you sincerely for all my goodwill and patience with me, it worked perfectly! Thank you very much!
 
;D  ;D  ;D  ;D  ;D  ;D  ;D  ;D
Guest
This topic is now closed to further replies.


  • Posts

    • Welcome to L2EpicFail Server developed by gamers for gamers!  OBT - 7th March 2024 at 18:00 GMT+0 GRAND OPENING - 14th March 2025 at 18:00 GMT+0 Website : https://l2epic.fail/ Discord : https://discord.gg/6hwhrkrHBG     Server Features and Rates Xp – 15x Sp – 9x Adena – 6x Drop – 2x Spoil - 2x Seal Stones drop -  3x   Epic Raid Boss drop - 1x Regular RBs - EXP 5x, SP 5x, drop 4x   Quest drop - 1x (some quests customized to 3x) Quest reward - 1x, Adena 3x, EXP 3x, SP 3x     Premium Account Xp +20% Sp +20% Adena +20% Drop +20% Spoil +20% Quest reward +20%   get by vote or donate World chat 20 times/day use ">" in chat. Buff Book outside of town. Applies to all accounts.     Special Features Classic interface ActiveAnticheat Vote System Missions Attendance check And more in information below     Noblesse There are 3 ways how to make noblesse 1 - Retail Quest with killing barakiel 2 - Modifed Quest, choose killing mobs for 100 items instead of barakiel 3 - Can be bought for Epic Coins     Raid Rank Killing regular Raids gives points according to the level of the RB to the clan of the player who killed the boss. At the end of every month, there will be rewards for top clans. For more info, follow our Discord.   monthly period killing RB = points to clan according to RB level rewards up to Valakas Necklace (not the first month) current statistics can be checked online     Epic Bosses & Respawns   Queen Ant 20 - 30 hours respawn window 1 hour always displayed in .epic auto PvP zone (max 43 level) HP boosted drop chance 40% guards, nurses lvl 40   Orfen 20 - 30 hours respawn window 1 hour always displayed in .epic auto PvP zone (max 56 level) HP boosted drop chance 40% earring gives +1 WIT, +1 INT   Core 20 - 30 hours respawn window 1 hour always displayed in .epic auto PvP zone (max 56 level) HP boosted drop chance 40% ring gives +1 STR, +1 DEX   Zaken 44 - 54 hours respawn window 1 hour always displayed in .epic auto PvP zone (max A grade) doors opened only 5 mins HP boosted   Baium Every Sunday 20:30 - 21:30 window 1 hour always displayed in .epic auto PvP zone (13 - 14th ToI level) regular HP   Frintezza Every Monday, Wednesday, Friday 20:00 - 21:00 window 1 hour always displayed in .epic auto PvP zone (all IT entrance) max 5 parties to entry max 500 range from NPC   Antharas Every two weeks on Saturday 21:00 - 22:00 window 1 hour always displayed in .epic auto PvP zone (bridge to heart)   Valakas Every two weeks on Saturday 21:00 - 22:00 window 1 hour always displayed in .epic auto PvP zone (Klein to heart)   every Epic RB drops Epic Medals equal to RB level x 10     Regular Bosses all regular RBs HP boosted M. def boosted a bit to give advantage to fighters all regular RBs respawn 24 - 30 hours every RB drops Epic Medals equal to RB level     Added Skills Mass Sweep - All Bounty Hunters 40+ Block Buff - All Characters, toggle Escape: 20 seconds - All Characters, no more SoEs   Skills autolearn. Losing skills after 16 levels of delevel. Max buffs 24 + 4 with books (no autolearn)     Augments NoGrade - 4% chance MidGrade - 5% chance HighGrade - 7% chance TopGrade - 6% chance   GM shop weapon/armor/jwl (max C grade) shots/spiritshots (max C grade) mana potions (500 MP, 5s)     NPC buffer all buffs, songs, dances including 3rd prof + resists 1 hour duration all chars Buff Book in inventory     Global Gatekeeper all towns including cata/necro ToI 3/5/7/10th     Olympiad Thursday to Saturday 18:00 - 23:50 UTC+0 period 7 days no class participants min 5 base class participants min 10 max enchant +6     Class Transfer 1st class 50k adena 2nd class 500k adena 3rd class 20kk adena + 700 Halisha marks (tradeable)     Noblesse Quest Quest retail like. Moonstone Shards, Demons Blood etc. quest drop boosted     Subclass Quest To get the quest, you have to be 75+ on your main character (start Reorin in Giran) Bring item from Cabrio chest Bring items from Hallate, Kernon and Golkonda chests Bring this back to Reorin Bring 984 B-grade crystals and top B weapon to Reorin Get low A-grade weapon as reward Done , you can take subclass (up to 5) from any Master in town     Clans all clan members get clan skills (no need for titles) max clan slots 65, max ppl in PvP zone 63 leave/dismiss penalty 0 hours max clans in ally 3     Others   max 3 windows per HWID (only one in PvP zone) protection after teleport for 20 seconds arrows and spellbooks drop turned off weight limit 10x, stackable enchants and LS champions blue (5x HP) min level for trade = 40, chat = 20 BoM/MoM spawned in towns Edited November 1, 2024 by NevesOma
    • Im searching to developer to help me 🙂 pm me 🙂
    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchiha.sellpass.io/ Join our server for more products : https://discord.gg/uthciha-services https://campsite.bio/utchihaamkt  
    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchiha.sellpass.io/ Join our server for more products : https://discord.gg/uthciha-services https://campsite.bio/utchihaamkt  
    • 🔥 L2Gold.co x15 Interlude Server 2025 – Grand Opening! 🔥 Join us today and be part of the legendary L2Gold community! 🎉 Grand Opening: 14 March 2025 🎉 ⏰ Time: 21:00 GMT +2 🌍 Server Type: EURO PTS/L2OFF 🌟 Why Play on L2Gold.co? 🌟 ✅ No Wipes – Keep Your Progress Forever! Your characters and progress are permanent. No resets! ✅ Balanced & Fun Gameplay! Experience x15 rates for a smooth and enjoyable progression. ✅ Solo or Party Play Use MP potions and NPC buffers for a great solo experience or team up with friends. ✅ Long-Term Stability Our server is built to last with no interruptions! 📊 Server Rates & Details 📊 Category Rate EXP/SP x15 (Official rate without rune or VIP) Adena x10 (Official rate without rune or VIP) Drop x10 (Official rate without rune or VIP) Spoil x10 (Official rate without rune or VIP) Raid Boss Drop x10 (Official rate without rune or VIP) 🚀 Exciting New Features! 🚀 🎟️ 💰 Weekly Lottery System! – Win rare items, in-game currency, and exclusive rewards! 🎁 More Events & Rewards! – Special in-game activities with exclusive items! 📈 Real-Time Stats! – Track your progress, achievements, and rankings live! ⚔️ New Items Weekly! – Discover rare gear and unique items every week! 🌍 A Growing Global Community 🌍 Players from Greece 🇬🇷, Brazil 🇧🇷, Spain 🇪🇸, and beyond! 🔗 Stay Connected 🔗 Follow us on social media to stay updated! 🌎 Website: L2Gold.co 🎙️ Discord: Server 📘 Facebook: Page | Group 🎥 YouTube:   Watch Videos 🎵 TikTok: Follow Us 🔥 Prepare for Battle! 🔥 📅 The adventure begins on 14 March 2025! Join L2Gold.co and Experience an Unforgettable Adventure! 🎮✨
  • Topics

×
×
  • Create New...