Installation
Step 1
Run the qb.sql file located in the resource folder in your database! Or execute the SQL:
ALTER TABLE `players` ADD COLUMN `lvs_animation` longtext COLLATE utf8mb4_bin;
ALTER TABLE `players` ADD COLUMN `lvs_walking_style` longtext COLLATE utf8mb4_bin;
ALTER TABLE `players` ADD COLUMN `lv_expression` longtext COLLATE utf8mb4_bin;
CREATE TABLE IF NOT EXISTS `lvs_animation_favorite` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(100) NOT NULL,
`animation_name` varchar(100) NOT NULL,
UNIQUE KEY `id` (`id`),
KEY `identifier` (`identifier`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
Step 2
Drag And Drop, put lvs_animations
in resources
folder
Step 3
Install the dependencies if they are not installed.
resource
url
Step 4
Now configure and translate your resource.
Step 5
Start The Script Start in server.cfg
, ensure lvs_animations.
Last updated