Jump to content

Zohan

Members
  • Posts

    342
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Zohan

  1. bazeis tin ip tou pc sou....grafeis ta stixia pou sou zitaei kai PREPI NA ANOI3EIS TO PORT 3306. sorry gia ta caps....apla na dwseis simasia se auto AAA epishs...sto mysql otan to kaneis install....sou dinei odhgies...ama 8eleis na sou kanei accept ta request mesw websites ktlp....3ana kanto mia k checkare ti paizei.
  2. to leei sto main post...tophost. proswpika 8a dialega tophost...to exw kanei polles fores dn ime para poli euxaristimenos opws exei pei kai se allo topic.
  3. oxi dn mporeis. se ucoz kai genika se free domains den mporeis na addareis scripts gia pvp/pk/clan/rb/hero kai oti allo 8eleis.
  4. kaneis post sta ellinika se elliniko section...swsta. meta gt to xalas kai grafeis agglika? anw... sou leei kati sto message otan prospa8eis gia +7 i apla sou spaei to weapon/armor/jewl?
  5. to power alla3e to an sto exei #power. Dokimase dika sou arxizontas apo to 100 kai paei legontas + or - analogos me to dmg pou 8eleis. Gia to chance anebase ena skill gia na to doume...den 8imamai akribws.
  6. prospa8ise na breis to id tou frintezza mesw navicats table 'zones'
  7. http://maxcheaters.com/forum/index.php?topic=266468.0 http://maxcheaters.com/forum/index.php?topic=266457.0 http://maxcheaters.com/forum/index.php?topic=266224.0 http://maxcheaters.com/forum/index.php?topic=266297.0 http://maxcheaters.com/forum/index.php?topic=265409.0 http://maxcheaters.com/forum/index.php?topic=266171.0
  8. i am not ignoring anything. I'm not gonna answer on stupid questions. i got the pack from a friend and thats all. If you want to check it just pm me or check the main post. It based on l2jfrozen as all servers atm (pvp). Don't try to be a smart boy. Kisses.
  9. checkare mipws exei setup, kane account kai checkare poso sou bgainei me Φ.Π.Α ktlp
  10. http://maxcheaters.com/forum/index.php?topic=266224.0
  11. ### Eclipse Workspace Patch 1.0 #P L2jFrozen_GameServer Index: head-src/com/l2jfrozen/gameserver/model/actor/instance/L2MassSiegeManagerInstance.java =================================================================== --- head-src/com/l2jfrozen/gameserver/model/actor/instance/L2MassSiegeManagerInstance.java (revision 0) +++ head-src/com/l2jfrozen/gameserver/model/actor/instance/L2MassSiegeManagerInstance.java (working copy) @@ -0,0 +1,69 @@ +/* + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see <http://www.gnu.org/licenses/>. + */ +package com.l2jfrozen.gameserver.model.actor.instance; + +import com.l2jfrozen.gameserver.network.serverpackets.NpcHtmlMessage; +import com.l2jfrozen.gameserver.templates.L2NpcTemplate; + +/** + * @author Debian + * + */ +public class L2MassSiegeManagerInstance extends L2NpcInstance +{ + + public L2MassSiegeManagerInstance(int objectId, L2NpcTemplate template) + { + super(objectId, template); + } + + public void showHtmlWindow(L2PcInstance activeChar) + { + NpcHtmlMessage p = new NpcHtmlMessage(5); + StringBuilder tb = new StringBuilder(""); + + tb.append("<html><head><title>Mass Siege Manager</title></head><body>"); + tb.append("<center>"); + tb.append("<img src=\"L2Font-e.replay_logo-e\" width=256 height=80>"); + tb.append("<br>"); + tb.append("<img src=\"l2ui_ch3.herotower_deco\" width=256 height=32 align=center>"); + tb.append("<br>"); + tb.append("<font color=\"FFAA00\">Mass Siege Manager</font>"); + tb.append("<br>"); + tb.append("<img src=\"l2ui_ch3.herotower_deco\" width=256 height=32 align=center>"); + tb.append("</center>"); + tb.append("<center>"); + tb.append("<button value=\"Giran Siege\" action=\"bypass -h siege_giran\" width=204 height=20 back=\"sek.cbui36\" fore=\"sek.cbui75\">"); + tb.append("<button value=\"Aden Siege\" action=\"bypass -h siege_aden\" width=204 height=20 back=\"sek.cbui36\" fore=\"sek.cbui75\">"); + tb.append("<button value=\"Rune Siege\" action=\"bypass -h siege_rune\" width=204 height=20 back=\"sek.cbui36\" fore=\"sek.cbui75\">"); + tb.append("<button value=\"Goddard Siege\" action=\"bypass -h siege_goddard\" width=204 height=20 back=\"sek.cbui36\" fore=\"sek.cbui75\">"); + tb.append("<button value=\"Dion Siege\" action=\"bypass -h siege_dion\" width=204 height=20 back=\"sek.cbui36\" fore=\"sek.cbui75\">"); + tb.append("<button value=\"Shuttgart Siege\" action=\"bypass -h siege_shuttgart\" width=204 height=20 back=\"sek.cbui36\" fore=\"sek.cbui75\">"); + tb.append("<button value=\"Innadril Siege\" action=\"bypass -h siege_innadril\" width=204 height=20 back=\"sek.cbui36\" fore=\"sek.cbui75\">"); + tb.append("<button value=\"Oren Siege\" action=\"bypass -h siege_oren\" width=204 height=20 back=\"sek.cbui36\" fore=\"sek.cbui75\">"); + tb.append("<button value=\"Gludio Siege\" action=\"bypass -h siege_gludio\" width=204 height=20 back=\"sek.cbui36\" fore=\"sek.cbui75\">"); + tb.append("</center>"); + tb.append("<center>"); + tb.append("<img src=\"l2ui_ch3.herotower_deco\" width=256 height=32 align=center>"); + tb.append("<br>"); + tb.append("<font color=\"FFAA00\">by Debian</font>"); + tb.append("</center>"); + tb.append("</body></html>"); + + p.setHtml(tb.toString()); + activeChar.sendPacket(p); + return; + } +} \ No newline at end of file Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestBypassToServer.java =================================================================== --- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestBypassToServer.java (revision 986) +++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestBypassToServer.java (working copy) @@ -28,6 +28,7 @@ import com.l2jfrozen.gameserver.handler.AdminCommandHandler; import com.l2jfrozen.gameserver.handler.IAdminCommandHandler; import com.l2jfrozen.gameserver.handler.custom.CustomBypassHandler; +import com.l2jfrozen.gameserver.managers.CastleManager; import com.l2jfrozen.gameserver.model.L2Object; import com.l2jfrozen.gameserver.model.L2World; import com.l2jfrozen.gameserver.model.actor.instance.L2ClassMasterInstance; @@ -41,8 +42,10 @@ import com.l2jfrozen.gameserver.model.entity.event.TvT; import com.l2jfrozen.gameserver.model.entity.event.VIP; import com.l2jfrozen.gameserver.model.entity.olympiad.Olympiad; +import com.l2jfrozen.gameserver.model.entity.siege.Castle; import com.l2jfrozen.gameserver.network.serverpackets.ActionFailed; import com.l2jfrozen.gameserver.network.serverpackets.NpcHtmlMessage; +import com.l2jfrozen.gameserver.network.serverpackets.SiegeInfo; import com.l2jfrozen.gameserver.util.GMAudit; public final class RequestBypassToServer extends L2GameClientPacket @@ -125,6 +128,64 @@ { playerHelp(activeChar, _command.substring(12)); } + + /** Siege Commands **/ + + else if (_command.startsWith("siege_aden")) + { + Castle castle = CastleManager.getInstance().getCastleById(5); + if(castle != null) + sendPacket(new SiegeInfo(castle)); + } + else if (_command.startsWith("siege_giran")) + { + Castle castle = CastleManager.getInstance().getCastleById(3); + if(castle != null) + sendPacket(new SiegeInfo(castle)); + } + else if (_command.startsWith("siege_goddard")) + { + Castle castle = CastleManager.getInstance().getCastleById(7); + if(castle != null) + sendPacket(new SiegeInfo(castle)); + } + else if (_command.startsWith("siege_rune")) + { + Castle castle = CastleManager.getInstance().getCastleById(8); + if(castle != null) + sendPacket(new SiegeInfo(castle)); + } + else if (_command.startsWith("siege_shuttgart")) + { + Castle castle = CastleManager.getInstance().getCastleById(9); + if(castle != null) + sendPacket(new SiegeInfo(castle)); + } + else if (_command.startsWith("siege_oren")) + { + Castle castle = CastleManager.getInstance().getCastleById(4); + if(castle != null) + sendPacket(new SiegeInfo(castle)); + } + else if (_command.startsWith("siege_dion")) + { + Castle castle = CastleManager.getInstance().getCastleById(2); + if(castle != null) + sendPacket(new SiegeInfo(castle)); + } + else if (_command.startsWith("siege_gludio")) + { + Castle castle = CastleManager.getInstance().getCastleById(1); + if(castle != null) + sendPacket(new SiegeInfo(castle)); + } + else if (_command.startsWith("siege_innadril")) + { + Castle castle = CastleManager.getInstance().getCastleById(6); + if(castle != null) + sendPacket(new SiegeInfo(castle)); + } + else if(_command.startsWith("npc_")) { if(!activeChar.validateBypass(_command))
  12. your l2.ini is fine and if you still have errors with different systems , then re-check your configs
  13. apla kaneis extract to .rar se enan fakelo (opws 8eleis esy ton onomazeis mesa ston C:/) , kai meta anigontas to eclipse epilegeis ton sigkekrimeno fakelo
  14. http://www.l2jfrozen.com/forum/index.php?topic=904.0 to sigkekrimeno nomizw oti sou paei kouti gia na 3ekiniseis enan server san new developer.
  15. fisika kai mporeis. arkei to website sou na einai domain name kai oxi free site opws ucoz.com ktlp. ama psa3eis ligo sto forum 8a breis arketa tetoia scripts pou ta kaneis add sto website sou kai ta sindeeis me tin database sou. den einai to kati diskolo
  16. exw hostarei panw apo 5 servers se autous. den eixa pote mou problima. proswpika eimai para poli euxaristimenos. 24wro support panta kai otan xreiazotane na kanoune restart to dedicated pc mou, me pernane thlefwno sto kinhto mou gia na me idopihsoune prwta kai meta.
×
×
  • Create New...