Jump to content

Free help-Requests l2j


Recommended Posts

Hello all,


Since I love to help people if my knowledge can provide the solution, I'm here to help you with your requests/problems about l2j.
I'm usually on for 3-4 hours per day so don't expect fast respond.

  • I'd love to create your idea and give you the code ready but get real, I wont spend hours for just one thing , so don't request something big
  • Feel free to ask any thing you cant understand, blame is not allowed here :)
  • I have no idea for anything related to client side.
  • Atm I'm working on aCis project (feel free to ask something which is related to another project ).

 

Finally,

I want to do this because it will be useful (for some members) but for me too, I'm learning java and I would like to improve my skills so I found it great idea.

 

If this post is in wrong section please a mod move it to the proper one :) Thank you!

 

Edited by SailFpO
Link to comment
Share on other sites

maybe can you help me , how to disable Quiz event on l2jmythras files its shered here 

[15:23:48]  INFO Dress me system: Load 27 Big Sword(s).
[15:23:48]  INFO Dress me system: Load 4 Rod(s).
[15:23:48]  INFO Dress me system: Load 44 Big Blunt(s).
[15:23:48]  INFO Dress me system: Load 20 Crossbow(s).
[15:23:48]  INFO Dress me system: Load 21 Rapier(s).
[15:23:48]  INFO Dress me system: Load 21 Ancient Sword(s).
[15:23:48]  INFO Dress me system: Load 9 Dual Dagger(s).
Loading Quiz.java
[15:23:51]  INFO Loaded Service: ScripsConfig
[15:23:51]  INFO Loaded Service: SellPcService
[15:23:51]  INFO CommunityBoard: Manage Career service loaded.
[15:23:51]  INFO CommunityBoard: Auction System Service loaded.
[15:23:51]  INFO CommunityBoard: service loaded.
[15:23:51]  INFO CommunityBoard: Bosses loaded.
[15:23:51]  INFO CommunityBoard: Clan Community service loaded.
[15:23:51]  INFO CommunityBoard: Drop Calculator service loaded.

im tring to find where i can turn it off but cant. can you help?

Link to comment
Share on other sites

Take a look in your gameserver.java if there exists a line 'Quiz.getinstance()' , if you found it just add // or delete it

p.s. it could be with configs for enable/disable

Edited by SailFpO
Link to comment
Share on other sites

3 hours ago, Benskis said:

Hey, maybe You could share Your buffer's code if You have one. I just hate scheme buffers. 

Well I do not have anything because I'm not planning to open a server :P , you can find infinity buffers here in mxc especially without scheme options

Link to comment
Share on other sites

12 minutes ago, Blood Tears ♡ said:

I need simple npc for l2jacis , I want to be something like this:
it will requre item "X" to get item "Y", and the second option is to buy equipment with item "Y"

There is a donate shop shared you can take it and see how things works reading a code it will be helpful

Link to comment
Share on other sites

Request from: Blood Tears ♡

3 hours ago, Blood Tears ♡ said:

I need simple npc for l2jacis , I want to be something like this:
it will requre item "X" to get item "Y", and the second option is to buy equipment with item "Y"

Let me know if you need configs.

code:

 

Source:

