Jump to content

Siege Date at Enter


Recommended Posts

Some people are trying to sell shared stuff but there it is for free even if they sell it for like 5/10 € still waste of money 

 

971113886483afed02a19ba644d89c76.png

 

 

Index: aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java
--- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java	(revision 33bdb515614e31c09ae565ef3c2bec0cd9c1fb08)
+++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java	(date 1623023055776)
@@ -3,15 +3,7 @@
 import java.sql.Connection;
 import java.sql.PreparedStatement;
 import java.sql.ResultSet;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collection;
-import java.util.Comparator;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Optional;
-import java.util.Set;
+import java.util.*;
 import java.util.concurrent.ConcurrentHashMap;
 import java.util.concurrent.ConcurrentSkipListMap;
 import java.util.concurrent.Future;
@@ -6122,7 +6114,47 @@
 	{
 		return _subclassLock.isLocked();
 	}
-	
+
+
+    /**
+     * Send siege info for this player after logging in into the world.
+     */
+	private void sendSiegeInfo(){
+        for (Castle castle : CastleManager.getInstance().getCastles()) {
+            sendMessage(String.format("Castle : %s will have its siege on: %s", getCastleName(castle.getCastleId()), castle.getSiegeDate().getTime()));
+        }
+    }
+
+    /**
+     * Get Name for castle id
+     * @param id id of the castle
+     * @return return the right name for the requested name
+     */
+    private String getCastleName(int id){
+	    switch(id){
+            case 1:
+                return "Gludio";
+            case 2:
+                return "Dion";
+            case 3:
+                return "Giran";
+            case 4:
+                return "Oren";
+            case 5:
+                return "Aden";
+            case 6:
+                return "Innadril";
+            case 7:
+                return "Goddard";
+            case 8:
+                return "Rune";
+            case 9:
+                return "Schuttgart";
+            default: return "Not found";
+        }
+    }
+
+
 	public void onPlayerEnter()
 	{
 		if (isCursedWeaponEquipped())
@@ -6182,6 +6214,8 @@
                 whItem.scheduleLifeTimeTask();
             }
         }
+        //Send siege info
+        sendSiegeInfo();
 	}
 	
 	public long getLastAccess()

 

  • Like 3
  • Haha 1
  • Upvote 1
Link to comment
Share on other sites

Just now, Dragic said:

Damn it ,there is people who buying this stuff ? 😄

I don't know if there's people who's buying stuff like that but I know some people who sell 😄😁

  • Haha 1
Link to comment
Share on other sites

The fact that they are selling all these kind of features, it makes me believe, that they didn't even code them by themselves. They probably bought a code for 3 euros and then trying to re-sell them for x3. 

Link to comment
Share on other sites

Me: 3 Days on making smart AI codes. 

Clients: Can i buy this for 10 euro?

 

A random guy making 1 line code:

Clients: TAKE ALL MY MONEY!!

 

Dat.

  • Like 1
  • Haha 1
  • Sad 1
Link to comment
Share on other sites

getCastleName() method can be removed as you can get it directly from castle var.

 

+	private void sendSiegeInfo(){
+        for (Castle castle : CastleManager.getInstance().getCastles()) {
+            sendMessage(String.format("%s Castle will have its siege on: %s", castle.getName(), castle.getSiegeDate().getTime()));
+        }
+    }
Link to comment
Share on other sites

On 6/8/2021 at 3:43 PM, Celestine said:

Some people are trying to sell shared stuff but there it is for free even if they sell it for like 5/10 € still waste of money 

 

971113886483afed02a19ba644d89c76.png

 

 



Index: aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java
--- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java	(revision 33bdb515614e31c09ae565ef3c2bec0cd9c1fb08)
+++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java	(date 1623023055776)
@@ -3,15 +3,7 @@
 import java.sql.Connection;
 import java.sql.PreparedStatement;
 import java.sql.ResultSet;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collection;
-import java.util.Comparator;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Optional;
-import java.util.Set;
+import java.util.*;
 import java.util.concurrent.ConcurrentHashMap;
 import java.util.concurrent.ConcurrentSkipListMap;
 import java.util.concurrent.Future;
@@ -6122,7 +6114,47 @@
 	{
 		return _subclassLock.isLocked();
 	}
-	
+
+
+    /**
+     * Send siege info for this player after logging in into the world.
+     */
+	private void sendSiegeInfo(){
+        for (Castle castle : CastleManager.getInstance().getCastles()) {
+            sendMessage(String.format("Castle : %s will have its siege on: %s", getCastleName(castle.getCastleId()), castle.getSiegeDate().getTime()));
+        }
+    }
+
+    /**
+     * Get Name for castle id
+     * @param id id of the castle
+     * @return return the right name for the requested name
+     */
+    private String getCastleName(int id){
+	    switch(id){
+            case 1:
+                return "Gludio";
+            case 2:
+                return "Dion";
+            case 3:
+                return "Giran";
+            case 4:
+                return "Oren";
+            case 5:
+                return "Aden";
+            case 6:
+                return "Innadril";
+            case 7:
+                return "Goddard";
+            case 8:
+                return "Rune";
+            case 9:
+                return "Schuttgart";
+            default: return "Not found";
+        }
+    }
+
+
 	public void onPlayerEnter()
 	{
 		if (isCursedWeaponEquipped())
@@ -6182,6 +6214,8 @@
                 whItem.scheduleLifeTimeTask();
             }
         }
