Ten skrypt pozwala graczom na używanie elementów odzieży w ich ekwipunku w FiveM przy użyciu frameworka qbcore. Dzięki temu skryptowi gracze mogą mieć wiele różnych elementów odzieży, kraść elementy odzieży od innych graczy oraz konfigurować polecenia i usuwalne elementy.
Pobierz
Przewodnik instalacji
Instalacja skryptu
- Umieść plik:
- Umieść scenariusz w pliku
zasoby
na serwerze FiveM.
- Umieść scenariusz w pliku
- Edytować
server.cfg
:- Dodaj następującą linię do pliku
server.cfg
plik do załadowania skryptu:sqlCode kopierenstart script_name
- Dodaj następującą linię do pliku
Dodawanie elementów
Aby dodać nowy odzież należy wstawić następujący kod do pliku qb-coreshareditems.lua
file:
-- Odzież<br>['torso'] = { ['name'] = 'torso', ['label'] = 'Torso', ['weight'] = 100, ['type'] = 'item', ['image'] = 'torso.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A wearable torso item.' },<br>['tshirt'] = { ['name'] = 'tshirt', ['label'] = 'T-Shirt', ['weight'] = 100, ['type'] = 'item', ['image'] = 'tshirt.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A wearable t-shirt item.' },<br>['arms'] = { ['name'] = 'arms', ['label'] = 'Arms', ['weight'] = 100, ['type'] = 'item', ['image'] = 'arms.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Wearable arm accessories.' },<br>['jeans'] = { ['name'] = 'jeans', ['label'] = 'Jeans', ['weight'] = 100, ['type'] = 'item', ['image'] = 'jeans.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Para nadających się do noszenia jeansów'. },<br>['shoes'] = { ['name'] = 'shoes', ['label'] = 'Shoes', ['weight'] = 100, ['type'] = 'item', ['image'] = 'shoes.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Wearable shoes.' },<br>['bag'] = { ['name'] = 'bag', ['label'] = 'Bag', ['weight'] = 100, ['type'] = 'item', ['image'] = 'bag.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A wearable bag accessory.' },<br>['chain'] = { ['name'] = 'chain', ['label'] = 'Chain', ['weight'] = 100, ['type'] = 'item', ['image'] = 'chain.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A wearable chain accessory.' },<br>['mask'] = { ['name'] = 'mask', ['label'] = 'Mask', ['weight'] = 100, ['type'] = 'item', ['image'] = 'mask.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A wearable mask.' },<br>['helmet'] = { ['name'] = 'helmet', ['label'] = 'Helmet', ['weight'] = 100, ['type'] = 'item', ['image'] = 'helmet.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A wearable helmet.' },<br>['ears'] = { ['name'] = 'ears', ['label'] = 'Ears', ['weight'] = 100, ['type'] = 'item', ['image'] = 'ears.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Wearable ear accessories.' },<br>['watches'] = { ['name'] = 'watches', ['label'] = 'Watches', ['weight'] = 100, ['type'] = 'item', ['image'] = 'watches.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Wearable watches.' },<br>['glasses'] = { ['name'] = 'glasses', ['label'] = 'Glasses', ['weight'] = 100, ['type'] = 'item', ['image'] = 'glasses.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Wearable glasses.' },<br>['bracelet'] = { ['name'] = 'bransoletka', ['label'] = 'Bransoletka', ['weight'] = 100, ['type'] = 'item', ['image'] = 'bransoletka.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A wearable bracelet accessory.' },
Aby wyświetlić opisy elementów, dodaj następujące elementy do qb-inventory\html\js\app.js
lub podobny plik w systemie inwentaryzacji:
else if (itemData.name == "torso") {<br> $(".item-info-title").html("<p>" + itemData.label + "</p>");<br> $(".item-info-description").html(<br> "<p><strong>Id Clothe: </strong><span>" + itemData.info.id_clothe + "</span></p><p><strong>Id Texture: </strong><span>" + itemData.info.id_texture + "</span></p><p><strong>Opis: </strong><span>" + itemData.info.description + "</span></p>"<br> );<br>} else if (itemData.name == "tshirt") {<br> $(".item-info-title").html("<p>" + itemData.label + "</p>");<br> $(".item-info-description").html(<br> "<p><strong>Id Clothe: </strong><span>" + itemData.info.id_clothe + "</span></p><p><strong>Id Texture: </strong><span>" + itemData.info.id_texture + "</span></p><p><strong>Opis: </strong><span>" + itemData.info.description + "</span></p>"<br> );<br>} else if (itemData.name == "arms") {<br> $(".item-info-title").html("<p>" + itemData.label + "</p>");<br> $(".item-info-description").html(<br> "<p><strong>Id Clothe: </strong><span>" + itemData.info.id_clothe + "</span></p><p><strong>Id Texture: </strong><span>" + itemData.info.id_texture + "</span></p><p><strong>Opis: </strong><span>" + itemData.info.description + "</span></p>"<br> );
Cechy
Odzież jako przedmiot
Gracze mogą korzystać z ubrań w ekwipunku, aby natychmiast zmienić swój wygląd.
Wiele elementów odzieży
Noś ze sobą wiele ubrań i zmieniaj stroje szybko i łatwo.
Kradzież przedmiotów odzieżowych
Gracze mogą kraść sobie nawzajem ubrania, co zwiększa interakcję między graczami.
Kompatybilność między mężczyznami i kobietami
Obsługuje zarówno postacie męskie, jak i żeńskie z odpowiednimi opcjami ubioru.
Konfiguracja poleceń
Administratorzy mogą dostosowywać polecenia do wyposażania i odłączania elementów odzieży.
Konfiguracja elementów wymiennych
Administratorzy mogą ustawić, czy elementy odzieży można zdejmować, czy nie, wymagając od graczy znalezienia nowych przedmiotów, aby zmienić swój wygląd.
Dodaj komentarz