### Eclipse Workspace Patch 1.0
#P aCis_gameserver
Index: java/net/sf/l2j/gameserver/model/actor/instance/Trader.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/Trader.java	(nonexistent)
+++ java/net/sf/l2j/gameserver/model/actor/instance/Trader.java	(working copy)
@@ -0,0 +1,72 @@
+package net.sf.l2j.gameserver.model.actor.instance;
+
+import java.util.StringTokenizer;
+
+import net.sf.l2j.gameserver.model.actor.template.NpcTemplate;
+import net.sf.l2j.gameserver.network.SystemMessageId;
+import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;
+
+public class Trader extends Folk
+{
+	private static final int[] REQUIRE_ITEM_FOR_EX =
+	{
+		3031,	//the item that the user must have to exchange it with the REWARD_ITEM
+		10 		//the count
+	};
+	private static final int[] REWARD_ITEM =
+	{
+		1872,	//the item that will get after the exchange
+		1		//the count
+	};
+	
+	private static final int REQUIRE_EQUIP_ITEM_CNT = 1;	//the count of items that the npc will consume to give the equip item, the id is the REWARD_ITEM[0]
+	private static final int EQUIP_ITEM_ID[] =
+	{
+		7575,	//the equipment item
+		1		//the count
+	};
+
+
+	
+	public Trader(int objectId, NpcTemplate template)
+	{
+		super(objectId, template);
+	}
+	
+	@Override
+	public void onBypassFeedback(Player player, String command)
+	{
+		StringTokenizer st = new StringTokenizer(command, " ");
+		String currentCommand = st.nextToken();
+		
+		if (currentCommand.startsWith("exchange"))
+		{
+			if (!player.destroyItemByItemId("ex", REQUIRE_ITEM_FOR_EX[0], REQUIRE_ITEM_FOR_EX[1], null, true))
+				player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOT_ENOUGH_REQUIRED_ITEMS));
+			else
+				player.addItem("rew", REWARD_ITEM[0], REWARD_ITEM[1], null, true);
+		}
+		else if (currentCommand.startsWith("buy"))
+		{
+			if (!player.destroyItemByItemId("ex", REWARD_ITEM[0], REQUIRE_EQUIP_ITEM_CNT, null, true))
+				player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOT_ENOUGH_REQUIRED_ITEMS));
+			else
+				player.addItem("rew", EQUIP_ITEM_ID[0], EQUIP_ITEM_ID[1], null, true);
+		}
+		
+		super.onBypassFeedback(player, command);
+	}
+	
+	@Override
+	public String getHtmlPath(int npcId, int val)
+	{
+		String filename = "";
+		if (val == 0)
+			filename = "" + npcId;
+		else
+			filename = npcId + "-" + val;
+		
+		return "data/html/mods/Trader/" + filename + ".htm";
+	}
+	
+}
\ No newline at end of file


Npc XML:
### Eclipse Workspace Patch 1.0
#P aCis_datapack
Index: data/xml/npcs/50000-50999.xml
===================================================================
--- data/xml/npcs/50000-50999.xml	(revision 4)
+++ data/xml/npcs/50000-50999.xml	(working copy)
@@ -111,4 +111,42 @@
 			<skill id="4416" level="18"/>
 		</skills>
 	</npc>
+	
+		<npc id="50009" idTemplate="30519" name="Trader" title="Crappy Trader">
+		<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="Trader"/>
+		<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>
 </list>
\ No newline at end of file


Npc HTML:
### Eclipse Workspace Patch 1.0
#P aCis_datapack
Index: data/html/mods/trader/50009.htm
===================================================================
--- data/html/mods/trader/50009.htm	(nonexistent)
+++ data/html/mods/trader/50009.htm	(working copy)
@@ -0,0 +1,8 @@
+<html><body>
+	<center>
+	Your custom staff here.
+	
+	<button value="exchange" action="bypass npc_%objectId%_exchange" height=15 width=45 back="sek.cbui94" fore="sek.cbui92">
+	<button value="buy" action="bypass npc_%objectId%_buy" height=15 width=45 back="sek.cbui94" fore="sek.cbui92">
+	
+</body></html>
\ No newline at end of file


 

 

You have to create a new folder in data/html/mods with name trader and inside create a new html with the npc id as name. (in my case was 50009), then paste the html code

Edited by SailFpO
Link to comment
Share on other sites

1 hour ago, SailFpO said:

Request from: Blood Tears ♡

Let me know if you need configs.

code:

  Reveal hidden contents


Source:

