freedy Posted November 17, 2013 Posted November 17, 2013 Hello guys, I'm trying to solve one problem. How can I enable Friends/Mail tabs in community board without using community server? Is it possible? Any1 did it yet? thanks for answers.
0 freedy Posted November 17, 2013 Author Posted November 17, 2013 (edited) or not.... just looking at it and it doesnt seem right... probably wrong code to edit god damn.... :poker face: or.... I'm rly noob :D there is probably the community board sending _mail or _friend bypass instead of _bbsfriend and _bbsmail :) you can lock it thanks Edited November 17, 2013 by freedy
0 SweeTs Posted November 17, 2013 Posted November 17, 2013 I guess you could 'call the function' by command, but not sure if there won't be a 'problem' (community board disabled msg) :P
0 freedy Posted November 17, 2013 Author Posted November 17, 2013 that's exactly the problem with it, instead of using the right _bbs manager it shows the Disables Community Server message :rage:
0 freedy Posted November 17, 2013 Author Posted November 17, 2013 lol found it :D else if (_command.startsWith("bbs")) { if (Config.ENABLE_COMMUNITY_BOARD) { if (!CommunityServerThread.getInstance().sendPacket(new RequestShowCommunityBoard(activeChar.getObjectId(), _command))) { activeChar.sendPacket(SystemMessageId.CB_OFFLINE); } } else { CommunityBoard.getInstance().handleCommands(getClient(), _command); } } else if (_command.startsWith("_mail")) { if (!CommunityServerThread.getInstance().sendPacket(new RequestShowCommunityBoard(activeChar.getObjectId(), "_bbsmail"))) { activeChar.sendPacket(SystemMessageId.CB_OFFLINE); } } else if (_command.startsWith("_friend")) { if (!CommunityServerThread.getInstance().sendPacket(new RequestShowCommunityBoard(activeChar.getObjectId(), "_bbsfriend"))) { activeChar.sendPacket(SystemMessageId.CB_OFFLINE); } }
0 ^Wyatt Posted November 17, 2013 Posted November 17, 2013 or not.... just looking at it and it doesnt seem right... probably wrong code to edit god damn.... :poker face: or.... I'm rly noob :D there is probably the community board sending _mail or _friend bypass instead of _bbsfriend and _bbsmail :) you can lock it thanks kk
Question
freedy
Hello guys,
I'm trying to solve one problem.
How can I enable Friends/Mail tabs in community board without using community server? Is it possible? Any1 did it yet? thanks for answers.
5 answers to this question
Recommended Posts