Jump to content

Recommended Posts

Posted

To add a reward for Lord's Castle :

 

go java\com\l2jserver\gameserver\model\actor\instance\L2CastleChamberlainInstance.java

 

Go to line 1224, uou should see something like this

 

if (player.isClanLeader())
			{
				if (player.getInventory().getItemByItemId(6841) == null)
				{
					L2ItemInstance crown = player.getInventory().addItem("Castle Crown", 6841, 1, player, this);

					SystemMessage ms = new SystemMessage(SystemMessageId.EARNED_ITEM);
					ms.addItemName(crown);
					player.sendPacket(ms);

					html.setFile(player.getHtmlPrefix(), "data/html/chamberlain/chamberlain-gavecrown.htm");
					html.replace("%CharName%", String.valueOf(player.getName()));
					html.replace("%FeudName%", String.valueOf(getCastle().getName()));
				}						
				else
					html.setFile(player.getHtmlPrefix(), "data/html/chamberlain/chamberlain-hascrown.htm");
			}

 

After

						html.setFile(player.getHtmlPrefix(), "data/html/chamberlain/chamberlain-gavecrown.htm");
					html.replace("%CharName%", String.valueOf(player.getName()));
					html.replace("%FeudName%", String.valueOf(getCastle().getName()));
				}

 

Add :

					if (player.getInventory().getItemByItemId(item_id) == null)
				{
					L2ItemInstance crown = player.getInventory().addItem("Castle Crown", item_id, item_amount, player, this);

					SystemMessage ms = new SystemMessage(SystemMessageId.EARNED_ITEM);
					ms.addItemName(crown);
					player.sendPacket(ms);

					html.setFile(player.getHtmlPrefix(), "data/html/chamberlain/chamberlain-gavecrown.htm");
					html.replace("%CharName%", String.valueOf(player.getName()));
					html.replace("%FeudName%", String.valueOf(getCastle().getName()));
				}

 

After You should see something like this :

				if (player.isClanLeader())
			{
				if (player.getInventory().getItemByItemId(6841) == null)
				{
					L2ItemInstance crown = player.getInventory().addItem("Castle Crown", 6841, 1, player, this);

					SystemMessage ms = new SystemMessage(SystemMessageId.EARNED_ITEM);
					ms.addItemName(crown);
					player.sendPacket(ms);

					html.setFile(player.getHtmlPrefix(), "data/html/chamberlain/chamberlain-gavecrown.htm");
					html.replace("%CharName%", String.valueOf(player.getName()));
					html.replace("%FeudName%", String.valueOf(getCastle().getName()));
				}
				if (player.getInventory().getItemByItemId(item_id) == null)
				{
					L2ItemInstance crown = player.getInventory().addItem("Castle Crown", item_id, item_amount, player, this);

					SystemMessage ms = new SystemMessage(SystemMessageId.EARNED_ITEM);
					ms.addItemName(crown);
					player.sendPacket(ms);

					html.setFile(player.getHtmlPrefix(), "data/html/chamberlain/chamberlain-gavecrown.htm");
					html.replace("%CharName%", String.valueOf(player.getName()));
					html.replace("%FeudName%", String.valueOf(getCastle().getName()));
				}					
				else
					html.setFile(player.getHtmlPrefix(), "data/html/chamberlain/chamberlain-hascrown.htm");
			}

 

After go data\html\chamberlain\chamberlain-gavecrown.htm :

<html><body>
%CharName%, Castle Lord!<br>
The crown is %FeudName%, a symbol of the castle lord's authority.<br>
+And item_id, symbols of the power of a war lord's.<br>
Guard it with your life!<br>

</body></html>

 

Then data\html\chamberlain\chamberlain-hascrown.htm

<html><body>
The castle lord already has the crown or item_id.
</body></html>

 

Choose an item and replace item_id and item_amount. When the Lord's Castle will receive The Lord's Crown he will receive your item.

Have fun =)

Sorry for my bad english ;)

 

Posted

everything is much easier

Config:

OwnedItemId = 57
OwnedItemCount = 100

Config.java:

public static int Owned_Item_Id;
public static int Owned_Item_Count;
Owned_Item_Id         = Integer.parseInt(l2jfrozen.getProperty("OwnedItemId", "57"));
Owned_Item_Count      = Integer.parseInt(l2jfrozen.getProperty("OwnedItemCount", "100"));

Siege.java:

// Remove all spawned siege guard from this castle
		_siegeGuardManager.unspawnSiegeGuard();

           if(getCastle().getOwnerId() > 0)
           {
              
               L2PcInstance leader = null;
               try
               {
                   leader = ClanTable.getInstance().getClan(getCastle().getOwnerId()).getLeader().getPlayerInstance();
               }
               catch (ClanNotFoundException e)
               {
                   e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
               }
               leader.addItem("ItameName", Config.Owned_Item_Id, Config.Owned_Item_Count, leader, false);
 	        leader.getInventory().updateDatabase();
           _siegeGuardManager.removeMercs();
           }

		getCastle().spawnDoor();
		getCastle().getZone().updateZoneStatusForCharactersInside();

 

Posted

ever heard of .diff file? ? ?

(eclipse, team, create patch)

 

 

thanks, easy to do but since noone has done it before, thanks.

you can't do it.
Posted

you can't do it.

hah. you mean i don't know how to create diffs? just editing or creating .java files in eclipse and then team create patch, and save to desktop ass a .diff file is so difficult to do?

Posted

hah. you mean i don't know how to create diffs? just editing or creating .java files in eclipse and then team create patch, and save to desktop ass a .diff file is so difficult to do?

i mean to create the code.
Posted

i mean to create the code.

loled. i know how to add a simple code that will add an item to players inventory lol. anyway, i am not here to spam this guy's topic with everything that comes in your mind. :S

