#illenium-appearance
1 messages · Page 1 of 1 (latest)
All my characters got the same clothing on
I just did my crim head then went over to my police head and it's the same skin and clothing
Cop head
Crim head
did you follow the install docs, in regard to dropping and adding new tables to the database?
yeah i delete and added the new tables to the data base
i dont know how to drop it but i did click and delete eveything in the player outfits
im using phpMyAdmin
Windows key + shift + S
And then select what part of the screen you want to screenshot.
And then you just use Ctrl V into here.
So you dont have to use your phone
thank you i never knew that
Your player_outfits table doesn't match what illenium requires you to install:
https://github.com/iLLeniumStudios/illenium-appearance/blob/main/sql/player_outfits.sql
Press on SQL tab and copy paste this and press go
CREATE TABLE IF NOT EXISTS `player_outfits` ( `id` int(11) NOT NULL AUTO_INCREMENT, `citizenid` varchar(50) DEFAULT NULL, `outfitname` varchar(50) NOT NULL DEFAULT '0', `model` varchar(50) DEFAULT NULL, `props` varchar(1000) DEFAULT NULL, `components` varchar(1500) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `citizenid_outfitname_model` (`citizenid`,`outfitname`,`model`), KEY `citizenid` (`citizenid`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4;
The table already exists so this won't do anything ^
You need to drop the table first
Why don’t you use HeidiSQL it’s so much easier