+        //Send siege info
+        sendSiegeInfo();
 	}
 	
 	public long getLastAccess()

 

what a great idea

Edited by Williams
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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

    • Nexaslim Weight Loss Supplement Reviews (2024) – Experience the transformative power of Beta-hydroxybutyrate (BHB), a potent fat-burning ketone meticulously crafted to ignite natural weight loss. As the primary substrate that initiates ketosis, BHB swiftly propels your metabolism into action. Upon commencing your regimen, BHB promptly facilitates the transition into ketosis, fostering heightened energy levels and weight reduction advantages. NexaSlim groundbreaking formulation harnesses the unparalleled potential of this singular BHB, prompting a wave of excitement in the media. Benefits of Nexaslim Ketosis:   ·         Lose Weight ·         Burn Fat in Trouble Areas ·         Get into Ketosis Fast! ·         Burn Fat for Energy (without the jitters)! ·         Better Brain Health! ·         Faster Recovery from Exercise! ·         Maintain Lean Muscle! Ready to transform your body? Click here to buy your NexaSlim Weight Loss Pills! now!   The enduring presence of NexaSlim with BHB is a testament to its remarkable achievements, as individuals continue to experience unparalleled success, shedding up to 1 kg of fat daily! Nexa Slim is designed with a comprehensive approach to support your journey toward wellness. It aims to complement the body's natural process of energy utilization, focusing on supporting the metabolic state known as ketosis, where the body can use fat as an energy source. Nexaslim, Nexa Slim Reviews, Nexaslim Weight Loss Ingredients, Benefits, Works, Side Effects, Price & Buy from the Official Website   https://supplementrange.com/nexaslim-norway/   https://supplementrange.com/nexaslim-reviews/   https://supplementrange.com/lepticell-reviews/   https://supplementrange.com/nexalyn-male-enhancement/   https://supplementrange.com/cerebrozen-reviews/   https://supplementrange.com/sugar-defender/   https://supplementrange.com/
    • LGBTQ!! ⋐⋑ (209) 876-5519 Love Spells In Atlanta, GA Psychic Reading Black Magic Spells Marriage spells Divorce spells Psychic Readings | Astrology | Love Spells | Black Magic spells | Witchcraft Spells | Spell Caster | Voodoo spells | Marriage spells | Divorce spells | Attraction spells | Bring back lost lover spells REUNITE WITH AN EX LOVER IN 72 HOURS If your lover is gone, don’t be desperate anymore! You are a few clicks away from a prompt resolution of your problem: We will our spiritual powers to bring him/her back Let us show you our method with zero chances of rejection. Don’t waste your precious time; get your lover back NOW! MAKE HIM/HER LOVE ME Don’t wait for the deluge and make him or her love you now. This service will create a great alchemy between this person and you. In just a few weeks, you can make the person you dream of falling in love with you. We recommend you to combine this service with a Marriage ritual if you want this person to commit you. BREAK UP A RELATIONSHIP The perfect service to break up a relationship you don’t think legitimate. Your lover has gone with someone else Don’t hesitate to break them up as this ritual and prayer is very powerful and will Psychic Readings | Astrology | Love Spells | Black Magic spells | Witchcraft Spells | Spell Caster | Voodoo spells | Marriage spells | Divorce spells | Attraction spells | Bring back lost lover spells REUNITE WITH AN EX LOVER IN 72 HOURS If your lover is gone, don’t be desperate anymore! You are a few clicks away from a prompt resolution of your problem: We will our spiritual powers to bring him/her back Let us show you our method with zero chances of rejection. Don’t waste your precious time; get your lover back NOW! MAKE HIM/HER LOVE ME Don’t wait for the deluge and make him or her love you now. This service will create a great alchemy between this person and you. In just a few weeks, you can make the person you dream of falling in love with you. We recommend you to combine this service with a Marriage ritual if you want this person to commit you.
    • Psychic Readings | Astrology | Love Spells | Black Magic spells | Witchcraft Spells | Spell Caster | Voodoo spells | Marriage spells | Divorce spells | Attraction spells | Bring back lost lover spells REUNITE WITH AN EX LOVER IN 72 HOURS If your lover is gone, don’t be desperate anymore! You are a few clicks away from a prompt resolution of your problem: We will our spiritual powers to bring him/her back Let us show you our method with zero chances of rejection. Don’t waste your precious time; get your lover back NOW! MAKE HIM/HER LOVE ME Don’t wait for the deluge and make him or her love you now. This service will create a great alchemy between this person and you. In just a few weeks, you can make the person you dream of falling in love with you. We recommend you to combine this service with a Marriage ritual if you want this person to commit you. BREAK UP A RELATIONSHIP The perfect service to break up a relationship you don’t think legitimate. Your lover has gone with someone else Don’t hesitate to break them up as this ritual and prayer is very powerful and will Psychic Readings | Astrology | Love Spells | Black Magic spells | Witchcraft Spells | Spell Caster | Voodoo spells | Marriage spells | Divorce spells | Attraction spells | Bring back lost lover spells REUNITE WITH AN EX LOVER IN 72 HOURS If your lover is gone, don’t be desperate anymore! You are a few clicks away from a prompt resolution of your problem: We will our spiritual powers to bring him/her back Let us show you our method with zero chances of rejection. Don’t waste your precious time; get your lover back NOW! MAKE HIM/HER LOVE ME Don’t wait for the deluge and make him or her love you now. This service will create a great alchemy between this person and you. In just a few weeks, you can make the person you dream of falling in love with you. We recommend you to combine this service with a Marriage ritual if you want this person to commit you.
    • Psychic Readings | Astrology | Love Spells | Black Magic spells | Witchcraft Spells | Spell Caster | Voodoo spells | Marriage spells | Divorce spells | Attraction spells | Bring back lost lover spells REUNITE WITH AN EX LOVER IN 72 HOURS If your lover is gone, don’t be desperate anymore! You are a few clicks away from a prompt resolution of your problem: We will our spiritual powers to bring him/her back Let us show you our method with zero chances of rejection. Don’t waste your precious time; get your lover back NOW! MAKE HIM/HER LOVE ME Don’t wait for the deluge and make him or her love you now. This service will create a great alchemy between this person and you. In just a few weeks, you can make the person you dream of falling in love with you. We recommend you to combine this service with a Marriage ritual if you want this person to commit you. BREAK UP A RELATIONSHIP The perfect service to break up a relationship you don’t think legitimate. Your lover has gone with someone else Don’t hesitate to break them up as this ritual and prayer is very powerful and will Psychic Readings | Astrology | Love Spells | Black Magic spells | Witchcraft Spells | Spell Caster | Voodoo spells | Marriage spells | Divorce spells | Attraction spells | Bring back lost lover spells REUNITE WITH AN EX LOVER IN 72 HOURS If your lover is gone, don’t be desperate anymore! You are a few clicks away from a prompt resolution of your problem: We will our spiritual powers to bring him/her back Let us show you our method with zero chances of rejection. Don’t waste your precious time; get your lover back NOW! MAKE HIM/HER LOVE ME Don’t wait for the deluge and make him or her love you now. This service will create a great alchemy between this person and you. In just a few weeks, you can make the person you dream of falling in love with you. We recommend you to combine this service with a Marriage ritual if you want this person to commit you.
    • Psychic Readings | Astrology | Love Spells | Black Magic spells | Witchcraft Spells | Spell Caster | Voodoo spells | Marriage spells | Divorce spells | Attraction spells | Bring back lost lover spells REUNITE WITH AN EX LOVER IN 72 HOURS If your lover is gone, don’t be desperate anymore! You are a few clicks away from a prompt resolution of your problem: We will our spiritual powers to bring him/her back Let us show you our method with zero chances of rejection. Don’t waste your precious time; get your lover back NOW! MAKE HIM/HER LOVE ME Don’t wait for the deluge and make him or her love you now. This service will create a great alchemy between this person and you. In just a few weeks, you can make the person you dream of falling in love with you. We recommend you to combine this service with a Marriage ritual if you want this person to commit you. BREAK UP A RELATIONSHIP The perfect service to break up a relationship you don’t think legitimate. Your lover has gone with someone else Don’t hesitate to break them up as this ritual and prayer is very powerful and will Psychic Readings | Astrology | Love Spells | Black Magic spells | Witchcraft Spells | Spell Caster | Voodoo spells | Marriage spells | Divorce spells | Attraction spells | Bring back lost lover spells REUNITE WITH AN EX LOVER IN 72 HOURS If your lover is gone, don’t be desperate anymore! You are a few clicks away from a prompt resolution of your problem: We will our spiritual powers to bring him/her back Let us show you our method with zero chances of rejection. Don’t waste your precious time; get your lover back NOW! MAKE HIM/HER LOVE ME Don’t wait for the deluge and make him or her love you now. This service will create a great alchemy between this person and you. In just a few weeks, you can make the person you dream of falling in love with you. We recommend you to combine this service with a Marriage ritual if you want this person to commit you.
  • Topics

×
×
  • Create New...