Posted

ever heard of .diff file? ? ?

(eclipse, team, create patch)

 

 

My share is very easy so i didn't create diff ^^ It's just for personns who want add an item for lord's castle, it's quickly and easy.

And if i use the Chamberlain, it's to use a better reward system. I prefer use the Chamberlain instead of spawn item in inventory ;)

Posted

you can't do it.

hah. you mean i don't know how to create diffs? just editing or creating .java files in eclipse and then team create patch, and save to desktop ass a .diff file is so difficult to do?

i mean to create the code.

loled. i know how to add a simple code that will add an item to players inventory lol. anyway, i am not here to spam this guy's topic with everything that comes in your mind. :S

 

loled...everyone whit minimal knowledge can create a 2 liner code to add smth to the inventory.

 

anyway i dont see it usefully in my oppinion

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
Reply to this topic...

×   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

    • We are excited to announce the open beta testing of the Fulgrim x4 server, starting November 29th, 2024, at 19:00 server time (19:00 по МСК). There will be an NPC available on the test server from whom you can purchase items, gain levels, professions, and other services.   More information at our >Forum
    • Server mid rate craft PvP   CLIENTE INTERLUDE Website server Discord olympus x25 &nbsp;server 🇧🇷🇦🇷🇨🇱🇬🇷🇲🇽🇵🇪🇸🇰🇪🇸🇺🇾 Server mid rate craft PvP 🔱CLIENTE INTERLUDE🔱 🔅xpx25 🔅Sp x25 🔅Adena x15 🔅Droop x2 🔅Spoil x2 🔅Raidboss xp x2 🔅Raidboss sp x2 🔅Raidboss droop x1 🔅All Rate quest reward  x1 ⚠️All Quest drop reward. x1 🔅Manor x 3 🔅Seal stone x1 🛡️🗡️INFO GRADO S🗡️🛡️ ⚠️Inicia desabilitado drop/spoil/quest. 🔱PROFESIONES/SUBCLASS🔱 🛡️1st profession - 50medal 🛡️2nd profession - 500 medal 🛡️3rd profession - 1k medal +30kk adena 🛡️Sub class - Quest. No necesita matar raids. ⚙️Configuraciones⚙️ 🛡️Gmshop  grade - B. 🛡️Grade A-S Craft - yes x1 chance 🛡️Globlal teleport - yes 🛡️Buffer 1hora. 🛡️Buffer slot 24(+4divine)+12 dances-song 🛡️Auto learn skils - yes 🛡️Autoloot - yes 🛡️Mana potion recarga 1000 ,9segundos delay. 🛡️Champions system:     ▫️lvl 30 - 76     ▫️chance respawn 0.5%.     ▫️adena x20 🛡️Max lvl party 14 lvl. 🛡️Festive sweeper on. 🛡️Max client pc 2. 🛡️Raid boss respawn retail. 🛡️Nobleza quest - yes. 🛡️Barakiel respawn 6 horas + -30 min. 🛡️Olimpiada duracion 14 dias. 🛡️Olimpiada de 18:00 a 00:00 🛡️Safe enchant +3 🛡️Normal enchant scroll 50% ⚠️+11-16 chance 30% 🛡️Bleesed enchant scroll 55% ⚠️+11-16 chance 35% 🛡️Rate dinamico x1 lvl 77-80   🛡️🗡️CLANES INFO🗡️🛡️ 🔅Crear clan min. level 20 🔅Max Alianzas 1 🔅Duracion penalidades clan / alianzas 8 horas. 🔅Cambio de lider 24 horas. 🛡️⚔️ ASEDIOS ⚔️🛡️ 🔅Cada 2 semanas. 🔅Proteccion hwid 1 pc. 🔅Clanes registrados. acceden a zona de asedio. 🔅Castillo asediable Aden. 🔅Reward 1000 FA 🔅Horario 16:00 GMT-3 🎊PACK DE INICIO🎊 🔅Start set - armor\weapon no grade. 🔅Level 20  - 5 shadow cuppon grado D 🔅Level 40 - 5 shadow cuppon grado C 🔅Free Autofarm 24 horas. 💰 INFO PREMIUM 💰 🔅Free autofarm. 🔅xp x30 🔅sp x30 🔅adena x17 🔅drop x4 🔅spoil x4 🔅enchant +2% 🔅seal stone x1 🔅Altb Gk-Gmshop/buffe ⚔️ RAID  BOSS INFO ⚔️ 🔅Raid boss 70 ++ respawn 5 días despues. 🔅Raid boss 75 ++ respawn 15 días despues 🔅Drop LETTER L2DAY para tradear en GMshop. ⚔️ INFO SEVEN SING ⚔️ 🔅Inicio del drop Seal stones dia 5 de iniciado el server. 🎊 EPIC RAID INFO 🎊 🔅Queen Ant (lvl 40)respawn Lunes a Viernes 22:00 GMT-3 drop chance 30%. 🔅Core (lvl 80)respawn Martes-miercoles 20:20 GMT-3 drop chance 100%. 🔅Orfen (lvl 80)respawn Martes-miercoles 21:00 GMT-3 drop chance 100%. 🔅Zaken (lvl 80)respawn Jueves 23:00 GMT-3 drop chance 100%. 🔅Frintezza (lvl 80)respawn Viernes 23:00 GMT-3 drop chance 100%. 🔅Baium (lvl 80)respawn Sabado 22:00 GMT-3 drop chance 100%. 🔅Valakas (lvl 80)respawn Domingo 20:00 GMT-3 drop chance 100%. 🔅Antharas (lvl 80)respawn Domingo 22:00 GMT-3 drop chance 100%.
  • Topics

×
×
  • Create New...