Jump to content

Recommended Posts

Posted (edited)

Hello everyone, I would like to share this simple event. A registration npc spawns at a specific time and announces the registration as any event, after that everyone will have a time to register and those that are registered will be taken to a configured location where they will have time to kill the boss that will spawn. Each must achieve a minimum damage to the boss to receive the rewards. There are also two active functions: Last Attacker Reward and Main Damage Dealer reward. Both announced on the boss's death. Enjoy.

 

Code

 

 

 

Edited by ZaunProject
  • Like 2
  • Upvote 1
  • 4 weeks later...
  • 2 months later...
  • 3 weeks later...
  • 5 months later...
Posted (edited)

bro one error that i saw too. i put the event each hour on a test server i mean 10-11-12-13 and etc but for a reason it didnt starts again if  no one register in the previous one.

Edited by thepsolartek
  • 3 months later...
Posted
6 hours ago, Kusaty said:

Does anyone know how to fix these 2 errors?


https://ibb.co/JQjzyfH
https://ibb.co/JsGW7YP
 

L2JFROZEN (Interlude)

Remove completely this part of the code. replace it with simple integers (based on the positon you want to appear the message)

  • 3 months later...
Posted

Config.java

+	public static int BOSS_EVENT_RESPAWN_X;
+	public static int BOSS_EVENT_RESPAWN_Y;
+	public static int BOSS_EVENT_RESPAWN_Z;

+	BOSS_EVENT_RESPAWN_X = Integer.parseInt(conquista.getProperty("BossRespawnX", "83374"));
+	BOSS_EVENT_RESPAWN_Y = Integer.parseInt(conquista.getProperty("BossRespawnY", "148081"));
+	BOSS_EVENT_RESPAWN_Z = Integer.parseInt(conquista.getProperty("BossRespawnZ", "-3407"));

BossEvent.ini

+ # Respawn Personaje
+ BossRespawnX = 83374
+ BossRespawnY = 148081
+ BossRespawnZ = -3407

BossEvent.java

 

	public void teleToTown()
	{
		for (Player p : eventPlayers)
		{
-			p.teleToLocation(new Location(83374, 148081, -3407));
+			p.teleToLocation(new Location(Config.BOSS_EVENT_RESPAWN_X, Config.BOSS_EVENT_RESPAWN_Y, Config.BOSS_EVENT_RESPAWN_Z));
		}
		setState(EventState.INACTIVE);
	}

 

	<npc id="50010" idTemplate="30519" name="JoneeBeats" title="BossEvent Manager">
		<set name="usingServerSideName" val="true"/>
		<set name="usingServerSideTitle" val="true"/>
		<set name="level" val="70"/>
		<set name="radius" val="7"/>
		<set name="height" val="18"/>
		<set name="rHand" val="0"/>
		<set name="lHand" val="0"/>
		<set name="type" val="BossEventNpc"/>
		<set name="exp" val="0"/>
		<set name="sp" val="0"/>
		<set name="hp" val="2444.46819"/>
		<set name="mp" val="1345.8"/>
		<set name="hpRegen" val="7.5"/>
		<set name="mpRegen" val="2.7"/>
		<set name="pAtk" val="688.86373"/>
		<set name="pDef" val="295.91597"/>
		<set name="mAtk" val="470.40463"/>
		<set name="mDef" val="216.53847"/>
		<set name="crit" val="4"/>
		<set name="atkSpd" val="253"/>
		<set name="str" val="40"/>
		<set name="int" val="21"/>
		<set name="dex" val="30"/>
		<set name="wit" val="20"/>
		<set name="con" val="43"/>
		<set name="men" val="20"/>
		<set name="corpseTime" val="7"/>
		<set name="walkSpd" val="50"/>
		<set name="runSpd" val="120"/>
		<set name="dropHerbGroup" val="0"/>
		<ai type="DEFAULT" ssCount="0" ssRate="0" spsCount="0" spsRate="0" aggro="0" canMove="true" seedable="false"/>
		<skills>
			<skill id="4045" level="1"/>
			<skill id="4416" level="18"/>
		</skills>
	</npc>

 