### Eclipse Workspace Patch 1.0
#P aCis_gameserver
Index: java/net/sf/l2j/gameserver/model/actor/instance/Trader.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/Trader.java	(nonexistent)
+++ java/net/sf/l2j/gameserver/model/actor/instance/Trader.java	(working copy)
@@ -0,0 +1,72 @@
+package net.sf.l2j.gameserver.model.actor.instance;
+
+import java.util.StringTokenizer;
+
+import net.sf.l2j.gameserver.model.actor.template.NpcTemplate;
+import net.sf.l2j.gameserver.network.SystemMessageId;
+import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;
+
+public class Trader extends Folk
+{
+	private static final int[] REQUIRE_ITEM_FOR_EX =
+	{
+		3031,	//the item that the user must have to exchange it with the REWARD_ITEM
+		10 		//the count
+	};
+	private static final int[] REWARD_ITEM =
+	{
+		1872,	//the item that will get after the exchange
+		1		//the count
+	};
+	
+	private static final int REQUIRE_EQUIP_ITEM_CNT = 1;	//the count of items that the npc will consume to give the equip item, the id is the REWARD_ITEM[0]
+	private static final int EQUIP_ITEM_ID[] =
+	{
+		7575,	//the equipment item
+		1		//the count
+	};
+
+
+	
+	public Trader(int objectId, NpcTemplate template)
+	{
+		super(objectId, template);
+	}
+	
+	@Override
+	public void onBypassFeedback(Player player, String command)
+	{
+		StringTokenizer st = new StringTokenizer(command, " ");
+		String currentCommand = st.nextToken();
+		
+		if (currentCommand.startsWith("exchange"))
+		{
+			if (!player.destroyItemByItemId("ex", REQUIRE_ITEM_FOR_EX[0], REQUIRE_ITEM_FOR_EX[1], null, true))
+				player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOT_ENOUGH_REQUIRED_ITEMS));
+			else
+				player.addItem("rew", REWARD_ITEM[0], REWARD_ITEM[1], null, true);
+		}
+		else if (currentCommand.startsWith("buy"))
+		{
+			if (!player.destroyItemByItemId("ex", REWARD_ITEM[0], REQUIRE_EQUIP_ITEM_CNT, null, true))
+				player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOT_ENOUGH_REQUIRED_ITEMS));
+			else
+				player.addItem("rew", EQUIP_ITEM_ID[0], EQUIP_ITEM_ID[1], null, true);
+		}
+		
+		super.onBypassFeedback(player, command);
+	}
+	
+	@Override
+	public String getHtmlPath(int npcId, int val)
+	{
+		String filename = "";
+		if (val == 0)
+			filename = "" + npcId;
+		else
+			filename = npcId + "-" + val;
+		
+		return "data/html/mods/Trader/" + filename + ".htm";
+	}
+	
+}
\ No newline at end of file


Npc XML:
### Eclipse Workspace Patch 1.0
#P aCis_datapack
Index: data/xml/npcs/50000-50999.xml
===================================================================
--- data/xml/npcs/50000-50999.xml	(revision 4)
+++ data/xml/npcs/50000-50999.xml	(working copy)
@@ -111,4 +111,42 @@
 			<skill id="4416" level="18"/>
 		</skills>
 	</npc>
+	
+		<npc id="50009" idTemplate="30519" name="Trader" title="Crappy Trader">
+		<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="Trader"/>
+		<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>
 </list>
\ No newline at end of file


Npc HTML:
### Eclipse Workspace Patch 1.0
#P aCis_datapack
Index: data/html/mods/trader/50009.htm
===================================================================
--- data/html/mods/trader/50009.htm	(nonexistent)
+++ data/html/mods/trader/50009.htm	(working copy)
@@ -0,0 +1,8 @@
+<html><body>
+	<center>
+	Your custom staff here.
+	
+	<button value="exchange" action="bypass npc_%objectId%_exchange" height=15 width=45 back="sek.cbui94" fore="sek.cbui92">
+	<button value="buy" action="bypass npc_%objectId%_buy" height=15 width=45 back="sek.cbui94" fore="sek.cbui92">
+	
+</body></html>
\ No newline at end of file


 

 

You have to create a new folder in data/html/mods with name trader and inside create a new html with the npc id as name. (in my case was 50009), then paste the html code

Thank you.

Link to comment
Share on other sites

you can make this 

<button value="exchange" action="bypass npc_%objectId%_exchange" height=15 width=45 back="sek.cbui94" fore="sek.cbui92">

