Jump to content

maximilion2

Members
  • Posts

    1,019
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by maximilion2

  1. Hi all.I try search for something in forum before i make post about a problem and look what shows me: You are not allowed to search for posts in this forum.
  2. Kalhspera se olous.. 8a h8ela kapios empeiros na mou pei pio einai to kalytero project gia l2 interlude server.. ;D
  3. Hi all.I want if someone knows and can tell me what is the best project for l2 interlude server.. ;D
  4. aaaah oks i will donate soon thanx :D
  5. Hi it says to me [Hidden post: This post has been hidden by a moderator.] Why i can't see that??
  6. i believe with the fast updates java does every day maybe next month stable version would be released :D
  7. hehe what europrizion means? :P
  8. Welcome RiotStarter™ i am just like you i like playing l2,call of duty,counter,wow,aion lol :P Maybe you can tell me what server you play and meet in game :D
  9. yes, it's true i have it without # and it works fine for me :D
  10. hi man 1 question: i have 2 servers interlude and high five but 1 require mysql 5.1 and other 5.5 so can i have 2 servers?
  11. hi man 1 question: i have 2 servers interlude and high five but 1 require mysql 5.1 and other 5.5 so can i have 2 servers?
  12. hi man 1 question: i have 2 servers interlude and high five but 1 require mysql 5.1 and other 5.5 so can i have 2 servers?
  13. aaah oks cause i saw this: BETA: H5 Contact List (Mail) implementation (by mrTJO and me ) and i though you did it.. :)
  14. this pack isn't shit lol w8 complete it and would be the best choise..
  15. your signature: l2j server name join us now start on 21/12/2011 lol? server up after 7 months omg?
  16. lol it isn't very difficult but i must confess Akira's program makes it more simple :P
  17. hi man an deis to reply m se parakalw epikinvnhse mazi m den leitourgei se emena m vgazei: Nenhum ítem encontrado com o nome de: Notice: Undefined variable: item in C:\Program Files (x86)\EasyPHP-5.3.6.0\www\donate\index.php on line 100 List of the chars: Notice: Undefined variable: conta in C:\Program Files (x86)\EasyPHP-5.3.6.0\www\donate\index.php on line 194 1 ? '1' : $qtd; mysql_query("INSERT INTO items (owner_id, object_id, item_id, count, enchant_level, loc) VALUES ('".$id_char."', '".$oid.$i."', '".$id_item."', '".$qt."', '".$enchant."', 'INVENTORY')") or die(mysql_error()); } echo "Item Added!"; } } ?>
  18. omg noob? why post in this topic if you don't know what is high five? o_O
  19. einai interlude kai einai to kalytero afto xrhsimopoiw.. exei fix an oxi ola ta perisotera bugs,exei announce otan enas castle lord mpenei,announce rb kai alla polla. http://www.l2jfrozen.com/ links gia na to paris: http://subversion.assembla.com/svn/L2jFrozenInterlude/trunk/gameserver/ kai http://subversion.assembla.com/svn/L2jFrozenInterlude/trunk/datapack/
  20. yes thanx a lot l2lige worked :D
  21. thanx men poly kalo kai analytiko to guide s bravo s. Anoiksa ta ports kai se ligo 8a dokimasw na mpw apo to spiti enos filous m :D
  22. se euxaristw poly man epsaxna mia kalh buffer gia ton server m alla den evriska mexri twra :D
  23. hi men you can update your topic with the l2 high five chronicle.. :)
  24. Index: /trunk/L2J-Archid-Game/config/mods/customs.properties =================================================================== --- /trunk/L2J-Archid-Game/config/mods/customs.properties (revision 1045) +++ /trunk/L2J-Archid-Game/config/mods/customs.properties (revision 1058) @@ -304,5 +304,8 @@ # Gemstones Count For S Grade AltGradeSGemstones = 25 - + +# Announce castle lords on enter game. default = false +AnnounceCastleLords = False + #------------------------------------------------------------- # Custom L2JArchid Commands Index: /trunk/L2J-Archid-Game/src/main/java/com/l2jarchid/gameserver/network/clientpackets/EnterWorld.java =================================================================== --- /trunk/L2J-Archid-Game/src/main/java/com/l2jarchid/gameserver/network/clientpackets/EnterWorld.java (revision 1002) +++ /trunk/L2J-Archid-Game/src/main/java/com/l2jarchid/gameserver/network/clientpackets/EnterWorld.java (revision 1058) @@ -38,4 +38,5 @@ import com.l2jarchid.gameserver.datatables.MapRegionTable; import com.l2jarchid.gameserver.datatables.PcColorTable; +import com.l2jarchid.gameserver.instancemanager.CastleManager; import com.l2jarchid.gameserver.instancemanager.ClanHallManager; import com.l2jarchid.gameserver.instancemanager.CoupleManager; @@ -62,4 +63,5 @@ import com.l2jarchid.gameserver.model.entity.events.TvT; import com.l2jarchid.gameserver.model.entity.events.VIP; +import com.l2jarchid.gameserver.model.entity.Castle; import com.l2jarchid.gameserver.model.olympiad.Olympiad; import com.l2jarchid.gameserver.model.quest.Quest; @@ -436,4 +438,9 @@ VIP.addPlayerNotVIP(activeChar); + if (L2Config.ANNOUNCE_CASTLE_LORDS) + { + notifyCastleOwner(activeChar); + } + PcColorTable.getInstance().process(activeChar); // NPCBuffer @@ -689,3 +696,17 @@ return _C__03_ENTERWORLD; } + private void notifyCastleOwner(L2PcInstance activeChar) + { + L2Clan clan = activeChar.getClan(); + + if (clan != null) + { + if (clan.getHasCastle() > 0) + { + Castle castle = CastleManager.getInstance().getCastleById(clan.getHasCastle()); + if ((castle != null) && (activeChar.getObjectId() == clan.getLeaderId())) + Announcements.getInstance().announceToAll("Lord " + activeChar.getName() + " Ruler Of " + castle.getName() + " Castle is Now Online!"); + } + } + } } Index: /trunk/L2J-Archid-Game/src/main/java/com/l2jarchid/L2Config.java =================================================================== --- /trunk/L2J-Archid-Game/src/main/java/com/l2jarchid/L2Config.java (revision 1055) +++ /trunk/L2J-Archid-Game/src/main/java/com/l2jarchid/L2Config.java (revision 1058) @@ -1403,4 +1403,5 @@ public static int ALT_CRYSTAL_A_GEMSTONES; public static int ALT_CRYSTAL_S_GEMSTONES; + public static boolean ANNOUNCE_CASTLE_LORDS; /** Use rule of BossZone **/ @@ -1529,4 +1530,5 @@ ALT_CRYSTAL_A_GEMSTONES = Integer.parseInt(CustomMod.getProperty("AltGradeAGemstones", "20")); ALT_CRYSTAL_S_GEMSTONES = Integer.parseInt(CustomMod.getProperty("AltGradeSGemstones", "25")); + ANNOUNCE_CASTLE_LORDS = Boolean.parseBoolean(CustomMod.getProperty("AnnounceCastleLords", "false")); ALLOW_DUALBOX = Boolean.parseBoolean(CustomMod.getProperty("AllowDualBox", "True")); DUAL_BOX_EXCEPTION = CustomMod.getProperty("DualBoxException", "");
×
×
  • Create New...