Jump to content

Celestine

Administrators
  • Posts

    5,176
  • Credits

  • Joined

  • Days Won

    285
  • Feedback

    100%

Everything posted by Celestine

  1. Packer U Extend Now you can pack the textures, sounds, animations, models you need in .u modification, we can now easily be packed in such packages as the .u: Animations (.ukx) StaticMeshes (.usx) the Textures \ systextures (.utx) Sounds (.uax) Here in advance to make an example, after compiling it with pack1.u resources will be in the PackerU folder. More info: added by @Piaro https://wiki.beyondunreal.com/Exec_commands https://wiki.beyondunreal.com/Legacy:Exec_Directive Download
  2. Issue has been fixed Solution gived by @Xtellia & Me Locked.
  3. A Crowded Community from around the world League Players Amazing Giveaways be a part of this community to win a TurboSmurf Account Discord: TurboSmurfs Proof of Winning deuss selly store
  4. The User.ini file for the Classic client, by clicking on the mouse wheel, switches the modes in / remove fog + infinite zoom Download
      • 1
      • Upvote
  5. Since many people requested some kind of animation disable for Classic Client Clicking on the mouse wheel removes all animations in the Classic client Download
      • 1
      • Like
  6. one of the best anime npcs :D lovely
  7. Since it's solved Locked.
  8. Everything sold Locked.
  9. [Hidden Content]
  10. Thanks for your kind words keep up the good work :)
  11. 1. Go to https://epicgames.com 2. Download Epic Games Launcher 3. Log In 4. Get the Nitro promotion. 5. Get Discord on the Epic Launcher, 6. Wait 7. The code will be sent to you by EMAIL in MAXIMUM 24 HOURS! Here's a link to get free 3 months of discord nitro by epicgames, enjoy https://www.epicgames.com/store/en-US/p/discord--discord-nitro?fbclid=IwAR1rCbhrqGCsO026CAWLUWoZD_VAcR5Z5114m9dlqSxsiXzgZs_1pnXeuwk
      • 1
      • Like
  12. Download Permission Viewers can download from Google Drive @Bumble try it
  13. 1kk=0,15 cent € 1 LK8=4 € Payment Method Paypal Friends & Family
  14. well i gonna agree such servers are missing now days but as far i saw @ViX is really cool Developer he makes amazing work i believe on him that he will provide us a perfect h5 server
  15. Someone merged a collection of Community Boards long time ago there are 5 pieces i did not added all screenshots was to lazy but there are many more you just have to dig [Hidden Content]
      • 7
      • Like
      • Thanks
  16. dont say big words you are one of the most crazy persons i ever meet this is going to, be a big succes.
  17. 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 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()
  18. Since it's solved Locked.
  19. Topic movied to proper section
  20. if i get any more infos i will update the topic
  21. 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() Something like this will do, Edit where needed
  22. please check ur messages
  23. also that totally true that what im saying now days none of the members search enough good the forums to find shared content and after they buy and make mistake they call sellers "Scammers"
  24. fact is not about scamming someone but things are crystal clear when a code is shared for free somewhere and someone is, trying to sell it others will call this a scam because you are trying to fool people who have no idea about java coding...
×
×
  • 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