as like this

<button value="exchange" action="bypass npc_%objectId%_exchange $count" height=15 width=45 back="sek.cbui94" fore="sek.cbui92">

for player dont need press all time 1 button with <edit var="$count" width=120 height=15> default conut = 1 if box is space

Link to comment
Share on other sites

6 minutes ago, tazerman2 said:

you can make this 


<button value="exchange" action="bypass npc_%objectId%_exchange" height=15 width=45 back="sek.cbui94" fore="sek.cbui92">

as like this


<button value="exchange" action="bypass npc_%objectId%_exchange $count" height=15 width=45 back="sek.cbui94" fore="sek.cbui92">

for player dont need press all time 1 button with <edit var="$count" width=120 height=15> default conut = 1 if box is space

Well a good code must be secured too, Generally avoid to create codes that uses value from html because this one can be easily bypassed from programs like andrenaline...

Even in buffer case where the bypass is npc_%objectId%_buff 1204 2 can be bypassed to npc_%objectId%_buff 7029 4

and the user will get gm speed lvl 4...

 

p.s Ofc a code like you did with all necessary checks inside can be worked too without any problem but its a huge amount of wasted time :D

 

Ontopic: good job for your time

Edited by melron
Link to comment
Share on other sites

if (!player.destroyItemByItemId("ex", REQUIRE_ITEM_FOR_EX[0], REQUIRE_ITEM_FOR_EX[1], null, true))
    player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOT_ENOUGH_REQUIRED_ITEMS));
else
    player.addItem("rew", REWARD_ITEM[0], REWARD_ITEM[1], null, true);

You could make it like

if (!player.destroyItemByItemId("ex", REQUIRE_ITEM_FOR_EX[0], REQUIRE_ITEM_FOR_EX[1], null, true))
    return;
	player.addItem("rew", REWARD_ITEM[0], REWARD_ITEM[1], null, true);

If destroyItem.. return false, you get the message about incorect item count. With your message, you get it twice.

Edited by SweeTs
Link to comment
Share on other sites

7 hours ago, SweeTs said:

If destroyItem.. return false, you get the message about incorect item count. With your message, you get it twice.

Well, it's not twice :P if you look carefully

the default one inside of destroyitem.... is

if (sendMessage)
	sendPacket(SystemMessageId.NOT_ENOUGH_ITEMS);

which is the message "Incorrect item count." in the player's chat.

the second one (I added) is

SystemMessageId.NOT_ENOUGH_REQUIRED_ITEMS)

which is the message in dialog "You do not have enough required items." :D

I just like the dialog to appear when the player haven't all the required items. (it's just optional)

Link to comment
Share on other sites

  • 3 months later...

Hello SailFpO maybe you can help and tell me how can i make empti scroll thets convert my sp to a full sp scroll and then later can sell to some other player? i meen to make player sell they own sp.

Sory for my english.

Edited by kreis
Link to comment
Share on other sites

1 hour ago, kreis said:

Hello SailFpO maybe you can help and tell me how can i make empti scroll thets convert my sp to a full sp scroll and then later can sell to some other player? i meen to make player sell they own sp.

Sory for my english.

1) You have to create your own item handler

2) You need somewhere to save the value after the server restart. So add one more field in your items table in db to store the sp

3) if you are using acis , at restore() method of class Inventory add one more field in the statement where is loading the informations of items like :

"SELECT object_id, item_id, count, enchant_level, loc, loc_data, custom_type1, custom_type2, mana_left, time, SP FROM items WHERE owner_id=? AND (loc=? OR loc=?) ORDER BY loc_data

4) restoreFromDb() method add one more int 'sp' and handle it. example:

