投稿

1月, 2024の投稿を表示しています

【qb-core】オリジナルアイテムを追加したい!!!!!!!人へ。

イメージ
こんにちわん。 なんか...元日に地震がきて焦りましたね...  ...というわけで切り替えて、「オリジナルアイテム」を追加しよう!の回です。   多分7分で終わります。7分。      - アイテム画像の作成 フリー画像サイトから100 x 100の画像を作成しましょう! 画像はqb-inventory > html > imagesに挿入してください。 - qb-core > items.lua の編集 これはできる...よね? ['アイテム名ローマ字'] = {['name'] = 'アイテム名ローマ字',     ['label'] = '表記名', ['weight'] = 重さ(数字で), ['type'] = 'item', ['image'] = '画像.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true,    ['combinable'] = nil,   ['description'] = '説明'}, 以下例 ['anpan'] = {['name'] = 'anpan',     ['label'] = 'アンパン名', ['weight'] = 100, ['type'] = 'item', ['image'] = 'anpan.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true,    ['combinable'] = ...