# Id of registration NPC
RegisterNpcID = 50010

 

  • Upvote 1
  • 1 year later...
Posted
On 2/15/2021 at 1:47 AM, ZaunProject said:

Hello everyone, I would like to share this simple event. A registration npc spawns at a specific time and announces the registration as any event, after that everyone will have a time to register and those that are registered will be taken to a configured location where they will have time to kill the boss that will spawn. Each must achieve a minimum damage to the boss to receive the rewards. There are also two active functions: Last Attacker Reward and Main Damage Dealer reward. Both announced on the boss's death. Enjoy.

 

Code

 

 

 

link off

  • 2 months later...
  • 4 months later...
Posted
On 2/15/2021 at 1:47 AM, ZaunProject said:

Hello everyone, I would like to share this simple event. A registration npc spawns at a specific time and announces the registration as any event, after that everyone will have a time to register and those that are registered will be taken to a configured location where they will have time to kill the boss that will spawn. Each must achieve a minimum damage to the boss to receive the rewards. There are also two active functions: Last Attacker Reward and Main Damage Dealer reward. Both announced on the boss's death. Enjoy.

 

Code

 

 

 

Thanks!

  • 5 months later...
Posted
On 6/14/2022 at 3:47 PM, Rumble said:

Config.java

+	public static int BOSS_EVENT_RESPAWN_X;
+	public static int BOSS_EVENT_RESPAWN_Y;
+	public static int BOSS_EVENT_RESPAWN_Z;

+	BOSS_EVENT_RESPAWN_X = Integer.parseInt(conquista.getProperty("BossRespawnX", "83374"));
+	BOSS_EVENT_RESPAWN_Y = Integer.parseInt(conquista.getProperty("BossRespawnY", "148081"));
+	BOSS_EVENT_RESPAWN_Z = Integer.parseInt(conquista.getProperty("BossRespawnZ", "-3407"));

BossEvent.ini

+ # Respawn Personaje
+ BossRespawnX = 83374
+ BossRespawnY = 148081
+ BossRespawnZ = -3407

BossEvent.java

 

	public void teleToTown()
	{
		for (Player p : eventPlayers)
		{
-			p.teleToLocation(new Location(83374, 148081, -3407));
+			p.teleToLocation(new Location(Config.BOSS_EVENT_RESPAWN_X, Config.BOSS_EVENT_RESPAWN_Y, Config.BOSS_EVENT_RESPAWN_Z));
		}
		setState(EventState.INACTIVE);
	}

 

	<npc id="50010" idTemplate="30519" name="JoneeBeats" title="BossEvent Manager">
		<set name="usingServerSideName" val="true"/>
		<set name="usingServerSideTitle" val="true"/>
		<set name="level" val="70"/>
		<set name="radius" val="7"/>
		<set name="height" val="18"/>
		<set name="rHand" val="0"/>
		<set name="lHand" val="0"/>
		<set name="type" val="BossEventNpc"/>
		<set name="exp" val="0"/>
		<set name="sp" val="0"/>
		<set name="hp" val="2444.46819"/>
		<set name="mp" val="1345.8"/>
		<set name="hpRegen" val="7.5"/>
		<set name="mpRegen" val="2.7"/>
		<set name="pAtk" val="688.86373"/>
		<set name="pDef" val="295.91597"/>
		<set name="mAtk" val="470.40463"/>
		<set name="mDef" val="216.53847"/>
		<set name="crit" val="4"/>
		<set name="atkSpd" val="253"/>
		<set name="str" val="40"/>
		<set name="int" val="21"/>
		<set name="dex" val="30"/>
		<set name="wit" val="20"/>
		<set name="con" val="43"/>
		<set name="men" val="20"/>
		<set name="corpseTime" val="7"/>
		<set name="walkSpd" val="50"/>
		<set name="runSpd" val="120"/>
		<set name="dropHerbGroup" val="0"/>
		<ai type="DEFAULT" ssCount="0" ssRate="0" spsCount="0" spsRate="0" aggro="0" canMove="true" seedable="false"/>
		<skills>
			<skill id="4045" level="1"/>
			<skill id="4416" level="18"/>
		</skills>
	</npc>

 

