I was trying to add top pk but i have a little problem. i created new file playerlist1 for pk but i dont know how to connect it in TopBBSManager. Here is my code.
else if (command.startsWith("_bbshome;"))
{
PlayerList pl = new PlayerList();
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>";
}
content = content.replaceAll("%PlayerList%", pl.loadPlayerList());
separateAndSend(content, activeChar);
}
else if (command.startsWith("_bbshome;"))
{
PlayerList1 pl = new PlayerList1();
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>";
}
content = content.replaceAll("%PlayerList1%", pl.loadPlayerList1());
separateAndSend(content, activeChar);
}
the problem is that i see %PlayerList1% instead of statistics..
Could u help me?