Group Forums

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107


I used this in order to add Group Forums, but brings up this when I go to Group Forums and buy the forum, it sticks:
You must be registered for see images attach
 

Pinkman

Posting Freak
Jul 27, 2016
814
193
Did you add the furnidata to emulator? External Vars? If all correctly purge cache (Cloudflare) then try again. If its still same problem hit f12 and show me your error logs.
 

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107
Code:
<furnitype id="5863" classname="guild_forum"><revision>51954</revision><defaultdir>0</defaultdir><xdim>2</xdim><ydim>1</ydim><partcolors/><name>Forum Furni</name><description>Double click to open Group Forum.</description><adurl></adurl><offerid>13767</offerid><buyout>1</buyout><rentofferid>-1</rentofferid><rentbuyout>0</rentbuyout><bc>0</bc><excludeddynamic>1</excludeddynamic><customparams></customparams><specialtype>17</specialtype><canstandon>0</canstandon><cansiton>0</cansiton><canlayon>0</canlayon><furniline>guilds</furniline></furnitype>

This is what I had to add to furnidata.xml

Did you add the furnidata to emulator? External Vars? If all correctly purge cache (Cloudflare) then try again. If its still same problem hit f12 and show me your error logs.

Didn't work.

External Variables? It didn't say to add anything to the vars.
 

Pinkman

Posting Freak
Jul 27, 2016
814
193
Code:
<furnitype id="5863" classname="guild_forum"><revision>51954</revision><defaultdir>0</defaultdir><xdim>2</xdim><ydim>1</ydim><partcolors/><name>Forum Furni</name><description>Double click to open Group Forum.</description><adurl></adurl><offerid>13767</offerid><buyout>1</buyout><rentofferid>-1</rentofferid><rentbuyout>0</rentbuyout><bc>0</bc><excludeddynamic>1</excludeddynamic><customparams></customparams><specialtype>17</specialtype><canstandon>0</canstandon><cansiton>0</cansiton><canlayon>0</canlayon><furniline>guilds</furniline></furnitype>

This is what I had to add to furnidata.xml



Didn't work.

External Variables? It didn't say to add anything to the vars.
ops sorry about that my mistake, Link me to your retro.
 

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107
and had to upload the following queries to the database:

Code:
INSERT INTO `furniture` VALUES (5863, 'guild_forum', 'Forum Furni', 's', 2, 1, 0, '1', '0', '0', 5863, '1', '1', '1', '1', '1', 'guild_forum', 0, 1, '0', '0', 0, 0, '0', 0, '0');
 
ops sorry about that my mistake, Link me to your retro.
zebbo.pw
 

Pinkman

Posting Freak
Jul 27, 2016
814
193
and had to upload the following queries to the database:

Code:
INSERT INTO `furniture` VALUES (5863, 'guild_forum', 'Forum Furni', 's', 2, 1, 0, '1', '0', '0', 5863, '1', '1', '1', '1', '1', 'guild_forum', 0, 1, '0', '0', 0, 0, '0', 0, '0');
 

zebbo.pw
Its not
 
Link dont work.
 

Joshhh

Member
Apr 13, 2016
323
172
Try running this;

Code:
DROP TABLE IF EXISTS `groups`;
CREATE TABLE `groups` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `desc` varchar(255) NOT NULL,
  `badge` varchar(50) NOT NULL,
  `owner_id` int(11) unsigned NOT NULL,
  `created` int(50) NOT NULL,
  `room_id` int(10) unsigned NOT NULL DEFAULT '0',
  `state` enum('0','1','2') NOT NULL DEFAULT '0',
  `colour1` int(11) NOT NULL DEFAULT '242424',
  `colour2` int(11) NOT NULL DEFAULT '242424',
  `admindeco` enum('0','1') NOT NULL DEFAULT '1',
  `has_forum` enum('1','0') NOT NULL DEFAULT '0',
  `forum_enabled` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`) USING BTREE,
  KEY `room_id` (`room_id`),
  KEY `owner` (`owner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;

DROP TABLE IF EXISTS `group_forums_settings`;
CREATE TABLE `group_forums_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group_id` int(11) NOT NULL,
  `who_can_read` int(11) NOT NULL DEFAULT '0',
  `who_can_post` int(11) NOT NULL DEFAULT '0',
  `who_can_init_discussions` int(11) NOT NULL DEFAULT '0',
  `who_can_mod` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

DROP TABLE IF EXISTS `group_forums_threads`;
CREATE TABLE `group_forums_threads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `timestamp` int(11) DEFAULT NULL,
  `caption` varchar(255) NOT NULL,
  `pinned` enum('0','1') NOT NULL DEFAULT '0',
  `locked` enum('0','1') NOT NULL DEFAULT '0',
  `deleted_level` int(11) NOT NULL DEFAULT '0',
  `deleter_user_id` int(11) NOT NULL DEFAULT '0',
  `forum_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

DROP TABLE IF EXISTS `group_forums_thread_posts`;
CREATE TABLE `group_forums_thread_posts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `timestamp` int(11) DEFAULT NULL,
  `message` varchar(255) NOT NULL,
  `deleted_level` int(11) NOT NULL DEFAULT '0',
  `deleter_user_id` int(11) NOT NULL DEFAULT '0',
  `thread_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
 

Central

Imagination is more important than knowledge.
Feb 22, 2015
709
107
Still didn't work...
Code:
20:30:19 - [ERROR] Exception:
System.FormatException: Input string was not in a correct format.
   at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffe
r& number, NumberFormatInfo info, Boolean parseDecimal)
   at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo in