# Id of registration NPC
RegisterNpcID = 50010

 

 

 

 

 

Interrogante:

 

Sirve para l2jfrozen??

 

 

Cada una de esos item es lo que debo editar en los archivos del server?

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

    • Hello community, I’d like to share an improved version of the L2smr editor for StaticMeshes, focused on solving some workflow issues I found in the original tool. CreditsThis project is based on the original acmi/L2smr repository https://github.com/acmi/L2smr , created by acmi, and I updated it to Java 17 with some additional features. Issues in the original L2smr Too many windows: each StaticMesh opened in a new one → cluttered desktop. No search: navigating through hundreds of StaticMeshActors was slow and tedious. Added improvements Flexible views Single Window Mode: reuse one window instead of opening new ones. Multiple Window Mode: still available for those who prefer having several views open simultaneously. Real-time Search Field Instant filtering as you type. Case-insensitive search. “Reset” button to quickly clear the search.     Installation and Execution: Clone the repository: git clone https://github.com/Jeep12/l2smr.git cd l2smr        2.Build the project:   ./gradlew build        3. Run the application:     ./run.bat      Or simply double-click on run.bat.     The run.bat script automatically extracts JavaFX from the included javafx-17.0.2.zip file in the javafx/ directory, sets up the required libraries, and launches the application. You don’t    need to install JavaFX separately.      Repository: https://github.com/Jeep12/l2smr     Maybe these features already existed in another version or fork, and they might not be very big changes, but since I didn’t know about them and found them necessary, I decided to          implement them myself and wanted to share them.      
    • no....Mobius L2Clientdat and L2FileEditor can do that...but still cant works with TaiWanese Grand Crusade ,especially Armorgrp.dat and Armorgrp-Classic.dat
    • L2GOLD - Halcyon x45 Project Classic Interlude   C6 - Classic Interlude: Protocol 110     Is a complete copy of L2Gold in Classic [110 Protocol] with L2OFF files.   Fully L2Gold Features - Daily Quest - Daily Mining Quest - Ancient Weapons -Refine System  -Rebirth System -Fully configurable everything you want -Gold stats/Gold skills/Gold items working 100% -Zones 100% alike  -Unique donations system (npc or voicedcommand .donate) - On Enchant success announcement ( if +16 for weapon, 8 for armor , 7 for jewel) - Announce of Castle Lord - Announce of Hero  - Olympiad Max A grade - Olympiad Buffs on matches changed to Gold Alike - Working fully Dreadbane   - AI Mods: Static Time for RB   Automated Events: Squash Watermelon RB Event High rate  (those are fully automated)   Server is running a Test Server: Online to anyone can test it.   Game Client: https://www.mediafire.com/file/1d8xe18rvgi04lx/L2_Classic_Interlude_Client_V2.rar/file   Game Patch: https://www.mediafire.com/file/3z4b8ezy93h2z1g/L2Halcyon+Gold+Patch.rar/file   GM Accounts: ID: root pass root [ accounts go from  root1 until root20 ]   Regular Accounts Registrations: http://84.247.164.27/?page=register   Some Screenshots: https://imgur.com/a/o7TxzTN   Contact me here via PM (only serious buyers).    Price of the product: Fully Server Pack + Source ( 250 Euros )
    • ✨ A Service with Vibes  Vibe SMS ✨   Vibe SMS is not just a platform for working with numbers. We’ve built it to be simple, convenient, and stress-free, so your tasks get done without hassle. We value real communication: we listen to your ideas, provide support, and make sure everyone feels calm and confident. With us, you’re not just a client  you’re part of a space built on trust, support, and a human touch. Vibe SMS is a place where people matter and where we create an atmosphere you’ll want to stay in.   Website link — https://vibe-sms.net/ Our Telegram channel — https://t.me/vibe_sms
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock