Achievement error in PulseEMU

mitchellrjc

New Member
Apr 30, 2012
12
1
Hi Guys,

I have an issue with achievements in my Pulse.

Everytime I place a furni or activate it, like a dice, it gives me the error a achievement is missing and to contact administrator.

Someone got a fix for that?

Thanks in advance.

(F12 does not give me any errors)
 

Hypothesis

Programmer
Jan 6, 2019
524
361
@mitchellrjc Does your database have the table called user_achievements? Run this query.
Code:
DROP TABLE IF EXISTS `user_achievements`;
CREATE TABLE `user_achievements` (
  `userid` int(11) unsigned NOT NULL,
  `group` varchar(255) NOT NULL,
  `level` int(11) NOT NULL,
  `progress` int(11) NOT NULL,
  PRIMARY KEY (`userid`,`group`),
  KEY `id` (`userid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Post automatically merged:

If that doesn't work, run this query
 

JayC

Always Learning
Aug 8, 2013
5,493
1,398
@mitchellrjc Does your database have the table called user_achievements? Run this query.
Code:
DROP TABLE IF EXISTS `user_achievements`;
CREATE TABLE `user_achievements` (
  `userid` int(11) unsigned NOT NULL,
  `group` varchar(255) NOT NULL,
  `level` int(11) NOT NULL,
  `progress` int(11) NOT NULL,
  PRIMARY KEY (`userid`,`group`),
  KEY `id` (`userid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Post automatically merged:

If that doesn't work, run this query
That second query will fix his issue. It's his achievements table not his user achievements
 

Users who are viewing this thread

Top