fo)
   at System.Convert.ToInt32(String value)
   at Plus.Communication.Packets.Incoming.Catalog.PurchaseFromCatalogEvent.Parse
(GameClient Session, ClientPacket Packet) in C:\inetpub\wwwroot\Zebb1\Release 2\
Release 2\Emulator Source2\Communication\Packets\Incoming\Catalog\PurchaseFromCa
talogEvent.cs:line 269
   at Plus.Communication.Packets.PacketManager.TryExecutePacket(GameClient Sessi
on, ClientPacket Packet) in C:\inetpub\wwwroot\Zebb1\Release 2\Release 2\Emulato
r Source2\Communication\Packets\PacketManager.cs:line 154
   at Plus.HabboHotel.GameClients.GameClient.parser_onNewPacket(ClientPacket Mes
sage) in C:\inetpub\wwwroot\Zebb1\Release 2\Release 2\Emulator Source2\HabboHote
l\GameClients\GameClient.cs:line 76

and I'm guessing it's this:
Code:
   at Plus.Communication.Packets.Incoming.Catalog.PurchaseFromCatalogEvent.Parse
(GameClient Session, ClientPacket Packet) in C:\inetpub\wwwroot\Zebb1\Release 2\
Release 2\Emulator Source2\Communication\Packets\Incoming\Catalog\PurchaseFromCa
talogEvent.cs:line 269
Before you say to disable MySQL Strict Mode, it's already disabled through MySQL Configuration
 
PurchaseFromCatalogEvent.cs

Code:
Severity    Code    Description    Project    File    Line    Suppression State
Error    CS0246    The type or namespace name 'DeleteGroupPostEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    854    Active
Error    CS1061    'GameClient' does not contain a definition for 'SendMessage' and no extension method 'SendMessage' accepting a first argument of type 'GameClient' could be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    71    Active
Error    CS0246    The type or namespace name 'ForumsListDataComposer' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    71    Active
Error    CS1061    'IQueryAdapter' does not contain a definition for 'getTable' and no extension method 'getTable' accepting a first argument of type 'IQueryAdapter' could be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    97    Active
Error    CS1061    'IQueryAdapter' does not contain a definition for 'getTable' and no extension method 'getTable' accepting a first argument of type 'IQueryAdapter' could be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    141    Active
Error    CS1061    'GameClient' does not contain a definition for 'SendMessage' and no extension method 'SendMessage' accepting a first argument of type 'GameClient' could be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    169    Active
Error    CS0246    The type or namespace name 'ForumsListDataComposer' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    169    Active
Error    CS0246    The type or namespace name 'GetForumStatsEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    846    Active
Error    CS0246    The type or namespace name 'GetThreadsListDataEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    847    Active
Error    CS0246    The type or namespace name 'GetThreadDataEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    848    Active
Error    CS0246    The type or namespace name 'PostGroupContentEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    849    Active
Error    CS0246    The type or namespace name 'DeleteGroupThreadEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    850    Active
Error    CS0246    The type or namespace name 'UpdateForumReadMarkerEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    851    Active
Error    CS0246    The type or namespace name 'UpdateForumSettingsEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    852    Active
Error    CS0246    The type or namespace name 'UpdateForumThreadStatusEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    853    Active
[/code]

Uploaded the missing files he had, and re-uploaded everything as normal and came up with this
 

Hayd3n

peace.wtf
Jun 14, 2013
76
29

Code:
Severity    Code    Description    Project    File    Line    Suppression State
Error    CS0246    The type or namespace name 'DeleteGroupPostEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    854    Active
Error    CS1061    'GameClient' does not contain a definition for 'SendMessage' and no extension method 'SendMessage' accepting a first argument of type 'GameClient' could be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    71    Active
Error    CS0246    The type or namespace name 'ForumsListDataComposer' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    71    Active
Error    CS1061    'IQueryAdapter' does not contain a definition for 'getTable' and no extension method 'getTable' accepting a first argument of type 'IQueryAdapter' could be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    97    Active
Error    CS1061    'IQueryAdapter' does not contain a definition for 'getTable' and no extension method 'getTable' accepting a first argument of type 'IQueryAdapter' could be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    141    Active
Error    CS1061    'GameClient' does not contain a definition for 'SendMessage' and no extension method 'SendMessage' accepting a first argument of type 'GameClient' could be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    169    Active
Error    CS0246    The type or namespace name 'ForumsListDataComposer' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\Incoming\Groups\GetForumsListDataEvent.cs    169    Active
Error    CS0246    The type or namespace name 'GetForumStatsEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    846    Active
Error    CS0246    The type or namespace name 'GetThreadsListDataEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    847    Active
Error    CS0246    The type or namespace name 'GetThreadDataEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    848    Active
Error    CS0246    The type or namespace name 'PostGroupContentEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    849    Active
Error    CS0246    The type or namespace name 'DeleteGroupThreadEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    850    Active
Error    CS0246    The type or namespace name 'UpdateForumReadMarkerEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    851    Active
Error    CS0246    The type or namespace name 'UpdateForumSettingsEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    852    Active
Error    CS0246    The type or namespace name 'UpdateForumThreadStatusEvent' could not be found (are you missing a using directive or an assembly reference?)    Plus Emulator    C:\inetpub\wwwroot\Zebb1\Zebbo Emu [Use This]\Communication\Packets\PacketManager.cs    853    Active
[/code]

Uploaded the missing files he had, and re-uploaded everything as normal and came up with this
This is why, you're missing a whole heap of stuff (probably missed something when you were adding it)
Are you running R1 or R2?
R2 by the looks of it
 

Users who are viewing this thread

Top