Hello!
L2J server rev: 6652
L2J DP rev: 10449
I have a problem:
In CB:
<td><button value="Menu" action="bypass -h _bbstop" width="90" height="40" back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
Error:
Community Board: unknown Board: _bbstop
unknown Board: _bbstop
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Initiates
- Posts: 88
- Joined: Fri Jul 26, 2013 10:16 am
Re: unknown Board: _bbstop
Strel wrote:Hello!
L2J server rev: 6652
L2J DP rev: 10449
I have a problem:
In CB:
<td><button value="Menu" action="bypass -h _bbstop" width="90" height="40" back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
Error:
Community Board: unknown Board: _bbstop
Post your Error not just the line! (from console!)
and maybe your code on CommunityBoard.java
but as i see your pointing this comand to an unknown Board
your board should look like this:
CommunityBoard.java:
Code: Select all
else if (command.startsWith("_bbstop")){ TopBBSManager.getInstance().parsecmd(command, activeChar);}
TopBBSManager.java:
Code: Select all
if (command.equals("_bbstop")){ it should point to an Htm/Html file "data/html/CommunityBoard/index.htm"); or to a StringBuilder....!!it }

-
- Posts: 4
- Joined: Sat Dec 04, 2010 9:19 pm
Re: unknown Board: _bbstop
My board looks exactly the same.
In General.properties:
Error in CommunityServer log:
In General.properties:
Code: Select all
# Type of the Community board:# 0 = community is disabled# 1 = old community# 2 = full community (not fully implemented, experimental)# Default: 1CommunityType = 2
Code: Select all
java.lang.NullPointerExceptionat com.l2jserver.communityserver.communityboard.CommunityBoard.send(CommunityBoard.java:80)at com.l2jserver.communityserver.communityboard.boards.ServerInfoBoard.showMainPage(ServerInfoBoard.java:45)at com.l2jserver.communityserver.communityboard.boards.ServerInfoBoard.parseCmd(ServerInfoBoard.java:38)at com.l2jserver.communityserver.communityboard.CommunityBoardManager.parseCmd(CommunityBoardManager.java:448)at com.l2jserver.communityserver.network.readpackets.RequestShowCommunityBoard.run(RequestShowCommunityBoard.java:41)at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)at java.lang.Thread.run(Thread.java:745)
-
- Initiates
- Posts: 88
- Joined: Fri Jul 26, 2013 10:16 am
Re: unknown Board: _bbstop
sry im not using the communityserver.Strel wrote:My board looks exactly the same.
In General.properties:
Error in CommunityServer log:Code: Select all
# Type of the Community board:# 0 = community is disabled# 1 = old community# 2 = full community (not fully implemented, experimental)# Default: 1CommunityType = 2
Code: Select all
java.lang.NullPointerExceptionat com.l2jserver.communityserver.communityboard.CommunityBoard.send(CommunityBoard.java:80)at com.l2jserver.communityserver.communityboard.boards.ServerInfoBoard.showMainPage(ServerInfoBoard.java:45)at com.l2jserver.communityserver.communityboard.boards.ServerInfoBoard.parseCmd(ServerInfoBoard.java:38)at com.l2jserver.communityserver.communityboard.CommunityBoardManager.parseCmd(CommunityBoardManager.java:448)at com.l2jserver.communityserver.network.readpackets.RequestShowCommunityBoard.run(RequestShowCommunityBoard.java:41)at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)at java.lang.Thread.run(Thread.java:745)
i was talking about the build in communityboard.
maybe someone from developers can help you about that NPE!
P.S. as i know (not much) instead of _bbstop use _bbshome in communityserver
