12-20-2011, 12:09 AM
Здравствуйте, такая проблема. При нажатии alt+b показывается сообщение о том, что не может найти файл 'index.htm'
Сборка L2jserver. Пробовал менять руками путь до index.htm в com.l2jserver.communityserver.communityboard.boards.TopBoard но результата никакого не дало.
Сборка L2jserver. Пробовал менять руками путь до index.htm в com.l2jserver.communityserver.communityboard.boards.TopBoard но результата никакого не дало.
Открыть спойлер
TopBoard// Decompiled by DJ v3.12.12.96 Copyright 2011 Atanas Neshkov Date: 19.12.2011 3:00:37
// Home Page: http://members.fortunecity.com/neshkov/dj.html http://www.neshkov.com/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: TopBoard.java
package com.l2jserver.communityserver.communityboard.boards;
import com.l2jserver.communityserver.cache.HtmCache;
import com.l2jserver.communityserver.communityboard.CommunityBoard;
import com.l2jserver.communityserver.communityboard.CommunityBoardManager;
import java.util.StringTokenizer;
public class TopBoard extends CommunityBoard
{
public TopBoard(CommunityBoardManager mgr)
{
super(mgr);
}
public final void parseCmd(int playerObjId, String cmd)
{
String file = "";
String content = "";
if(cmd.equalsIgnoreCase("_bbshome"))
file = "index.htm";
else
if(cmd.startsWith("_bbshome;"))
{
StringTokenizer st = new StringTokenizer(cmd, ";");
st.nextToken();
file = st.nextToken();
}
if(file.isEmpty())
content = "<html><body><br><br><center>Error: no file name </center></body></html>";
else
content = HtmCache.getInstance().getHtm(getCommunityBoardManager().getSQLDPId(), (new StringBuilder()).append("html/").append(file).toString());
if(content == null)
content = (new StringBuilder()).append("<html><body><br><br><center>404 :File Not found: '").append(file).append("' </center></body></html>").toString();
super.send(playerObjId, content);
}
public final void parseWrite(int i, String s, String s1, String s2, String s3, String s4)
{
}
}
// Home Page: http://members.fortunecity.com/neshkov/dj.html http://www.neshkov.com/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: TopBoard.java
package com.l2jserver.communityserver.communityboard.boards;
import com.l2jserver.communityserver.cache.HtmCache;
import com.l2jserver.communityserver.communityboard.CommunityBoard;
import com.l2jserver.communityserver.communityboard.CommunityBoardManager;
import java.util.StringTokenizer;
public class TopBoard extends CommunityBoard
{
public TopBoard(CommunityBoardManager mgr)
{
super(mgr);
}
public final void parseCmd(int playerObjId, String cmd)
{
String file = "";
String content = "";
if(cmd.equalsIgnoreCase("_bbshome"))
file = "index.htm";
else
if(cmd.startsWith("_bbshome;"))
{
StringTokenizer st = new StringTokenizer(cmd, ";");
st.nextToken();
file = st.nextToken();
}
if(file.isEmpty())
content = "<html><body><br><br><center>Error: no file name </center></body></html>";
else
content = HtmCache.getInstance().getHtm(getCommunityBoardManager().getSQLDPId(), (new StringBuilder()).append("html/").append(file).toString());
if(content == null)
content = (new StringBuilder()).append("<html><body><br><br><center>404 :File Not found: '").append(file).append("' </center></body></html>").toString();
super.send(playerObjId, content);
}
public final void parseWrite(int i, String s, String s1, String s2, String s3, String s4)
{
}
}
TopBBSManager
package com.l2jserver.gameserver.communitybbs.Manager;
import com.l2jserver.gameserver.cache.HtmCache;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.serverpackets.ShowBoard;
import java.util.StringTokenizer;
public class TopBBSManager extends BaseBBSManager
{
public void parsecmd(String command, L2PcInstance activeChar)
{
if (command.equals("_bbstop"))
{
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/index.htm");
if (content == null)
{
content = "<html><body><br><br><center>404 :File not found: 'data/html/CommunityBoard/index.htm' </center></body></html>";
}
separateAndSend(content, activeChar);
}
else if (command.equals("_bbshome"))
{
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/index.htm");
if (content == null)
{
content = "<html><body><br><br><center>404 :File not found: 'data/html/CommunityBoard/index.htm' </center></body></html>";
}
separateAndSend(content, activeChar);
}
else if (command.startsWith("_bbstop;"))
{
StringTokenizer st = new StringTokenizer(command, ";");
st.nextToken();
int idp = Integer.parseInt(st.nextToken());
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/" + idp + ".htm");
if (content == null)
{
content = "<html><body><br><br><center>404 :File not found: 'data/html/CommunityBoard/" + idp + ".htm' </center></body></html>";
}
separateAndSend(content, 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"));
}
}
public void parsewrite(String ar1, String ar2, String ar3, String ar4, String ar5, L2PcInstance activeChar)
{
}
public static TopBBSManager getInstance()
{
return SingletonHolder._instance;
}
private static class SingletonHolder
{
protected static final TopBBSManager _instance = new TopBBSManager(null);
}
}
import com.l2jserver.gameserver.cache.HtmCache;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.serverpackets.ShowBoard;
import java.util.StringTokenizer;
public class TopBBSManager extends BaseBBSManager
{
public void parsecmd(String command, L2PcInstance activeChar)
{
if (command.equals("_bbstop"))
{
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/index.htm");
if (content == null)
{
content = "<html><body><br><br><center>404 :File not found: 'data/html/CommunityBoard/index.htm' </center></body></html>";
}
separateAndSend(content, activeChar);
}
else if (command.equals("_bbshome"))
{
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/index.htm");
if (content == null)
{
content = "<html><body><br><br><center>404 :File not found: 'data/html/CommunityBoard/index.htm' </center></body></html>";
}
separateAndSend(content, activeChar);
}
else if (command.startsWith("_bbstop;"))
{
StringTokenizer st = new StringTokenizer(command, ";");
st.nextToken();
int idp = Integer.parseInt(st.nextToken());
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/" + idp + ".htm");
if (content == null)
{
content = "<html><body><br><br><center>404 :File not found: 'data/html/CommunityBoard/" + idp + ".htm' </center></body></html>";
}
separateAndSend(content, 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"));
}
}
public void parsewrite(String ar1, String ar2, String ar3, String ar4, String ar5, L2PcInstance activeChar)
{
}
public static TopBBSManager getInstance()
{
return SingletonHolder._instance;
}
private static class SingletonHolder
{
protected static final TopBBSManager _instance = new TopBBSManager(null);
}
}