19.12.2024
Updates v1.0.1
Added
config.randomHat
setting. When set totrue
, random hats will be assigned to the character on the identity screen.Added
config.face
setting. This allows you to change the default male and female faces on the identity screen.Fixed the QB "local coords nil" error.
Fixed an issue where the peds in the character selection screen were not being deleted.
modified: client/client.lua
modified: configs/config.lua
modified: fxmanifest.lua
modified: sql.sql
SQL :
Rerun the SQL.
DROP TABLE IF EXISTS `tgiann_multichar_last_logout`;
CREATE TABLE IF NOT EXISTS `tgiann_multichar_last_logout` (
`citizenid` varchar(50) DEFAULT NULL,
`unixtime` int(11) DEFAULT NULL,
UNIQUE KEY `citizenid` (`citizenid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
Last updated