public static ItemInstance restoreFromDb(int ownerId, ResultSet rs)
 	{
 		ItemInstance inst = null;
-		int objectId, item_id, loc_data, enchant_level, custom_type1, custom_type2, manaLeft, count;
+		int objectId, item_id, loc_data, enchant_level, custom_type1, custom_type2, manaLeft, count, sp;
 		long time;
 		ItemLocation loc;
 		try
@@ -878,6 +878,7 @@
 			custom_type2 = rs.getInt("custom_type2");
 			manaLeft = rs.getInt("mana_left");
 			time = rs.getLong("time");
+			sp = rs.getInt("sp");
 		}
 		catch (Exception e)
 		{
@@ -902,6 +903,7 @@
 		inst._locData = loc_data;
 		inst._existsInDb = true;
 		inst._storedInDb = true;
+		inst.setSP(sp, false);
 		
 		// Setup life time for shadow weapons
 		inst._mana = manaLeft;
@@ -1262,4 +1264,41 @@
 		
 		return Integer.compare(item.getObjectId(), getObjectId());
 	}
+	
+	private int SP = 0;
+	
+	public int getSP()
+	{
+		return SP;
+	}
+	
+	public void setSP(int sp, boolean store)
+	{
+		SP = sp;
+		if (store)
+			try (Connection con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement ps = con.prepareStatement("UPDATE items SET sp=? WHERE object_id=?"))
+			{
+				ps.setInt(1, getSP());
+				ps.setInt(2, getObjectId());
+				ps.executeUpdate();
+			}
+			catch (SQLException e)
+			{
+				e.printStackTrace();
+			}
+	}
 
\ No newline at end of file

5) add the above methods and complete your request in your item handler something like that:

	@Override
	public void useItem(Playable playable, ItemInstance item, boolean forceUse)
	{
		if (!(playable instanceof Player))
			return;
		
		Player activeChar = (Player) playable;
		
		if (item.getSP() > 0)
		{
			activeChar.addExpAndSp(0, item.getSP());
			item.setSP(0, true);
			activeChar.destroyItem("SP", item, null, true);
		}
		else if (activeChar.getSp() > 0)
		{
			final int charSP = activeChar.getSp();
			activeChar.removeExpAndSp(0, charSP);
			item.setSP(charSP, true);
			activeChar.sendMessage(charSP + " saved!");
		}
		else
			activeChar.sendMessage("You do not have enough SP!");
	}

 

 

p.s i didnt test it

