07-22-2011, 10:55 PM
Ro0TT Написал:Никак, ибо не продумали это
Тож самое увидишь.
[STIGMATED];132481 Написал:Везде одни $tvari :pandaredlol:Мде сборки одно говно
Много букоф, ниасилил, но скорее всего рут прав, нет функции для прописывания обратной html.
Actyon-Dev Alt+b кревое (и еше минусов ведро)
shark-tm.ru тож не лутше ,ограничение на онлаин и сборка на основе феникс (срань ппц ,пока настроиш повесися)
Lucid-team.ru у этих вопше ппц
А L2jS Project то голая там в комунити и бафа болт и гм шопа болт .А написать там в ядре не понятно как(
Мож кто обьяснит че с етим делать
отрыть)
Index: /java/com/l2jserver/Config.java
===================================================================
--- /java/com/l2jserver/Config.java (revision 4510)
+++ /java/com/l2jserver/Config.java (working copy)
@@ -80,6 +80,7 @@
public static final String COMMUNITY_CONFIGURATION_FILE = "./config/CommunityServer.properties";
public static final String GRANDBOSS_CONFIG_FILE = "./config/Grandboss.properties";
public static final String GRACIASEEDS_CONFIG_FILE = "./config/GraciaSeeds.properties";
+ public static final String COMMUNITY_BOARD_PVP = "./config/CommunityBoardPvP.properties";
public static final String CHAT_FILTER_FILE = "./config/chatfilter.txt";
@@ -600,6 +601,13 @@
//--------------------------------------------------
+ // Community Board PvP
+ //--------------------------------------------------
+ public static boolean BUFF_PEACE;
+ public static boolean MANI_BUFF;
+
+
+ //--------------------------------------------------
// FloodProtector Settings
//--------------------------------------------------
public static FloodProtectorConfig FLOOD_PROTECTOR_USE_ITEM;
@@ -2690,6 +2698,23 @@
throw new Error("Failed to Load " + GRANDBOSS_CONFIG_FILE + " File.");
}
+ // Community Board PvP
+ try
+ {
+ L2Properties CommunityBoardPvPSettings = new L2Properties();
+ is = new FileInputStream(new File(COMMUNITY_BOARD_PVP));
+ CommunityBoardPvPSettings.load(is);
+
+ BUFF_PEACE = Boolean.parseBoolean(CommunityBoardPvPSettings.getProperty("PeaceZone", "true"));
+ MANI_BUFF = Boolean.parseBoolean(CommunityBoardPvPSettings.getProperty("ManiBuff", "true"));
+
+ }
+ catch (Exception e)
+ {
+ e.printStackTrace();
+ throw new Error("Failed to Load " + COMMUNITY_BOARD_PVP + " File.");
+ }
+
// Gracia Seeds
try
{
Index: /java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java
===================================================================
--- /java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java (revision 4510)
+++ /java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java (working copy)
@@ -14,13 +14,17 @@
*/
package com.l2jserver.gameserver.communitybbs;
+import java.util.StringTokenizer;
+
import com.l2jserver.Config;
import com.l2jserver.gameserver.communitybbs.Manager.ClanBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.PostBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.RegionBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.TopBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.TopicBBSManager;
+import com.l2jserver.gameserver.datatables.MultiSell;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.entity.TvTEvent;
import com.l2jserver.gameserver.network.L2GameClient;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.network.serverpackets.ShowBoard;
@@ -77,6 +81,18 @@
{
TopBBSManager.getInstance().parsecmd(command, activeChar);
}
+ else if (command.startsWith("_bbsmultisell;"))
+ {
+ if(activeChar.isDead() || activeChar.isAlikeDead() || TvTEvent.isStarted() || activeChar.isInSiege() || activeChar.isCastingNow() || activeChar.isInCombat() || activeChar.isAttackingNow() || activeChar.isInOlympiadMode() || activeChar.isInJail() || activeChar.isFlying() || activeChar.getKarma() > 0 || activeChar.isInDuel()){
+ activeChar.sendMessage("В данных условиях использовать Шоп запрещено");
+ return;
+ }
+ StringTokenizer st = new StringTokenizer(command, ";");
+ st.nextToken();
+ TopBBSManager.getInstance().parsecmd("_bbstop;" + st.nextToken(), activeChar);
+ int multisell = Integer.parseInt(st.nextToken());
+ MultiSell.getInstance().separateAndSend(multisell, activeChar, null, false);
+ }
else if (command.startsWith("_bbsloc"))
{
RegionBBSManager.getInstance().parsecmd(command, activeChar);
Index: D:/Code/L2J_Server/java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java
===================================================================
--- D:/Code/L2J_Server/java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java (revision 4510)
+++ D:/Code/L2J_Server/java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java (working copy)
@@ -14,13 +14,19 @@
*/
package com.l2jserver.gameserver.communitybbs;
+import java.util.StringTokenizer;
+
import com.l2jserver.Config;
+import com.l2jserver.gameserver.communitybbs.Manager.BuffBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.ClanBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.PostBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.RegionBBSManager;
+import com.l2jserver.gameserver.communitybbs.Manager.TeleportBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.TopBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.TopicBBSManager;
+import com.l2jserver.gameserver.datatables.MultiSell;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.entity.TvTEvent;
import com.l2jserver.gameserver.network.L2GameClient;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.network.serverpackets.ShowBoard;
@@ -77,6 +83,26 @@
{
TopBBSManager.getInstance().parsecmd(command, activeChar);
}
+ else if (command.startsWith("_bbs_buff"))
+ {
+ BuffBBSManager.getInstance().parsecmd(command, activeChar);
+ }
+ else if (command.startsWith("_bbsteleport;"))
+ {
+ TeleportBBSManager.getInstance().parsecmd(command, activeChar);
+ }
+ else if (command.startsWith("_bbsmultisell;"))
+ {
+ if(activeChar.isDead() || activeChar.isAlikeDead() || TvTEvent.isStarted() || activeChar.isInSiege() || activeChar.isCastingNow() || activeChar.isInCombat() || activeChar.isAttackingNow() || activeChar.isInOlympiadMode() || activeChar.isInJail() || activeChar.isFlying() || activeChar.getKarma() > 0 || activeChar.isInDuel()){
+ activeChar.sendMessage("В данных условиях использовать Шоп запрещено");
+ return;
+ }
+ StringTokenizer st = new StringTokenizer(command, ";");
+ st.nextToken();
+ TopBBSManager.getInstance().parsecmd("_bbstop;" + st.nextToken(), activeChar);
+ int multisell = Integer.parseInt(st.nextToken());
+ MultiSell.getInstance().separateAndSend(multisell, activeChar, null, false);
+ }
else if (command.startsWith("_bbsloc"))
{
RegionBBSManager.getInstance().parsecmd(command, activeChar);
Index: /java/com/l2jserver/gameserver/model/L2Effect.java
===================================================================
--- /java/com/l2jserver/gameserver/model/L2Effect.java (revision 4510)
+++ /java/com/l2jserver/gameserver/model/L2Effect.java (working copy)
@@ -663,4 +663,9 @@
{
return false;
}
+
+ public int getId()
+ {
+ return getSkill().getId();
+ }
}
\ No newline at end of file
Index: /java/com/l2jserver/gameserver/communitybbs/Manager/TeleportBBSManager.java
===================================================================
--- /java/com/l2jserver/gameserver/communitybbs/Manager/TeleportBBSManager.java (revision 0)
+++ /java/com/l2jserver/gameserver/communitybbs/Manager/TeleportBBSManager.java (revision 0)
@@ -0,0 +1,281 @@
+package com.l2jserver.gameserver.communitybbs.Manager;
+
+import java.sql.Connection;
+import java.sql.PreparedStatement;
+import java.sql.ResultSet;
+import java.util.StringTokenizer;
+import java.util.logging.Logger;
+
+import javolution.text.TextBuilder;
+
+import com.l2jserver.L2DatabaseFactory;
+import com.l2jserver.gameserver.cache.HtmCache;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.entity.TvTEvent;
+import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
+import com.l2jserver.gameserver.network.serverpackets.ShowBoard;
+
+public class TeleportBBSManager extends BaseBBSManager
+{
+
+ @SuppressWarnings("unused")
+ private static Logger _log = Logger.getLogger(TeleportBBSManager.class.getName());
+
+ public class CBteleport
+ {
+ public int TpId = 0; // Teport location ID
+ public String TpName = ""; // Location name
+ public int PlayerId = 0; // charID
+ public int xC = 0; // Location coords X
+ public int yC = 0; // Location coords Y
+ public int zC = 0; // Location coords Z
+ }
+
+ private static TeleportBBSManager _Instance = null;
+
+ public static TeleportBBSManager getInstance()
+ {
+ if(_Instance == null)
+ _Instance = new TeleportBBSManager();
+ return _Instance;
+ }
+
+ public String points[][];
+
+ @Override
+ public void parsecmd(String command, L2PcInstance activeChar)
+ {
+ if(command.equals("_bbsteleport;"))
+ {
+ showTp(activeChar);
+ }
+ else if(command.startsWith("_bbsteleport;delete;"))
+ {
+ StringTokenizer stDell = new StringTokenizer(command, ";");
+ stDell.nextToken();
+ stDell.nextToken();
+ int TpNameDell = Integer.parseInt(stDell.nextToken());
+ delTp(activeChar, TpNameDell);
+ showTp(activeChar);
+ }
+ else if(command.startsWith("_bbsteleport;save;"))
+ {
+ StringTokenizer stAdd = new StringTokenizer(command, ";");
+ stAdd.nextToken();
+ stAdd.nextToken();
+ String TpNameAdd = stAdd.nextToken();
+ AddTp(activeChar, TpNameAdd);
+ showTp(activeChar);
+ }
+ else if(command.startsWith("_bbsteleport;teleport;"))
+ {
+ StringTokenizer stGoTp = new StringTokenizer(command, " ");
+ stGoTp.nextToken();
+ int xTp = Integer.parseInt(stGoTp.nextToken());
+ int yTp = Integer.parseInt(stGoTp.nextToken());
+ int zTp = Integer.parseInt(stGoTp.nextToken());
+ int priceTp = Integer.parseInt(stGoTp.nextToken());
+ goTp(activeChar, xTp, yTp, zTp, priceTp);
+ showTp(activeChar);
+ }
+ else
+ {
+ ShowBoard sb = new ShowBoard("<html><body><br><br><center>the command: " + command
+ + " is not implemented yet</center><br><br></body></html>", "101");
+ activeChar.sendPacket(sb);
+ activeChar.sendPacket(new ShowBoard(null, "102"));
+ activeChar.sendPacket(new ShowBoard(null, "103"));
+ }
+ }
+ @SuppressWarnings("cast")
+ private void goTp(L2PcInstance activeChar, int xTp, int yTp, int zTp, int priceTp)
+ {
+ if(activeChar.isDead() || activeChar.isAlikeDead() || TvTEvent.isStarted() || activeChar.isInSiege() || activeChar.isCastingNow() || activeChar.isInCombat() || activeChar.isAttackingNow() || activeChar.isInOlympiadMode() || activeChar.isInJail() || activeChar.isFlying() || activeChar.getKarma() > 0 || activeChar.isInDuel()){
+ activeChar.sendMessage("В данных условиях телепортация запрещена");
+ return;
+ }
+ if(priceTp > 0 && activeChar.getAdena() < priceTp)
+ {
+ activeChar.sendMessage("Недостаточно Адены");
+ return;
+ }
+
+ else
+ {
+ if(priceTp > 0)
+ {
+ activeChar.reduceAdena("Teleport", (long) priceTp, activeChar, true);
+ }
+ activeChar.teleToLocation(xTp,yTp,zTp);
+ }
+ }
+ private void showTp(L2PcInstance activeChar)
+ {
+ CBteleport tp;
+ Connection con = null;
+ try
+ {
+ con = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement st = con.prepareStatement("SELECT * FROM comteleport WHERE charId=?;");
+ st.setLong(1, activeChar.getObjectId());
+ ResultSet rs = st.executeQuery();
+ TextBuilder html = new TextBuilder();
+ html.append("<table width=220>");
+ while(rs.next())
+ {
+
+ tp = new CBteleport();
+ tp.TpId = rs.getInt("TpId");
+ tp.TpName = rs.getString("name");
+ tp.PlayerId = rs.getInt("charId");
+ tp.xC = rs.getInt("xPos");
+ tp.yC = rs.getInt("yPos");
+ tp.zC = rs.getInt("zPos");
+ html.append("<tr>");
+ html.append("<td>");
+ html.append("<button value=\""+ tp.TpName +"\" action=\"bypass -h _bbsteleport;teleport; " + tp.xC + " " + tp.yC + " " + tp.zC + " " + 100000 + "\" width=100 height=20 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
+ html.append("</td>");
+ html.append("<td>");
+ html.append("<button value=\"Удалить\" action=\"bypass -h _bbsteleport;delete;" + tp.TpId + "\" width=100 height=20 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
+ html.append("</td>");
+ html.append("</tr>");
+ }
+ html.append("</table>");
+
+ String content = HtmCache.getInstance().getHtmForce(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/50.htm");
+ NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
+ adminReply.setHtml(content);
+ adminReply.replace("%tp%", html.toString());
+ /*separateAndSend(adminReply.getHtm(), activeChar);*/
+ return;
+
+ }
+ catch (Exception e)
+ {
+ }
+ finally
+ {
+ try
+ {
+ con.close();
+ }
+ catch (Exception e)
+ {
+ }
+ }
+
+ }
+ private void delTp(L2PcInstance activeChar, int TpNameDell)
+ {
+ Connection conDel = null;
+ try
+ {
+ conDel = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement stDel = conDel.prepareStatement("DELETE FROM comteleport WHERE charId=? AND TpId=?;");
+ stDel.setInt(1, activeChar.getObjectId());
+ stDel.setInt(2, TpNameDell);
+ stDel.execute();
+ }
+ catch (Exception e)
+ {
+ }
+ finally
+ {
+ try
+ {
+ conDel.close();
+ }
+ catch (Exception e)
+ {
+ }
+ }
+
+ }
+
+ private void AddTp(L2PcInstance activeChar, String TpNameAdd)
+ {
+ if(activeChar.isDead() || activeChar.isAlikeDead() || activeChar.isCastingNow() || activeChar.isAttackingNow())
+ {
+ activeChar.sendMessage("Сохранить закладку в вашем состоянии невозможно");
+ return;
+ }
+
+ if(activeChar.isInCombat())
+ {
+ activeChar.sendMessage("Сохранить закладку в боевом режиме нельзя");
+ return;
+ }
+
+ if(activeChar.isInsideZone((byte)11) || activeChar.isInsideZone((byte)5) || activeChar.isInsideZone((byte)9) || activeChar.isInsideZone((byte)10) || activeChar.isInsideZone((byte)3) || activeChar.isInsideZone((byte)16) || activeChar.isInsideZone((byte)8) || activeChar.isFlying())
+ {
+ activeChar.sendMessage("Нельзя сохранить данную локацию");
+ return;
+ }
+ if(TpNameAdd.equals("") || TpNameAdd.equals(null))
+ {
+ activeChar.sendMessage("Вы не ввели имя закладки");
+ return;
+ }
+ Connection con = null;
+ try
+ {
+ con = L2DatabaseFactory.getInstance().getConnection();
+
+ PreparedStatement st = con.prepareStatement("SELECT COUNT(*) FROM comteleport WHERE charId=?;");
+ st.setLong(1, activeChar.getObjectId());
+ ResultSet rs = st.executeQuery();
+ rs.next();
+ if(rs.getInt(1) <= 9)
+ {
+ PreparedStatement st1 = con.prepareStatement("SELECT COUNT(*) FROM comteleport WHERE charId=? AND name=?;");
+ st1.setLong(1, activeChar.getObjectId());
+ st1.setString(2, TpNameAdd);
+ ResultSet rs1 = st1.executeQuery();
+ rs1.next();
+ if(rs1.getInt(1) == 0)
+ {
+ PreparedStatement stAdd = con.prepareStatement("INSERT INTO comteleport (charId,xPos,yPos,zPos,name) VALUES(?,?,?,?,?)");
+ stAdd.setInt(1, activeChar.getObjectId());
+ stAdd.setInt(2, activeChar.getX());
+ stAdd.setInt(3, activeChar.getY());
+ stAdd.setInt(4, activeChar.getZ());
+ stAdd.setString(5, TpNameAdd);
+ stAdd.execute();
+ }
+ else
+ {
+ PreparedStatement stAdd = con.prepareStatement("UPDATE comteleport SET xPos=?, yPos=?, zPos=? WHERE charId=? AND name=?;");
+ stAdd.setInt(1, activeChar.getObjectId());
+ stAdd.setInt(2, activeChar.getX());
+ stAdd.setInt(3, activeChar.getY());
+ stAdd.setInt(4, activeChar.getZ());
+ stAdd.setString(5, TpNameAdd);
+ stAdd.execute();
+ }
+ }
+ else
+ {
+ activeChar.sendMessage("Вы не можете сохранить более десяти закладок");
+ }
+
+ }
+ catch (Exception e)
+ {
+ }
+ finally
+ {
+ try
+ {
+ con.close();
+ }
+ catch (Exception e)
+ {
+ }
+ }
+ }
+ @Override
+ public void parsewrite(String ar1, String ar2, String ar3, String ar4, String ar5, L2PcInstance activeChar)
+ {
+
+ }
+}
\ No newline at end of file
Index: /java/com/l2jserver/gameserver/communitybbs/Manager/BuffBBSManager.java
===================================================================
--- /java/com/l2jserver/gameserver/communitybbs/Manager/BuffBBSManager.java (revision 0)
+++ /java/com/l2jserver/gameserver/communitybbs/Manager/BuffBBSManager.java (revision 0)
@@ -0,0 +1,611 @@
+package com.l2jserver.gameserver.communitybbs.Manager;
+
+import java.sql.Connection;
+import java.sql.PreparedStatement;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+
+
+import com.l2jserver.Config;
+import com.l2jserver.L2DatabaseFactory;
+import com.l2jserver.gameserver.cache.HtmCache;
+import com.l2jserver.gameserver.datatables.SkillTable;
+import com.l2jserver.gameserver.model.*;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.entity.TvTEvent;
+import com.l2jserver.gameserver.network.serverpackets.ExShowScreenMessage;
+
+public class BuffBBSManager extends BaseBBSManager
+{
+
+ private static BuffBBSManager _instance = new BuffBBSManager();
+ public int allskillid_1[][];
+
+ public BuffBBSManager()
+ {
+ Load();
+ }
+
+ public static BuffBBSManager getInstance()
+ {
+ if(_instance == null)
+ _instance = new BuffBBSManager();
+ return _instance;
+ }
+ public void Load()
+ {
+
+ Connection connn = null;
+ try
+ {
+ connn = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement count = connn.prepareStatement("SELECT COUNT(*) FROM communitybuff");
+ ResultSet countt = count.executeQuery();
+ countt.next();
+ allskillid_1 = new int[countt.getInt(1)][4];
+ PreparedStatement table = connn.prepareStatement("SELECT * FROM communitybuff");
+ ResultSet skills = table.executeQuery();
+ for(int i = 0; i < allskillid_1.length; i++)
+ {
+ skills.next();
+ allskillid_1[i][0] = skills.getInt(2);
+ allskillid_1[i][1] = skills.getInt(3);
+ allskillid_1[i][2] = skills.getInt(4);
+ allskillid_1[i][3] = skills.getInt(5);
+ }
+
+ count.close();
+ countt.close();
+ skills.close();
+ table.close();
+ connn.close();
+ }
+ catch(Exception ignored) { }
+ }
+ @Override
+ public void parsecmd(String command, L2PcInstance activeChar)
+ {
+ String[] parts = command.split("_");
+ boolean petbuff = false;
+ if(activeChar.isDead() || activeChar.isAlikeDead() || TvTEvent.isStarted() || activeChar.isInSiege() || activeChar.isCastingNow() || activeChar.isInCombat() || activeChar.isAttackingNow() || activeChar.isInOlympiadMode() || activeChar.isInJail() || activeChar.isFlying() || activeChar.getKarma() > 0 || activeChar.isInDuel())
+ {
+ activeChar.sendMessage("В данных условиях бафф запрещен");
+ return;
+ }
+ if (!(parts[2].startsWith("buff")))
+ return;
+ String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/60.htm");
+ separateAndSend(content, activeChar);
+
+ if(parts[4] != null && parts[4].startsWith(" Player"))
+ petbuff = false;
+ if(parts[4] != null && parts[4].startsWith(" Pet"))
+ petbuff = true;
+ if(parts[3].startsWith("FIGHERLIST"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ FIGHERLIST(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ FIGHERLIST(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("DANCEFIGHTERLIST"))
+ {
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ DANCEFIGHTERLIST(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ DANCEFIGHTERLIST(activeChar, petbuff);
+ }
+ }
+ if(parts[3].startsWith("MAGELIST"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ MAGELIST(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ MAGELIST(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("DANCEMAGELIST"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ DANCEMAGELIST(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ DANCEMAGELIST(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("SAVE"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ SAVE(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ } else
+ {
+ SAVE(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("BUFF"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ BUFF(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ } else
+ {
+ BUFF(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("CANCEL"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ CANCEL(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ CANCEL(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("REGMP"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ REGMP(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ REGMP(activeChar, petbuff);
+ }
+ for(int key = 0; key < allskillid_1.length; key++)
+ {
+ L2Skill skill;
+ int skilllevel;
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[key][0]);
+ skill = SkillTable.getInstance().getInfo(allskillid_1[key][0], skilllevel);
+ if(parts[3].startsWith(skill.getName()))
+ SKILL(activeChar, petbuff, key, skill);
+ } else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[key][0]);
+ skill = SkillTable.getInstance().getInfo(allskillid_1[key][0], skilllevel);
+ if(parts[3].startsWith(skill.getName()))
+ SKILL(activeChar, petbuff, key, skill);
+ }
+ }
+
+ private void FIGHERLIST(L2PcInstance activeChar, boolean petbuff)
+ {
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ if(aSkillid[1] != 1 && aSkillid[1] != 3)
+ continue;
+ L2Skill skill;
+ int skilllevel;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, aSkillid[3], aSkillid[2], activeChar, true))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ }
+
+ private void DANCEFIGHTERLIST(L2PcInstance activeChar, boolean petbuff)
+ {
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ if(aSkillid[1] != 4 && aSkillid[1] != 6)
+ continue;
+ L2Skill skill;
+ int skilllevel;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, aSkillid[3], aSkillid[2], activeChar, true))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ }
+
+ private void MAGELIST(L2PcInstance activeChar, boolean petbuff)
+ {
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ if(aSkillid[1] != 2 && aSkillid[1] != 3)
+ continue;
+ L2Skill skill;
+ int skilllevel;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, aSkillid[3], aSkillid[2], activeChar, true))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ }
+
+ private void DANCEMAGELIST(L2PcInstance activeChar, boolean petbuff)
+ {
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ if(aSkillid[1] != 5 && aSkillid[1] != 6)
+ continue;
+ L2Skill skill;
+ int skilllevel;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, aSkillid[3], aSkillid[2], activeChar, true))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ }
+
+ private void BUFF(L2PcInstance activeChar, boolean petbuff)
+ {
+ Connection con = null;
+ try
+ {
+ con = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement statement = con.prepareStatement("SELECT * FROM community_skillsave WHERE charId=?;");
+ statement.setInt(1, activeChar.getObjectId());
+ ResultSet rcln = statement.executeQuery();
+ rcln.next();
+ if(!petbuff)
+ {
+ char allskills[] = rcln.getString(2).toCharArray();
+ if(allskills.length == allskillid_1.length)
+ {
+ for(int i = 0; i < allskillid_1.length; i++)
+ if(allskills[i] == '1')
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, allskillid_1[i][3], allskillid_1[i][2], activeChar, true))
+ {
+ int skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[i][0]);
+ L2Skill skill = SkillTable.getInstance().getInfo(allskillid_1[i][0], skilllevel);
+ skill.getEffects(activeChar, activeChar);
+ activeChar.getLevel();
+ } else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ } else
+ {
+ int skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[i][0]);
+ L2Skill skill = SkillTable.getInstance().getInfo(allskillid_1[i][0], skilllevel);
+ skill.getEffects(activeChar, activeChar);
+ }
+
+ }
+ }
+ else
+ {
+ char petskills[] = rcln.getString(3).toCharArray();
+ if(petskills.length == allskillid_1.length)
+ {
+ for(int i = 0; i < allskillid_1.length; i++)
+ {
+ if(petskills[i] != '1')
+ continue;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, allskillid_1[i][3], allskillid_1[i][2], activeChar, true))
+ {
+ int skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[i][0]);
+ L2Skill skill = SkillTable.getInstance().getInfo(allskillid_1[i][0], skilllevel);
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ } else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ } else
+ {
+ int skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[i][0]);
+ L2Skill skill = SkillTable.getInstance().getInfo(allskillid_1[i][0], skilllevel);
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ }
+
+ }
+ }
+ rcln.close();
+ statement.close();
+ }
+ catch(Exception ignored)
+ {
+ try
+ {
+ if(con != null)
+ con.close();
+ }
+ catch(SQLException e)
+ {
+ e.printStackTrace();
+ }
+
+ }
+ try
+ {
+ if(con != null)
+ con.close();
+ }
+ catch(SQLException e)
+ {
+ e.printStackTrace();
+ }
+ }
+
+ private void CANCEL(L2PcInstance activeChar, boolean petbuff)
+ {
+ if(!petbuff)
+ activeChar.stopAllEffects();
+ else
+ activeChar.getPet().stopAllEffects();
+ }
+
+ private void REGMP(L2PcInstance activeChar, boolean petbuff)
+ {
+ if(!petbuff)
+ activeChar.setCurrentMp(activeChar.getMaxMp());
+ else
+ activeChar.getPet().setCurrentMp(activeChar.getPet().getMaxMp());
+ }
+
+ private void SKILL(L2PcInstance activeChar, boolean petbuff, int key, L2Skill skill)
+ {
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, allskillid_1[key][3], allskillid_1[key][2], activeChar, true))
+ {
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ }
+ else
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ private void SAVE(L2PcInstance activeChar, boolean petbuff)
+ {
+ Connection con = null;
+ try
+ {
+ con = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement stat = con.prepareStatement("SELECT COUNT(*) FROM community_skillsave WHERE charId=?;");
+ stat.setInt(1, activeChar.getObjectId());
+ ResultSet rset = stat.executeQuery();
+ rset.next();
+ String allbuff = "";
+ if(!petbuff)
+ {
+ L2Effect skill[] = activeChar.getAllEffects();
+ boolean flag = true;
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ for(int j = 0; j < skill.length; j++)
+ {
+ if(aSkillid[0] == skill[j].getId())
+ {
+ allbuff = (new StringBuilder()).append(allbuff).append(1).toString();
+ flag = false;
+ }
+ if(j == skill.length - 1 && flag)
+ allbuff = (new StringBuilder()).append(allbuff).append(0).toString();
+ }
+
+ flag = true;
+ }
+
+ if(rset.getInt(1) == 0)
+ {
+ PreparedStatement statement1 = con.prepareStatement("INSERT INTO community_skillsave (charId,skills) values (?,?)");
+ statement1.setInt(1, activeChar.getObjectId());
+ statement1.setString(2, allbuff);
+ statement1.execute();
+ statement1.close();
+ }
+ else
+ {
+ PreparedStatement statement = con.prepareStatement("UPDATE community_skillsave SET skills=? WHERE charId=?;");
+ statement.setString(1, allbuff);
+ statement.setInt(2, activeChar.getObjectId());
+ statement.execute();
+ statement.close();
+ }
+ }
+ else
+ {
+ L2Effect skill[] = activeChar.getPet().getAllEffects();
+ boolean flag = true;
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ for(int j = 0; j < skill.length; j++)
+ {
+ if(aSkillid[0] == skill[j].getId())
+ {
+ allbuff = (new StringBuilder()).append(allbuff).append(1).toString();
+ flag = false;
+ }
+ if(j == skill.length - 1 && flag)
+ allbuff = (new StringBuilder()).append(allbuff).append(0).toString();
+ }
+
+ flag = true;
+ }
+
+ if(rset.getInt(1) == 0)
+ {
+ PreparedStatement statement1 = con.prepareStatement("INSERT INTO community_skillsave (charId,pet) values (?,?)");
+ statement1.setInt(1, activeChar.getObjectId());
+ statement1.setString(2, allbuff);
+ statement1.execute();
+ statement1.close();
+ } else
+ {
+ PreparedStatement statement = con.prepareStatement("UPDATE community_skillsave SET pet=? WHERE charId=?;");
+ statement.setString(1, allbuff);
+ statement.setInt(2, activeChar.getObjectId());
+ statement.execute();
+ statement.close();
+ }
+ }
+ rset.close();
+ stat.close();
+ }
+ catch(Exception ignored)
+ {
+ try
+ {
+ if(con != null)
+ con.close();
+ }
+ catch(SQLException e)
+ {
+ e.printStackTrace();
+ }
+ }
+ try
+ {
+ if(con != null)
+ con.close();
+ }
+ catch(SQLException e)
+ {
+ e.printStackTrace();
+ }
+ }
+
+ @Override
+ public void parsewrite(String s, String s1, String s2, String s3, String s4, L2PcInstance l2pcinstance)
+ {
+ }
+}
\ No newline at end of file
===================================================================
--- /java/com/l2jserver/Config.java (revision 4510)
+++ /java/com/l2jserver/Config.java (working copy)
@@ -80,6 +80,7 @@
public static final String COMMUNITY_CONFIGURATION_FILE = "./config/CommunityServer.properties";
public static final String GRANDBOSS_CONFIG_FILE = "./config/Grandboss.properties";
public static final String GRACIASEEDS_CONFIG_FILE = "./config/GraciaSeeds.properties";
+ public static final String COMMUNITY_BOARD_PVP = "./config/CommunityBoardPvP.properties";
public static final String CHAT_FILTER_FILE = "./config/chatfilter.txt";
@@ -600,6 +601,13 @@
//--------------------------------------------------
+ // Community Board PvP
+ //--------------------------------------------------
+ public static boolean BUFF_PEACE;
+ public static boolean MANI_BUFF;
+
+
+ //--------------------------------------------------
// FloodProtector Settings
//--------------------------------------------------
public static FloodProtectorConfig FLOOD_PROTECTOR_USE_ITEM;
@@ -2690,6 +2698,23 @@
throw new Error("Failed to Load " + GRANDBOSS_CONFIG_FILE + " File.");
}
+ // Community Board PvP
+ try
+ {
+ L2Properties CommunityBoardPvPSettings = new L2Properties();
+ is = new FileInputStream(new File(COMMUNITY_BOARD_PVP));
+ CommunityBoardPvPSettings.load(is);
+
+ BUFF_PEACE = Boolean.parseBoolean(CommunityBoardPvPSettings.getProperty("PeaceZone", "true"));
+ MANI_BUFF = Boolean.parseBoolean(CommunityBoardPvPSettings.getProperty("ManiBuff", "true"));
+
+ }
+ catch (Exception e)
+ {
+ e.printStackTrace();
+ throw new Error("Failed to Load " + COMMUNITY_BOARD_PVP + " File.");
+ }
+
// Gracia Seeds
try
{
Index: /java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java
===================================================================
--- /java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java (revision 4510)
+++ /java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java (working copy)
@@ -14,13 +14,17 @@
*/
package com.l2jserver.gameserver.communitybbs;
+import java.util.StringTokenizer;
+
import com.l2jserver.Config;
import com.l2jserver.gameserver.communitybbs.Manager.ClanBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.PostBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.RegionBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.TopBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.TopicBBSManager;
+import com.l2jserver.gameserver.datatables.MultiSell;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.entity.TvTEvent;
import com.l2jserver.gameserver.network.L2GameClient;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.network.serverpackets.ShowBoard;
@@ -77,6 +81,18 @@
{
TopBBSManager.getInstance().parsecmd(command, activeChar);
}
+ else if (command.startsWith("_bbsmultisell;"))
+ {
+ if(activeChar.isDead() || activeChar.isAlikeDead() || TvTEvent.isStarted() || activeChar.isInSiege() || activeChar.isCastingNow() || activeChar.isInCombat() || activeChar.isAttackingNow() || activeChar.isInOlympiadMode() || activeChar.isInJail() || activeChar.isFlying() || activeChar.getKarma() > 0 || activeChar.isInDuel()){
+ activeChar.sendMessage("В данных условиях использовать Шоп запрещено");
+ return;
+ }
+ StringTokenizer st = new StringTokenizer(command, ";");
+ st.nextToken();
+ TopBBSManager.getInstance().parsecmd("_bbstop;" + st.nextToken(), activeChar);
+ int multisell = Integer.parseInt(st.nextToken());
+ MultiSell.getInstance().separateAndSend(multisell, activeChar, null, false);
+ }
else if (command.startsWith("_bbsloc"))
{
RegionBBSManager.getInstance().parsecmd(command, activeChar);
Index: D:/Code/L2J_Server/java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java
===================================================================
--- D:/Code/L2J_Server/java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java (revision 4510)
+++ D:/Code/L2J_Server/java/com/l2jserver/gameserver/communitybbs/CommunityBoard.java (working copy)
@@ -14,13 +14,19 @@
*/
package com.l2jserver.gameserver.communitybbs;
+import java.util.StringTokenizer;
+
import com.l2jserver.Config;
+import com.l2jserver.gameserver.communitybbs.Manager.BuffBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.ClanBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.PostBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.RegionBBSManager;
+import com.l2jserver.gameserver.communitybbs.Manager.TeleportBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.TopBBSManager;
import com.l2jserver.gameserver.communitybbs.Manager.TopicBBSManager;
+import com.l2jserver.gameserver.datatables.MultiSell;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.entity.TvTEvent;
import com.l2jserver.gameserver.network.L2GameClient;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.network.serverpackets.ShowBoard;
@@ -77,6 +83,26 @@
{
TopBBSManager.getInstance().parsecmd(command, activeChar);
}
+ else if (command.startsWith("_bbs_buff"))
+ {
+ BuffBBSManager.getInstance().parsecmd(command, activeChar);
+ }
+ else if (command.startsWith("_bbsteleport;"))
+ {
+ TeleportBBSManager.getInstance().parsecmd(command, activeChar);
+ }
+ else if (command.startsWith("_bbsmultisell;"))
+ {
+ if(activeChar.isDead() || activeChar.isAlikeDead() || TvTEvent.isStarted() || activeChar.isInSiege() || activeChar.isCastingNow() || activeChar.isInCombat() || activeChar.isAttackingNow() || activeChar.isInOlympiadMode() || activeChar.isInJail() || activeChar.isFlying() || activeChar.getKarma() > 0 || activeChar.isInDuel()){
+ activeChar.sendMessage("В данных условиях использовать Шоп запрещено");
+ return;
+ }
+ StringTokenizer st = new StringTokenizer(command, ";");
+ st.nextToken();
+ TopBBSManager.getInstance().parsecmd("_bbstop;" + st.nextToken(), activeChar);
+ int multisell = Integer.parseInt(st.nextToken());
+ MultiSell.getInstance().separateAndSend(multisell, activeChar, null, false);
+ }
else if (command.startsWith("_bbsloc"))
{
RegionBBSManager.getInstance().parsecmd(command, activeChar);
Index: /java/com/l2jserver/gameserver/model/L2Effect.java
===================================================================
--- /java/com/l2jserver/gameserver/model/L2Effect.java (revision 4510)
+++ /java/com/l2jserver/gameserver/model/L2Effect.java (working copy)
@@ -663,4 +663,9 @@
{
return false;
}
+
+ public int getId()
+ {
+ return getSkill().getId();
+ }
}
\ No newline at end of file
Index: /java/com/l2jserver/gameserver/communitybbs/Manager/TeleportBBSManager.java
===================================================================
--- /java/com/l2jserver/gameserver/communitybbs/Manager/TeleportBBSManager.java (revision 0)
+++ /java/com/l2jserver/gameserver/communitybbs/Manager/TeleportBBSManager.java (revision 0)
@@ -0,0 +1,281 @@
+package com.l2jserver.gameserver.communitybbs.Manager;
+
+import java.sql.Connection;
+import java.sql.PreparedStatement;
+import java.sql.ResultSet;
+import java.util.StringTokenizer;
+import java.util.logging.Logger;
+
+import javolution.text.TextBuilder;
+
+import com.l2jserver.L2DatabaseFactory;
+import com.l2jserver.gameserver.cache.HtmCache;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.entity.TvTEvent;
+import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
+import com.l2jserver.gameserver.network.serverpackets.ShowBoard;
+
+public class TeleportBBSManager extends BaseBBSManager
+{
+
+ @SuppressWarnings("unused")
+ private static Logger _log = Logger.getLogger(TeleportBBSManager.class.getName());
+
+ public class CBteleport
+ {
+ public int TpId = 0; // Teport location ID
+ public String TpName = ""; // Location name
+ public int PlayerId = 0; // charID
+ public int xC = 0; // Location coords X
+ public int yC = 0; // Location coords Y
+ public int zC = 0; // Location coords Z
+ }
+
+ private static TeleportBBSManager _Instance = null;
+
+ public static TeleportBBSManager getInstance()
+ {
+ if(_Instance == null)
+ _Instance = new TeleportBBSManager();
+ return _Instance;
+ }
+
+ public String points[][];
+
+ @Override
+ public void parsecmd(String command, L2PcInstance activeChar)
+ {
+ if(command.equals("_bbsteleport;"))
+ {
+ showTp(activeChar);
+ }
+ else if(command.startsWith("_bbsteleport;delete;"))
+ {
+ StringTokenizer stDell = new StringTokenizer(command, ";");
+ stDell.nextToken();
+ stDell.nextToken();
+ int TpNameDell = Integer.parseInt(stDell.nextToken());
+ delTp(activeChar, TpNameDell);
+ showTp(activeChar);
+ }
+ else if(command.startsWith("_bbsteleport;save;"))
+ {
+ StringTokenizer stAdd = new StringTokenizer(command, ";");
+ stAdd.nextToken();
+ stAdd.nextToken();
+ String TpNameAdd = stAdd.nextToken();
+ AddTp(activeChar, TpNameAdd);
+ showTp(activeChar);
+ }
+ else if(command.startsWith("_bbsteleport;teleport;"))
+ {
+ StringTokenizer stGoTp = new StringTokenizer(command, " ");
+ stGoTp.nextToken();
+ int xTp = Integer.parseInt(stGoTp.nextToken());
+ int yTp = Integer.parseInt(stGoTp.nextToken());
+ int zTp = Integer.parseInt(stGoTp.nextToken());
+ int priceTp = Integer.parseInt(stGoTp.nextToken());
+ goTp(activeChar, xTp, yTp, zTp, priceTp);
+ showTp(activeChar);
+ }
+ else
+ {
+ ShowBoard sb = new ShowBoard("<html><body><br><br><center>the command: " + command
+ + " is not implemented yet</center><br><br></body></html>", "101");
+ activeChar.sendPacket(sb);
+ activeChar.sendPacket(new ShowBoard(null, "102"));
+ activeChar.sendPacket(new ShowBoard(null, "103"));
+ }
+ }
+ @SuppressWarnings("cast")
+ private void goTp(L2PcInstance activeChar, int xTp, int yTp, int zTp, int priceTp)
+ {
+ if(activeChar.isDead() || activeChar.isAlikeDead() || TvTEvent.isStarted() || activeChar.isInSiege() || activeChar.isCastingNow() || activeChar.isInCombat() || activeChar.isAttackingNow() || activeChar.isInOlympiadMode() || activeChar.isInJail() || activeChar.isFlying() || activeChar.getKarma() > 0 || activeChar.isInDuel()){
+ activeChar.sendMessage("В данных условиях телепортация запрещена");
+ return;
+ }
+ if(priceTp > 0 && activeChar.getAdena() < priceTp)
+ {
+ activeChar.sendMessage("Недостаточно Адены");
+ return;
+ }
+
+ else
+ {
+ if(priceTp > 0)
+ {
+ activeChar.reduceAdena("Teleport", (long) priceTp, activeChar, true);
+ }
+ activeChar.teleToLocation(xTp,yTp,zTp);
+ }
+ }
+ private void showTp(L2PcInstance activeChar)
+ {
+ CBteleport tp;
+ Connection con = null;
+ try
+ {
+ con = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement st = con.prepareStatement("SELECT * FROM comteleport WHERE charId=?;");
+ st.setLong(1, activeChar.getObjectId());
+ ResultSet rs = st.executeQuery();
+ TextBuilder html = new TextBuilder();
+ html.append("<table width=220>");
+ while(rs.next())
+ {
+
+ tp = new CBteleport();
+ tp.TpId = rs.getInt("TpId");
+ tp.TpName = rs.getString("name");
+ tp.PlayerId = rs.getInt("charId");
+ tp.xC = rs.getInt("xPos");
+ tp.yC = rs.getInt("yPos");
+ tp.zC = rs.getInt("zPos");
+ html.append("<tr>");
+ html.append("<td>");
+ html.append("<button value=\""+ tp.TpName +"\" action=\"bypass -h _bbsteleport;teleport; " + tp.xC + " " + tp.yC + " " + tp.zC + " " + 100000 + "\" width=100 height=20 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
+ html.append("</td>");
+ html.append("<td>");
+ html.append("<button value=\"Удалить\" action=\"bypass -h _bbsteleport;delete;" + tp.TpId + "\" width=100 height=20 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
+ html.append("</td>");
+ html.append("</tr>");
+ }
+ html.append("</table>");
+
+ String content = HtmCache.getInstance().getHtmForce(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/50.htm");
+ NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
+ adminReply.setHtml(content);
+ adminReply.replace("%tp%", html.toString());
+ /*separateAndSend(adminReply.getHtm(), activeChar);*/
+ return;
+
+ }
+ catch (Exception e)
+ {
+ }
+ finally
+ {
+ try
+ {
+ con.close();
+ }
+ catch (Exception e)
+ {
+ }
+ }
+
+ }
+ private void delTp(L2PcInstance activeChar, int TpNameDell)
+ {
+ Connection conDel = null;
+ try
+ {
+ conDel = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement stDel = conDel.prepareStatement("DELETE FROM comteleport WHERE charId=? AND TpId=?;");
+ stDel.setInt(1, activeChar.getObjectId());
+ stDel.setInt(2, TpNameDell);
+ stDel.execute();
+ }
+ catch (Exception e)
+ {
+ }
+ finally
+ {
+ try
+ {
+ conDel.close();
+ }
+ catch (Exception e)
+ {
+ }
+ }
+
+ }
+
+ private void AddTp(L2PcInstance activeChar, String TpNameAdd)
+ {
+ if(activeChar.isDead() || activeChar.isAlikeDead() || activeChar.isCastingNow() || activeChar.isAttackingNow())
+ {
+ activeChar.sendMessage("Сохранить закладку в вашем состоянии невозможно");
+ return;
+ }
+
+ if(activeChar.isInCombat())
+ {
+ activeChar.sendMessage("Сохранить закладку в боевом режиме нельзя");
+ return;
+ }
+
+ if(activeChar.isInsideZone((byte)11) || activeChar.isInsideZone((byte)5) || activeChar.isInsideZone((byte)9) || activeChar.isInsideZone((byte)10) || activeChar.isInsideZone((byte)3) || activeChar.isInsideZone((byte)16) || activeChar.isInsideZone((byte)8) || activeChar.isFlying())
+ {
+ activeChar.sendMessage("Нельзя сохранить данную локацию");
+ return;
+ }
+ if(TpNameAdd.equals("") || TpNameAdd.equals(null))
+ {
+ activeChar.sendMessage("Вы не ввели имя закладки");
+ return;
+ }
+ Connection con = null;
+ try
+ {
+ con = L2DatabaseFactory.getInstance().getConnection();
+
+ PreparedStatement st = con.prepareStatement("SELECT COUNT(*) FROM comteleport WHERE charId=?;");
+ st.setLong(1, activeChar.getObjectId());
+ ResultSet rs = st.executeQuery();
+ rs.next();
+ if(rs.getInt(1) <= 9)
+ {
+ PreparedStatement st1 = con.prepareStatement("SELECT COUNT(*) FROM comteleport WHERE charId=? AND name=?;");
+ st1.setLong(1, activeChar.getObjectId());
+ st1.setString(2, TpNameAdd);
+ ResultSet rs1 = st1.executeQuery();
+ rs1.next();
+ if(rs1.getInt(1) == 0)
+ {
+ PreparedStatement stAdd = con.prepareStatement("INSERT INTO comteleport (charId,xPos,yPos,zPos,name) VALUES(?,?,?,?,?)");
+ stAdd.setInt(1, activeChar.getObjectId());
+ stAdd.setInt(2, activeChar.getX());
+ stAdd.setInt(3, activeChar.getY());
+ stAdd.setInt(4, activeChar.getZ());
+ stAdd.setString(5, TpNameAdd);
+ stAdd.execute();
+ }
+ else
+ {
+ PreparedStatement stAdd = con.prepareStatement("UPDATE comteleport SET xPos=?, yPos=?, zPos=? WHERE charId=? AND name=?;");
+ stAdd.setInt(1, activeChar.getObjectId());
+ stAdd.setInt(2, activeChar.getX());
+ stAdd.setInt(3, activeChar.getY());
+ stAdd.setInt(4, activeChar.getZ());
+ stAdd.setString(5, TpNameAdd);
+ stAdd.execute();
+ }
+ }
+ else
+ {
+ activeChar.sendMessage("Вы не можете сохранить более десяти закладок");
+ }
+
+ }
+ catch (Exception e)
+ {
+ }
+ finally
+ {
+ try
+ {
+ con.close();
+ }
+ catch (Exception e)
+ {
+ }
+ }
+ }
+ @Override
+ public void parsewrite(String ar1, String ar2, String ar3, String ar4, String ar5, L2PcInstance activeChar)
+ {
+
+ }
+}
\ No newline at end of file
Index: /java/com/l2jserver/gameserver/communitybbs/Manager/BuffBBSManager.java
===================================================================
--- /java/com/l2jserver/gameserver/communitybbs/Manager/BuffBBSManager.java (revision 0)
+++ /java/com/l2jserver/gameserver/communitybbs/Manager/BuffBBSManager.java (revision 0)
@@ -0,0 +1,611 @@
+package com.l2jserver.gameserver.communitybbs.Manager;
+
+import java.sql.Connection;
+import java.sql.PreparedStatement;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+
+
+import com.l2jserver.Config;
+import com.l2jserver.L2DatabaseFactory;
+import com.l2jserver.gameserver.cache.HtmCache;
+import com.l2jserver.gameserver.datatables.SkillTable;
+import com.l2jserver.gameserver.model.*;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.entity.TvTEvent;
+import com.l2jserver.gameserver.network.serverpackets.ExShowScreenMessage;
+
+public class BuffBBSManager extends BaseBBSManager
+{
+
+ private static BuffBBSManager _instance = new BuffBBSManager();
+ public int allskillid_1[][];
+
+ public BuffBBSManager()
+ {
+ Load();
+ }
+
+ public static BuffBBSManager getInstance()
+ {
+ if(_instance == null)
+ _instance = new BuffBBSManager();
+ return _instance;
+ }
+ public void Load()
+ {
+
+ Connection connn = null;
+ try
+ {
+ connn = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement count = connn.prepareStatement("SELECT COUNT(*) FROM communitybuff");
+ ResultSet countt = count.executeQuery();
+ countt.next();
+ allskillid_1 = new int[countt.getInt(1)][4];
+ PreparedStatement table = connn.prepareStatement("SELECT * FROM communitybuff");
+ ResultSet skills = table.executeQuery();
+ for(int i = 0; i < allskillid_1.length; i++)
+ {
+ skills.next();
+ allskillid_1[i][0] = skills.getInt(2);
+ allskillid_1[i][1] = skills.getInt(3);
+ allskillid_1[i][2] = skills.getInt(4);
+ allskillid_1[i][3] = skills.getInt(5);
+ }
+
+ count.close();
+ countt.close();
+ skills.close();
+ table.close();
+ connn.close();
+ }
+ catch(Exception ignored) { }
+ }
+ @Override
+ public void parsecmd(String command, L2PcInstance activeChar)
+ {
+ String[] parts = command.split("_");
+ boolean petbuff = false;
+ if(activeChar.isDead() || activeChar.isAlikeDead() || TvTEvent.isStarted() || activeChar.isInSiege() || activeChar.isCastingNow() || activeChar.isInCombat() || activeChar.isAttackingNow() || activeChar.isInOlympiadMode() || activeChar.isInJail() || activeChar.isFlying() || activeChar.getKarma() > 0 || activeChar.isInDuel())
+ {
+ activeChar.sendMessage("В данных условиях бафф запрещен");
+ return;
+ }
+ if (!(parts[2].startsWith("buff")))
+ return;
+ String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/60.htm");
+ separateAndSend(content, activeChar);
+
+ if(parts[4] != null && parts[4].startsWith(" Player"))
+ petbuff = false;
+ if(parts[4] != null && parts[4].startsWith(" Pet"))
+ petbuff = true;
+ if(parts[3].startsWith("FIGHERLIST"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ FIGHERLIST(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ FIGHERLIST(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("DANCEFIGHTERLIST"))
+ {
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ DANCEFIGHTERLIST(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ DANCEFIGHTERLIST(activeChar, petbuff);
+ }
+ }
+ if(parts[3].startsWith("MAGELIST"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ MAGELIST(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ MAGELIST(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("DANCEMAGELIST"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ DANCEMAGELIST(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ DANCEMAGELIST(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("SAVE"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ SAVE(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ } else
+ {
+ SAVE(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("BUFF"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ BUFF(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ } else
+ {
+ BUFF(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("CANCEL"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ CANCEL(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ CANCEL(activeChar, petbuff);
+ }
+ if(parts[3].startsWith("REGMP"))
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ REGMP(activeChar, petbuff);
+ else
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ else
+ {
+ REGMP(activeChar, petbuff);
+ }
+ for(int key = 0; key < allskillid_1.length; key++)
+ {
+ L2Skill skill;
+ int skilllevel;
+ if(Config.BUFF_PEACE)
+ {
+ if(activeChar.isInsideZone((byte)2))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[key][0]);
+ skill = SkillTable.getInstance().getInfo(allskillid_1[key][0], skilllevel);
+ if(parts[3].startsWith(skill.getName()))
+ SKILL(activeChar, petbuff, key, skill);
+ } else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, you not town!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[key][0]);
+ skill = SkillTable.getInstance().getInfo(allskillid_1[key][0], skilllevel);
+ if(parts[3].startsWith(skill.getName()))
+ SKILL(activeChar, petbuff, key, skill);
+ }
+ }
+
+ private void FIGHERLIST(L2PcInstance activeChar, boolean petbuff)
+ {
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ if(aSkillid[1] != 1 && aSkillid[1] != 3)
+ continue;
+ L2Skill skill;
+ int skilllevel;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, aSkillid[3], aSkillid[2], activeChar, true))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ }
+
+ private void DANCEFIGHTERLIST(L2PcInstance activeChar, boolean petbuff)
+ {
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ if(aSkillid[1] != 4 && aSkillid[1] != 6)
+ continue;
+ L2Skill skill;
+ int skilllevel;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, aSkillid[3], aSkillid[2], activeChar, true))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ }
+
+ private void MAGELIST(L2PcInstance activeChar, boolean petbuff)
+ {
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ if(aSkillid[1] != 2 && aSkillid[1] != 3)
+ continue;
+ L2Skill skill;
+ int skilllevel;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, aSkillid[3], aSkillid[2], activeChar, true))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ }
+
+ private void DANCEMAGELIST(L2PcInstance activeChar, boolean petbuff)
+ {
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ if(aSkillid[1] != 5 && aSkillid[1] != 6)
+ continue;
+ L2Skill skill;
+ int skilllevel;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, aSkillid[3], aSkillid[2], activeChar, true))
+ {
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ continue;
+ }
+ skilllevel = SkillTable.getInstance().getMaxLevel(aSkillid[0]);
+ skill = SkillTable.getInstance().getInfo(aSkillid[0], skilllevel);
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ }
+
+ private void BUFF(L2PcInstance activeChar, boolean petbuff)
+ {
+ Connection con = null;
+ try
+ {
+ con = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement statement = con.prepareStatement("SELECT * FROM community_skillsave WHERE charId=?;");
+ statement.setInt(1, activeChar.getObjectId());
+ ResultSet rcln = statement.executeQuery();
+ rcln.next();
+ if(!petbuff)
+ {
+ char allskills[] = rcln.getString(2).toCharArray();
+ if(allskills.length == allskillid_1.length)
+ {
+ for(int i = 0; i < allskillid_1.length; i++)
+ if(allskills[i] == '1')
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, allskillid_1[i][3], allskillid_1[i][2], activeChar, true))
+ {
+ int skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[i][0]);
+ L2Skill skill = SkillTable.getInstance().getInfo(allskillid_1[i][0], skilllevel);
+ skill.getEffects(activeChar, activeChar);
+ activeChar.getLevel();
+ } else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ } else
+ {
+ int skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[i][0]);
+ L2Skill skill = SkillTable.getInstance().getInfo(allskillid_1[i][0], skilllevel);
+ skill.getEffects(activeChar, activeChar);
+ }
+
+ }
+ }
+ else
+ {
+ char petskills[] = rcln.getString(3).toCharArray();
+ if(petskills.length == allskillid_1.length)
+ {
+ for(int i = 0; i < allskillid_1.length; i++)
+ {
+ if(petskills[i] != '1')
+ continue;
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, allskillid_1[i][3], allskillid_1[i][2], activeChar, true))
+ {
+ int skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[i][0]);
+ L2Skill skill = SkillTable.getInstance().getInfo(allskillid_1[i][0], skilllevel);
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ } else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ } else
+ {
+ int skilllevel = SkillTable.getInstance().getMaxLevel(allskillid_1[i][0]);
+ L2Skill skill = SkillTable.getInstance().getInfo(allskillid_1[i][0], skilllevel);
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ }
+
+ }
+ }
+ rcln.close();
+ statement.close();
+ }
+ catch(Exception ignored)
+ {
+ try
+ {
+ if(con != null)
+ con.close();
+ }
+ catch(SQLException e)
+ {
+ e.printStackTrace();
+ }
+
+ }
+ try
+ {
+ if(con != null)
+ con.close();
+ }
+ catch(SQLException e)
+ {
+ e.printStackTrace();
+ }
+ }
+
+ private void CANCEL(L2PcInstance activeChar, boolean petbuff)
+ {
+ if(!petbuff)
+ activeChar.stopAllEffects();
+ else
+ activeChar.getPet().stopAllEffects();
+ }
+
+ private void REGMP(L2PcInstance activeChar, boolean petbuff)
+ {
+ if(!petbuff)
+ activeChar.setCurrentMp(activeChar.getMaxMp());
+ else
+ activeChar.getPet().setCurrentMp(activeChar.getPet().getMaxMp());
+ }
+
+ private void SKILL(L2PcInstance activeChar, boolean petbuff, int key, L2Skill skill)
+ {
+ if(Config.MANI_BUFF)
+ {
+ if(activeChar.destroyItemByItemId(null, allskillid_1[key][3], allskillid_1[key][2], activeChar, true))
+ {
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+ else
+ {
+ activeChar.sendPacket(new ExShowScreenMessage("Sorry, not item!!", 3000));
+ }
+ }
+ else
+ if(!petbuff)
+ skill.getEffects(activeChar, activeChar);
+ else
+ skill.getEffects(activeChar.getPet(), activeChar.getPet());
+ }
+
+ private void SAVE(L2PcInstance activeChar, boolean petbuff)
+ {
+ Connection con = null;
+ try
+ {
+ con = L2DatabaseFactory.getInstance().getConnection();
+ PreparedStatement stat = con.prepareStatement("SELECT COUNT(*) FROM community_skillsave WHERE charId=?;");
+ stat.setInt(1, activeChar.getObjectId());
+ ResultSet rset = stat.executeQuery();
+ rset.next();
+ String allbuff = "";
+ if(!petbuff)
+ {
+ L2Effect skill[] = activeChar.getAllEffects();
+ boolean flag = true;
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ for(int j = 0; j < skill.length; j++)
+ {
+ if(aSkillid[0] == skill[j].getId())
+ {
+ allbuff = (new StringBuilder()).append(allbuff).append(1).toString();
+ flag = false;
+ }
+ if(j == skill.length - 1 && flag)
+ allbuff = (new StringBuilder()).append(allbuff).append(0).toString();
+ }
+
+ flag = true;
+ }
+
+ if(rset.getInt(1) == 0)
+ {
+ PreparedStatement statement1 = con.prepareStatement("INSERT INTO community_skillsave (charId,skills) values (?,?)");
+ statement1.setInt(1, activeChar.getObjectId());
+ statement1.setString(2, allbuff);
+ statement1.execute();
+ statement1.close();
+ }
+ else
+ {
+ PreparedStatement statement = con.prepareStatement("UPDATE community_skillsave SET skills=? WHERE charId=?;");
+ statement.setString(1, allbuff);
+ statement.setInt(2, activeChar.getObjectId());
+ statement.execute();
+ statement.close();
+ }
+ }
+ else
+ {
+ L2Effect skill[] = activeChar.getPet().getAllEffects();
+ boolean flag = true;
+ int arr$[][] = allskillid_1;
+ int len$ = arr$.length;
+ for(int i$ = 0; i$ < len$; i$++)
+ {
+ int aSkillid[] = arr$[i$];
+ for(int j = 0; j < skill.length; j++)
+ {
+ if(aSkillid[0] == skill[j].getId())
+ {
+ allbuff = (new StringBuilder()).append(allbuff).append(1).toString();
+ flag = false;
+ }
+ if(j == skill.length - 1 && flag)
+ allbuff = (new StringBuilder()).append(allbuff).append(0).toString();
+ }
+
+ flag = true;
+ }
+
+ if(rset.getInt(1) == 0)
+ {
+ PreparedStatement statement1 = con.prepareStatement("INSERT INTO community_skillsave (charId,pet) values (?,?)");
+ statement1.setInt(1, activeChar.getObjectId());
+ statement1.setString(2, allbuff);
+ statement1.execute();
+ statement1.close();
+ } else
+ {
+ PreparedStatement statement = con.prepareStatement("UPDATE community_skillsave SET pet=? WHERE charId=?;");
+ statement.setString(1, allbuff);
+ statement.setInt(2, activeChar.getObjectId());
+ statement.execute();
+ statement.close();
+ }
+ }
+ rset.close();
+ stat.close();
+ }
+ catch(Exception ignored)
+ {
+ try
+ {
+ if(con != null)
+ con.close();
+ }
+ catch(SQLException e)
+ {
+ e.printStackTrace();
+ }
+ }
+ try
+ {
+ if(con != null)
+ con.close();
+ }
+ catch(SQLException e)
+ {
+ e.printStackTrace();
+ }
+ }
+
+ @Override
+ public void parsewrite(String s, String s1, String s2, String s3, String s4, L2PcInstance l2pcinstance)
+ {
+ }
+}
\ No newline at end of file
и вобше это комунити можно впихнуть на High Five? оно просто для Freya