Any fix for these bugs? [Phoenix 3.11.0]

Aruthra

Owner, Swift Industry
Aug 14, 2013
616
61
Hello, please give me the fixes for these bugs:

1. Wardrobe doesn't save when we reload the hotel.
2. USVA shelf doesn't turn into a box when double clicked
3. DC when clicking any pets page (Like Lion, Spider, etc)

Those who fix these will get tech on my hotel!

Thanks,
Aruthra
 
Last edited:

Brad

Well-Known Member
Jun 5, 2012
2,320
993
Its More like an Db errors such as USVA will most likely be your funi error and same as Pets But have you got an table in you DB called User_wardrobe ?
 

Brad

Well-Known Member
Jun 5, 2012
2,320
993
Try running This
Code:
DROP TABLE IF EXISTS `user_wardrobe`;
CREATE TABLE `user_wardrobe` (
  `user_id` int(10) unsigned NOT NULL,
  `slot_id` int(10) unsigned NOT NULL,
  `look` varchar(255) NOT NULL,
  `gender` enum('F','M') NOT NULL DEFAULT 'M',
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

then Restart your emulator
 

Aruthra

Owner, Swift Industry
Aug 14, 2013
616
61
Try running This
Code:
DROP TABLE IF EXISTS `user_wardrobe`;
CREATE TABLE `user_wardrobe` (
  `user_id` int(10) unsigned NOT NULL,
  `slot_id` int(10) unsigned NOT NULL,
  `look` varchar(255) NOT NULL,
  `gender` enum('F','M') NOT NULL DEFAULT 'M',
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

then Restart your emulator
It still didn't fix it :(
 

Users who are viewing this thread

Top