Edited by melron
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Posts

    • to my store : https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 50.99 $ 2016 Discord Account : 10$ 2017 Discord Account :3.99 $ 2018 Discord Account : 3.50$ 2019 Discord Account : 2.70 $ 2020 Discord Account :1.50$ 2021 Discord Account :0.99$ 2022 Discord Account :0.70$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11 Telegram : https://t.me/ultrastore11 Whatsapp ; +212614849119  to my store : https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 50.99 $ 2016 Discord Account : 10$ 2017 Discord Account :3.99 $ 2018 Discord Account : 3.50$ 2019 Discord Account : 2.70 $ 2020 Discord Account :1.50$ 2021 Discord Account :0.99$ 2022 Discord Account :0.70$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11 Telegram : https://t.me/ultrastore11 Whatsapp ; +212614849119
    • 2 Factor Authentication Code for 100% secure login. Account provided with full information (email, password, dob, gender, etc).
    • ready server for sale, also available for testing with ready and beautiful npc zone pvp with custom 2 epic core orfen lvl2 with all maps ready all quests work at 100% ready comm  board with buffer teleport gm shop service anyone interested send me a pm many more that I forget  Exp/Sp : x30 (Premium: x40)    Adena : x7 (Premium: x10)   Drop : x7 (Premium: 10)   Spoil : x7 (Premium: 10)   Seal Stones : x7 (Premium: 10)   Raid Boss EXP/SP : x10   Raid Boss Drop : x3 (Premium: x5)   Epic Boss Drop : x1 Enchants   Safe Enchant : +3   Max Enchant : +16   Normal Scroll of Enchant Chance : 55%   Blessed Scroll of Enchant Chance : 60% Game Features   GMShop (Max. B-Grade)   Mana Potions (1000 MP, 10 sec Cooldown)   NPC Buffer (Include all buffs, 2h duration)   Auto-learn skills (Except Divine Inspiration)   Global Gatekeeper   Skill Escape: 15 seconds or /unstuck   1st Class Transfer (Free)   2nd Class Transfer (Free)   3rd Class Transfer (700 halisha mark)   Subclass (Items required from Cabrio / Hallate / Kernon / Golkonda + Top B Weapon + 984 Cry B)   Subclass 5 Subclasses + Main (Previous subclasses to level 75 to add new one)   Noblesse (Full Retail Quest)   Buff Slots: 24 (28 with Divine Inspiration LVL 4)   Skill Sweeper Festival added (Scavenger level 36)   Skill Block Buff added   Maximum delevel to keep Skills: 10 Levels   Shift + Click to see Droplist   Global Shout & Trade Chat   Retail Geodata and Pathnodes   Seven Signs Retail   Merchant and Blacksmith of Mammon at towns   Dimensional Rift (Min. 3 people in party to enter - Instance)   Tyrannosaurus drop Top LS with fixed 50% chance   Fast Augmentation System (Using Life Stones from Inventory)   Chance of getting skills (Normal 1%, Mid 3%, High 5%, Top 10%)   Wedding System with 30 seconds teleport to husband/wife Olympiad & Siege   Olympiad circle 14 days. (Maximum Enchant +6)   Olympiads time 18:00 - 00:00 (GMT +3)   Non-class 5 minimum participants to begin   Class based disabled   Siege every week.   To gain the reward you need to keep the Castle 2 times. Clans, Alliances & Limits   Max Clients/PC: 2   Max Clan Members: 36   Alliances allowed (Max 1 Clans)   24H Clan Penalties   Alliance penalty reset at daily restart (3-5 AM)   To bid for a Clan Hall required Clan Level 6 Quests x3   Alliance with the Ketra Orcs   Alliance with the Varka Silenos   War with Ketra Orcs   War with the Varka Silenos   The Finest Food   A Powerful Primeval Creature   Legacy of Insolence   Exploration of Giants Cave Part 1   Exploration of Giants Cave Part 2   Seekers of the Holy Grail   Guardians of the Holy Grail   Hunt of the Golden Ram Mercenary Force   The Zero Hour   Delicious Top Choice Meat   Heart in Search of Power   Rise and Fall of the Elroki Tribe   Yoke of the Past     Renegade Boss (Monday to Friday 20:00)   All Raid Boss 18+1 hours random respawn   Core (Jewel +1 STR +1 DEX) Monday, Wednesday and Friday 20:00 - 21:00 (Maximum level allowed to enter Cruma Tower: 80)   Orfen (Jewel +1 INT +1 WIT) Monday to Friday, 20:00 - 21:00 (Maximum level allowed to enter Sea of Spores: 80)   Ant Queen Monday and Friday 21:00 - 22:00 (Maximum level allowed to enter Ant Nest: 80)   Zaken Monday,Wednesday,Friday 22:00 - 23:00 (Maximum level allowed to enter Devil's Isle: 80)   Frintezza Tuesday, Thursday and Sunday 22:00 – 23:00 (Need CC of 4 party and 7 people in each party min to join the lair, max is 8 party of 9 people each)   Baium (lvl80) Saturday 22:00 – 23:00   Antharas Every 2 Saturdays 22:00 - 23:00 Every 2 Sundays (alternating with Valakas) 22:00 – 23:00   Valakas Every 2 Saturdays 22:00 - 23:00 Every 2 Sundays (alternating with Antharas) 22:00 – 23:00   Subclass Raids (Cabrio, Kernon, Hallate, Golkonda) 18hours + 1 random   Noblesse Raid (Barakiel) 6 hours + 15min random   Varka’s Hero Shadith 8 hours + 30 mins random (4th lvl of alliance with Ketra)   Ketra’s Hero Hekaton 8 hours + 30 mins random (4th lvl of alliance with Varka)   Varka’s Commander Mos 8 hours + 30 mins random (5th lvl of alliance with Ketra)   Ketra’s Commander Tayr 8 hours + 30 mins random (5th lvl of alliance with Varka)
  • 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