unknown Board: _bbstop

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
Strel
Posts: 4
Joined: Sat Dec 04, 2010 9:19 pm

unknown Board: _bbstop

Post by Strel »

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
Stalitsa
Initiates
Initiates
Posts: 88
Joined: Fri Jul 26, 2013 10:16 am

Re: unknown Board: _bbstop

Post by Stalitsa »

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);} 
and the pointing board should have this comand to execute

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  } 
Image
Strel
Posts: 4
Joined: Sat Dec 04, 2010 9:19 pm

Re: unknown Board: _bbstop

Post by Strel »

My board looks exactly the same.

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
Error in CommunityServer log:

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)
Stalitsa
Initiates
Initiates
Posts: 88
Joined: Fri Jul 26, 2013 10:16 am

Re: unknown Board: _bbstop

Post by Stalitsa »

Strel wrote:My board looks exactly the same.

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
Error in CommunityServer log:

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)
sry im not using the communityserver.
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
Image
Post Reply