From fbf0b6b47fa8ed0ec9079dcfe3cba6c62294c28b Mon Sep 17 00:00:00 2001 From: Nordi98 Date: Sat, 12 Jul 2025 20:30:08 +0200 Subject: [PATCH] ed --- .../[qb]/qb-core/.github/CODE_OF_CONDUCT.md | 74 + .../.github/ISSUE_TEMPLATE/bug_report.yml | 71 + .../qb-core/.github/ISSUE_TEMPLATE/config.yml | 5 + .../ISSUE_TEMPLATE/feature_request.yml | 37 + .../[qb]/qb-core/.github/auto_assign.yml | 17 + .../[qb]/qb-core/.github/contributing.md | 201 + .../qb-core/.github/pull_request_template.md | 11 + .../[qb]/qb-core/.github/workflows/lint.yml | 23 + .../workflows/semantic-bump-version.yml | 75 + .../[qb]/qb-core/.github/workflows/stale.yml | 29 + resources/[qb]/qb-core/client/functions.lua | 2 +- resources/[qb]/qb-core/client/main.lua | 7 - resources/[qb]/qb-core/locale/zh-cn.lua | 129 + resources/[qb]/qb-core/locale/zh-tw.lua | 133 + resources/[qb]/qb-core/server/events.lua | 8 + resources/[qb]/qb-core/server/functions.lua | 113 +- resources/[qb]/qb-core/server/main.lua | 8 - resources/[qb]/qb-core/server/player.lua | 184 +- resources/[qb]/qb-core/shared/gangs.lua | 59 +- resources/[qb]/qb-core/shared/items.lua | 10608 +--------------- resources/[qb]/qb-core/shared/jobs.lua | 147 +- resources/[qb]/qb-core/shared/vehicles.lua | 4 +- resources/[qb]/qb-core/shared/weapons.lua | 10 +- 23 files changed, 1547 insertions(+), 10408 deletions(-) create mode 100644 resources/[qb]/qb-core/.github/CODE_OF_CONDUCT.md create mode 100644 resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/config.yml create mode 100644 resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 resources/[qb]/qb-core/.github/auto_assign.yml create mode 100644 resources/[qb]/qb-core/.github/contributing.md create mode 100644 resources/[qb]/qb-core/.github/pull_request_template.md create mode 100644 resources/[qb]/qb-core/.github/workflows/lint.yml create mode 100644 resources/[qb]/qb-core/.github/workflows/semantic-bump-version.yml create mode 100644 resources/[qb]/qb-core/.github/workflows/stale.yml create mode 100644 resources/[qb]/qb-core/locale/zh-cn.lua create mode 100644 resources/[qb]/qb-core/locale/zh-tw.lua diff --git a/resources/[qb]/qb-core/.github/CODE_OF_CONDUCT.md b/resources/[qb]/qb-core/.github/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..de54500af --- /dev/null +++ b/resources/[qb]/qb-core/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,74 @@ +# Contributor Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +education, socio-economic status, nationality, personal appearance, race, +religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team in the discord at https://discord.com/invite/qbcore. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + diff --git a/resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/bug_report.yml b/resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..e3f508cfd --- /dev/null +++ b/resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,71 @@ +name: Bug report +description: Create a report to help us improve or fix something +title: "[BUG]" +labels: bug +body: + - type: markdown + attributes: + value: | + Thank you for taking the time to fill out a bug report! + Please use our Discord Server to ask questions and receive support: https://discord.gg/qbcore + - type: input + id: summary + attributes: + label: Summary + description: Write a short and concise description of your bug. + validations: + required: true + - type: textarea + id: repro + attributes: + label: Reproduction + description: What did you do to make this happen? + placeholder: | + 1. Using ... + 2. Do ... + 3. Then use ... + 4. See error + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected behavior + description: What did you expect to happen? + validations: + required: true + - type: textarea + id: actual + attributes: + label: Actual behavior + description: What actually happened? + validations: + required: true + - type: textarea + id: additional + attributes: + label: Additional context + description: If you have any other context about the problem such as screenshots or videos, add them here. + - type: input + id: updated + attributes: + label: Last Updated + description: When have you last updated? + placeholder: e.g. last week, today + validations: + required: true + - type: input + id: custom + attributes: + label: Custom Resources + description: Are you using custom resources? Which ones? + placeholder: e.g. zdiscord, qb-target + validations: + required: true + - type: input + id: renamed + attributes: + label: Resource Rename + description: Have you renamed this resource from `qb-` to something custom? + validations: + required: true diff --git a/resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/config.yml b/resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..9601bc621 --- /dev/null +++ b/resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: QBCore Discord Server + url: https://discord.gg/qbcore + about: Ask questions, receive support, and discuss with the community in our Discord server. diff --git a/resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/feature_request.yml b/resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..9b0751fcc --- /dev/null +++ b/resources/[qb]/qb-core/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,37 @@ +name: Feature request +description: Suggest an idea for QBCore +title: "[SUGGESTION]" +labels: enhancement +body: + - type: markdown + attributes: + value: | + Please use our Discord Server to ask questions and receive support: https://discord.gg/qbcore + - type: textarea + id: problem + attributes: + label: The problem + description: A clear and concise description of what the problem is, or what feature you want to be implemented. + placeholder: | + Some examples: + I'm frustrated that ... + It would be nice if ... + validations: + required: true + - type: textarea + id: solution + attributes: + label: Ideal solution + description: A clear and concise description of what you want to happen, with as much detail as possible. + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Alternative solutions + description: A clear and concise description of any alternative solutions or features you've considered. + - type: textarea + id: additional + attributes: + label: Additional context + description: If you have any other context about the problem such as screenshots or videos, add them here. diff --git a/resources/[qb]/qb-core/.github/auto_assign.yml b/resources/[qb]/qb-core/.github/auto_assign.yml new file mode 100644 index 000000000..65be3a504 --- /dev/null +++ b/resources/[qb]/qb-core/.github/auto_assign.yml @@ -0,0 +1,17 @@ +# Set to true to add reviewers to pull requests +addReviewers: true + +# Set to true to add assignees to pull requests +addAssignees: author + +# A list of reviewers to be added to pull requests (GitHub user name) +reviewers: + - qbcore-framework/maintenance + +# A list of keywords to be skipped the process that add reviewers if pull requests include it +skipKeywords: + - wip + +# A number of reviewers added to the pull request +# Set 0 to add all the reviewers (default: 0) +numberOfReviewers: 0 diff --git a/resources/[qb]/qb-core/.github/contributing.md b/resources/[qb]/qb-core/.github/contributing.md new file mode 100644 index 000000000..21fb8060e --- /dev/null +++ b/resources/[qb]/qb-core/.github/contributing.md @@ -0,0 +1,201 @@ +# Contributing to QBCore + +First of all, thank you for taking the time to contribute! + +These guidelines will help you help us in the best way possible regardless of your skill level. We ask that you try to read everything related to the way you'd like to contribute and try and use your best judgement for anything not covered. + +### Table of Contents + +[Code of Conduct](#code-of-conduct) + +[I don't want to read this whole thing, I just have a question!!!](#i-dont-want-to-read-this-whole-thing-i-just-have-a-question) + +[How Can I Contribute?](#how-can-i-contribute) + * [Reporting Bugs](#reporting-bugs) + * [Suggesting Features / Enhancements](#suggesting-features--enhancements) + * [Your First Code Contribution](#your-first-code-contribution) + * [Pull Requests](#pull-requests) + +[Styleguides](#styleguides) + * [Git Commit Messages](#git-commit-messages) + * [Lua Styleguide](#lua-styleguide) + * [JavaScript Styleguide](#javascript-styleguide) + + + +## Code of Conduct + +- Refrain from using languages other than English. +- Refrain from discussing any politically charged or inflammatory topics. +- Uphold mature conversations and respect each other; excessive profanity, hate speech or any kind of harassment will not be tolerated. +- No advertising of any kind. +- Follow these guidelines. +- Do not mention members of github unless a question is directed at them and can't be answered by anyone else. +- Do not mention any of the development team for any reason. We will read things as we get to them. + +## I don't want to read this whole thing I just have a question!!! + +> **Note:** Please don't file an issue to ask a question. You'll get faster results by using the resources below. + +* [QBCore Website](https://qbcore.org) +* [QBCore Discord](https://discord.gg/qbcore) +* [FiveM Discord - #qbcore channel](https://discord.gg/fivem) + + + + + + + + + + +## How Can I Contribute? + +### Reporting Bugs + +The easiest way to contribute for most people is just to report bugs you find cause if nobody reports it there's a chance we'll never know it exists and then we'll never fix it. + +Before creating bug reports, please check [this list](#before-submitting-a-bug-report) as you might find out that you don't need to create one. When you are creating a bug report, please [include as many details as possible](#how-do-i-submit-a-good-bug-report). Fill out the bug-report template with the information it asks for helps us resolve issues faster. + +> **Note:** If you find a **Closed** issue that seems like it is the same thing that you're experiencing, open a new issue and include a link to the original issue in the body of your new one. + +#### Before Submitting A Bug Report + +* **Check the docs** There's a chance what you see as a bug might just work differently than you expect and if you think it could work better consider a feature enhancement report instead. +* **Search the [discord](https://discord.gg/qbcore)** to see if anyone else has run into the issue and see if it was solved through user error or code changes. (if the code change isn't pending a PR and you know what you're doing consider submitting one following [Pull Requests](#pull-requests) ) +* **Determine which resource the problem should be reported in**. If the bug is related to the inventory for example report this bug under qb-inventory rather than under qb-core or some other resource. +* **Perform a [cursory search](https://github.com/search?q=+is%3Aissue+user%3Aqbcore-framework)** to see if the problem has already been reported. If it has **and the issue is still open**, add a comment to the existing issue instead of opening a new one. + +#### How Do I Submit A (Good) Bug Report? + +Bugs are tracked as [GitHub issues](https://guides.github.com/features/issues/). After you've determined which resource your bug is related to, create an issue on that repository and provide the following information by filling in bug-report template. + +Explain the problem and include additional details to help maintainers reproduce the problem: + +* **Use a clear and descriptive title** for the issue to identify the problem. +* **Describe the exact steps which reproduce the problem** in as many details as possible. +* **Provide specific examples to demonstrate the steps**. If something happened with only a specific group or single item but not others, specify that. +* **Describe the behavior you observed after following the steps** and point out what exactly is the problem with that behavior. +* **Explain which behavior you expected to see instead and why.** +* **Include screenshots** which show the specific bug in action or before and after. +* **If the problem wasn't triggered by a specific action**, describe what you were doing before the problem happened and share more information using the guidelines below. + +Provide more context by answering these questions if possible: + +* **Did the problem start happening recently** (e.g. after updating to a new version of QBCore?) or was this always a problem? +* If the problem started happening recently, **can you reproduce the problem in an older version of QBCore?** What's the most recent commit in which the problem doesn't happen? +* **Can you reliably reproduce the issue?** If not, provide details about how often the problem happens and under which conditions it normally happens. + +Include details about your setup: + +* **When was your QBCore last updated?** +* **What OS is the server running on**? +* **Which *extra* resources do you have installed?** + + +--- + + +### Suggesting Features / Enhancements + +This section guides you through submitting an enhancement suggestion for QBCore, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion. + +Before creating enhancement suggestions, please check [this list](#before-submitting-an-enhancement-suggestion) as you might find out that you don't need to create one. When you are creating an enhancement suggestion, please [include as many details as possible](#how-do-i-submit-a-good-enhancement-suggestion). Fill in feature request template, including the steps that you imagine you would take if the feature you're requesting existed. + +#### Before Submitting An Enhancement Suggestion + +* **Make sure it doesn't already exist.** Sounds silly, but there's a lot of features built in to qbcore that people don't realize so take a look through the docs and stuff to make sure it's not already there. +* **Check if there's already PR which provides that enhancement.** +* **Determine which resource the enhancement should be suggested in.** if it fits with another resource suggest it in that resource. if it would be it's own resource suggest it in the main qb-core repository. +* **Perform a [cursory search](https://github.com/search?q=+is%3Aissue+user%3Aqbcore-framework)** to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one. + +#### How Do I Submit A (Good) Enhancement Suggestion? + +Enhancement suggestions are tracked as [GitHub issues](https://guides.github.com/features/issues/). After you've determined which resource your enhancement suggestion is related to, create an issue on that repository and provide the following information: + +* **Use a clear and descriptive title** for the issue to identify the suggestion. +* **Provide a step-by-step description of the suggested enhancement** in as many details as possible. +* **Provide specific examples to demonstrate the steps**. Include copy/pasteable snippets which you use in those examples, as [Markdown code blocks](https://help.github.com/articles/markdown-basics/#multiple-lines). +* **Describe the current behavior** and **explain which behavior you expected to see instead** and why. +* **Include screenshots and animated GIFs** which help you demonstrate the steps or point out the part of QBCore which the suggestion is related to. +* **Explain why this enhancement would be useful.** +* **Be creative and unique.** Stealing ideas from popular servers 1:1 detail isn't going to get accepted. + + +--- + + + +### Your First Code Contribution + +Unsure where to begin contributing to QBCore? You can start by looking through these `beginner` and `help-wanted` issues. + + + +--- + + +### Pull Requests + +The process described here has several goals: + +- Maintain QBCore's quality. +- Fix problems that are important to users. +- Engage the community in working toward the best possible QBCore. +- Enable a sustainable system for QBCore's maintainers to review contributions. + +Please follow these steps to have your contribution considered by the maintainers: + +1. Follow all instructions in The Pull Request template. +2. Follow the [styleguides](#styleguides). +3. Await review by the reviewer(s). + +While the prerequisites above must be satisfied prior to having your pull request reviewed, the reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted. + + +--- + +## Styleguides + +### Git Commit Messages + +* Limit the first line to 72 characters or less. +* Reference issues and pull requests liberally after the first line. +* Consider starting the commit message with an applicable emoji: + * :art: `:art:` when improving the format/structure of the code + * :racehorse: `:racehorse:` when improving performance + * :memo: `:memo:` when writing docs + * :bug: `:bug:` when fixing a bug + * :fire: `:fire:` when removing code or files + * :white_check_mark: `:white_check_mark:` when adding tests + * :lock: `:lock:` when dealing with security + * :arrow_up: `:arrow_up:` when upgrading dependencies + * :arrow_down: `:arrow_down:` when downgrading dependencies + * :shirt: `:shirt:` when removing linter warnings + +### Lua Styleguide + +All lua code should be done using all the best practices of proper lua using the easiest to read yet fastest/most optimized methods of execution. + +- Use 4 Space indentation +- Aim for lua 5.4 (include `lua54 'yes'` in the fxmanifest.lua) +- Use `PlayerPedId()` instead of `GetPlayerPed(-1)` +- Use `#(vector3 - vector3)` instead of `GetDistanceBetweenCoords()` +- Don't create unnecessary threads. always try to find a better method of triggering events +- Don't repeat yourself.. if you're using the same operations in many different places convert them into a function with flexible variables +- For distance checking loops set longer waits if you're outside of a range +- Job specific loops should only run for players with that job, don't waste cycles +- When possible don't trust the client, esspecially with transactions +- Balance security and optimizations +- [Consider this Lua Performance guide](https://springrts.com/wiki/Lua_Performance) +- Use local varriables everywhere possible +- Make use of config options where it makes sense making features optional or customizable +- Instead of `table.insert(myTable, "Value")` use `myTable[#myTable + 1] = "Value"` +- Instead of `table.insert(ages, "bob", 30)` use `ages["bob"] = 30` + + +### JavaScript Styleguide + +- Use 4 Space indentation +- Don't repeat yourself.. if you're using the same operations in many different places convert them into a function with flexible variables. diff --git a/resources/[qb]/qb-core/.github/pull_request_template.md b/resources/[qb]/qb-core/.github/pull_request_template.md new file mode 100644 index 000000000..d80e17283 --- /dev/null +++ b/resources/[qb]/qb-core/.github/pull_request_template.md @@ -0,0 +1,11 @@ +## Description + + + +## Checklist + + + +- [ ] I have personally loaded this code into an updated qbcore project and checked all of its functionality. +- [ ] My code fits the style guidelines. +- [ ] My PR fits the contribution guidelines. diff --git a/resources/[qb]/qb-core/.github/workflows/lint.yml b/resources/[qb]/qb-core/.github/workflows/lint.yml new file mode 100644 index 000000000..369c61adf --- /dev/null +++ b/resources/[qb]/qb-core/.github/workflows/lint.yml @@ -0,0 +1,23 @@ +name: Lint +on: [push, pull_request_target] +jobs: + lint: + name: Lint Resource + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + ref: ${{ github.event.pull_request.head.sha }} + - name: Lint + uses: iLLeniumStudios/fivem-lua-lint-action@v2 + with: + capture: "junit.xml" + args: "-t --formatter JUnit" + extra_libs: mysql + - name: Generate Lint Report + if: always() + uses: mikepenz/action-junit-report@v3 + with: + report_paths: "**/junit.xml" + check_name: Linting Report + fail_on_failure: false diff --git a/resources/[qb]/qb-core/.github/workflows/semantic-bump-version.yml b/resources/[qb]/qb-core/.github/workflows/semantic-bump-version.yml new file mode 100644 index 000000000..66a3543bb --- /dev/null +++ b/resources/[qb]/qb-core/.github/workflows/semantic-bump-version.yml @@ -0,0 +1,75 @@ +name: Semantic Version Bump (Conventional Commits) + +on: + push: + branches: + - main + +jobs: + semver-bump: + runs-on: ubuntu-latest + if: github.event.head_commit.author.name != 'github-actions[bot]' + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Determine bump type from commit message + id: bump + run: | + COMMIT_MSG="${{ github.event.head_commit.message }}" + echo "🔍 Commit message: $COMMIT_MSG" + + if echo "$COMMIT_MSG" | grep -qE 'BREAKING CHANGE|!:'; then + echo "bump=major" >> $GITHUB_OUTPUT + elif echo "$COMMIT_MSG" | grep -qE '^feat(\(.+\))?:'; then + echo "bump=minor" >> $GITHUB_OUTPUT + elif echo "$COMMIT_MSG" | grep -qE '^fix(\(.+\))?:'; then + echo "bump=patch" >> $GITHUB_OUTPUT + else + echo "bump=none" >> $GITHUB_OUTPUT + fi + + - name: Bump version in fxmanifest.lua + if: steps.bump.outputs.bump != 'none' + run: | + FILE="fxmanifest.lua" + VERSION_LINE=$(grep -E "version ['\"]?[0-9]+\.[0-9]+\.[0-9]+['\"]?" "$FILE") + VERSION=$(echo "$VERSION_LINE" | grep -oE "[0-9]+\.[0-9]+\.[0-9]+") + + IFS='.' read -r MAJOR MINOR PATCH <<< "$VERSION" + + case "${{ steps.bump.outputs.bump }}" in + major) + MAJOR=$((MAJOR + 1)) + MINOR=0 + PATCH=0 + ;; + minor) + MINOR=$((MINOR + 1)) + PATCH=0 + ;; + patch) + PATCH=$((PATCH + 1)) + ;; + esac + + NEW_VERSION="$MAJOR.$MINOR.$PATCH" + sed -i "s/version ['\"]$VERSION['\"]/version '$NEW_VERSION'/" "$FILE" + echo "new_version=$NEW_VERSION" >> $GITHUB_ENV + + - name: Commit and push version bump + if: steps.bump.outputs.bump != 'none' + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git add fxmanifest.lua + + if git diff --cached --quiet; then + echo "⚠️ No version changes to commit." + exit 0 + fi + + COMMIT_MSG="${{ github.event.head_commit.message }}" + git commit -m "ci: bump fxmanifest version to ${{ env.new_version }} – $COMMIT_MSG" + git push \ No newline at end of file diff --git a/resources/[qb]/qb-core/.github/workflows/stale.yml b/resources/[qb]/qb-core/.github/workflows/stale.yml new file mode 100644 index 000000000..c18b212a7 --- /dev/null +++ b/resources/[qb]/qb-core/.github/workflows/stale.yml @@ -0,0 +1,29 @@ +# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/actions/stale +name: Mark stale issues and pull requests + +on: + schedule: + - cron: '41 15 * * *' + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v5 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This issue has had 60 days of inactivity & will close within 7 days' + stale-pr-message: 'This PR has had 60 days of inactivity & will close within 7 days' + close-issue-label: 'Stale Closed' + close-pr-label: 'Stale Closed' + exempt-issue-labels: 'Suggestion' + exempt-pr-labels: 'Suggestion' diff --git a/resources/[qb]/qb-core/client/functions.lua b/resources/[qb]/qb-core/client/functions.lua index 88801fdf7..f6bca002d 100644 --- a/resources/[qb]/qb-core/client/functions.lua +++ b/resources/[qb]/qb-core/client/functions.lua @@ -45,7 +45,7 @@ function QBCore.Functions.GetCoords(entity) end function QBCore.Functions.HasItem(items, amount) - return exports['qs-inventory']:HasItem(items, amount) + return exports['qb-inventory']:HasItem(items, amount) end ---Returns the full character name diff --git a/resources/[qb]/qb-core/client/main.lua b/resources/[qb]/qb-core/client/main.lua index 5582abfd8..05d3b6883 100644 --- a/resources/[qb]/qb-core/client/main.lua +++ b/resources/[qb]/qb-core/client/main.lua @@ -48,10 +48,3 @@ local function GetSharedGangs() return QBShared.Gangs end exports('GetSharedGangs', GetSharedGangs) - - - -- Jobs Creator integration (jobs_creator) - RegisterNetEvent("jobs_creator:injectJobs", function(jobs) - QBCore.Shared.Jobs = jobs - end) - \ No newline at end of file diff --git a/resources/[qb]/qb-core/locale/zh-cn.lua b/resources/[qb]/qb-core/locale/zh-cn.lua new file mode 100644 index 000000000..dc85eeeed --- /dev/null +++ b/resources/[qb]/qb-core/locale/zh-cn.lua @@ -0,0 +1,129 @@ +local Translations = { + error = { + not_online = '玩家不在线', + wrong_format = '格式错误', + missing_args = '请输入必须参数 (x, y, z)', + missing_args2 = '请输入所有参数!', + no_access = '你没有权限', + company_too_poor = '你所在的公司账户目前发不起工资', + item_not_exist = '该物品不存在', + too_heavy = '背包已满', + location_not_exist = '位置不存在', + duplicate_license = '发现重复的 Rockstar 许可证', + no_valid_license = '未找到有效的 Rockstar 许可证', + not_whitelisted = '您没有被列入此服务器的白名单', + server_already_open = '服务器已打开', + server_already_closed = '服务器已关闭', + no_permission = '您没有此权限..', + no_waypoint = '无GPS点位设置.', + tp_error = '传送时出错.', + connecting_database_error = '连接到服务器时发生数据库错误。(SQL server是否已打开?)', + connecting_database_timeout = '与数据库的连接超时。(SQL server是否已打开?)', + }, + success = { + server_opened = '服务器已打开', + server_closed = '服务器已关闭', + teleported_waypoint = '传送至航路点.', + }, + info = { + received_paycheck = '你收到的薪水是 $%{value}', + job_info = '工作: %{value} | 级别: %{value2} | 上班状态: %{value3}', + gang_info = '帮派: %{value} | 级别: %{value2}', + on_duty = '你现在开始上班了!', + off_duty = '从现在开始你下班了!', + checking_ban = '你好 %s. 我们正在检查您是否被禁止.', + join_server = '欢迎 %s 加入 {Server Name}.', + checking_whitelisted = '你好 %s. 我们正在检查您是否在白名单内.', + exploit_banned = '你因作弊而被禁止。查看Discord了解更多信息:%{discord}', + exploit_dropped = '你因为被而被踢出', + }, + command = { + tp = { + help = 'TP至玩家或坐标(仅限管理员)', + params = { + x = { name = 'id/x', help = '玩家ID或X位置'}, + y = { name = 'y', help = 'Y位置'}, + z = { name = 'z', help = 'Z位置'}, + }, + }, + tpm = { help = 'TP到标记(仅限管理员)' }, + togglepvp = { help = '切换服务器上的PVP(仅限管理员)' }, + addpermission = { + help = '授予玩家权限(仅限God)', + params = { + id = { name = 'id', help = '玩家ID' }, + permission = { name = 'permission', help = '权限级别' }, + }, + }, + removepermission = { + help = '删除玩家权限(仅限上帝)', + params = { + id = { name = 'id', help = '玩家ID' }, + permission = { name = 'permission', help = '权限级别' }, + }, + }, + openserver = { help = '为每个人打开服务器(仅限管理员)' }, + closeserver = { + help = '为没有权限的人关闭服务器(仅限管理员)', + params = { + reason = { name = 'reason', help = '关闭原因(可选)' }, + }, + }, + car = { + help = '刷出车辆(仅限管理员)', + params = { + model = { name = 'model', help = '车辆型号名称' }, + }, + }, + dv = { help = '删除车辆(仅限管理员)' }, + givemoney = { + help = '给玩家钱(仅限管理员)', + params = { + id = { name = 'id', help = '玩家ID' }, + moneytype = { name = 'moneytype', help = '货币类型(cash, bank, crypto)' }, + amount = { name = 'amount', help = '数量' }, + }, + }, + setmoney = { + help = '设置玩家金额(仅限管理员)', + params = { + id = { name = 'id', help = '玩家ID' }, + moneytype = { name = 'moneytype', help = '货币类型(cash, bank, crypto)' }, + amount = { name = 'amount', help = '数量' }, + }, + }, + job = { help = '检查您的工作' }, + setjob = { + help = '设置玩家工作(仅限管理员)', + params = { + id = { name = 'id', help = '玩家ID' }, + job = { name = 'job', help = '工作名称' }, + grade = { name = 'grade', help = '工作级别' }, + }, + }, + gang = { help = '检查你的帮派' }, + setgang = { + help = '设置玩家作业(仅限管理员)', + params = { + id = { name = 'id', help = '玩家ID' }, + gang = { name = 'gang', help = '帮派名称' }, + grade = { name = 'grade', help = '帮派级别' }, + }, + }, + ooc = { help = 'OOC聊天消息' }, + me = { + help = '显示本地消息', + params = { + message = { name = 'message', help = '要发送的消息' } + }, + }, + }, +} + +if GetConvar('qb_locale', 'en') == 'zh-cn' then + Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true, + fallbackLang = Lang, + }) +end diff --git a/resources/[qb]/qb-core/locale/zh-tw.lua b/resources/[qb]/qb-core/locale/zh-tw.lua new file mode 100644 index 000000000..38f771bea --- /dev/null +++ b/resources/[qb]/qb-core/locale/zh-tw.lua @@ -0,0 +1,133 @@ +local Translations = { + error = { + not_online = '玩家不在線上', + wrong_format = '格式不正確', + missing_args = '尚未輸入所有參數 (x, y, z)', + missing_args2 = '必須填寫所有參數!', + no_access = '無法使用此指令', + company_too_poor = '您的雇主已破產', + item_not_exist = '物品不存在', + too_heavy = '背包已滿', + location_not_exist = '位置不存在', + duplicate_license = '[QBCORE] - 發現重複的 Rockstar 授權', + no_valid_license = '[QBCORE] - 找不到有效的 Rockstar 授權', + not_whitelisted = '[QBCORE] - 您不在此伺服器的白名單中', + server_already_open = '伺服器已經開啟', + server_already_closed = '伺服器已經關閉', + no_permission = '您沒有此權限..', + no_waypoint = '尚未設置導航點', + tp_error = '傳送時發生錯誤', + ban_table_not_found = '[QBCORE] - 無法在資料庫中找到封禁清單。請確認您已正確匯入 SQL 檔案。', + connecting_database_error = '[QBCORE] - 連接資料庫時發生錯誤。請確保 SQL 伺服器正在運行,且 server.cfg 檔案中的設定正確。', + connecting_database_timeout = '[QBCORE] - 資料庫連接超時。請確保 SQL 伺服器正在運行,且 server.cfg 檔案中的設定正確。', + }, + success = { + server_opened = '伺服器已經開啟', + server_closed = '伺服器已經關閉', + teleported_waypoint = '傳送至導航點。', + }, + info = { + received_paycheck = '您收到了 $%{value} 的薪水', + job_info = '工作: %{value} | 等級: %{value2} | 上班狀態: %{value3}', + gang_info = '幫派: %{value} | 等級: %{value2}', + on_duty = '您現在已經上班了!', + off_duty = '您現在已經下班了!', + checking_ban = '你好 %s,我們正在檢查您是否被封禁', + join_server = '歡迎 %s 加入 {Server Name}', + checking_whitelisted = '你好 %s,我們正在檢查您的白名單權限', + exploit_banned = '您因作弊行為而被封禁。請查看我們的 Discord 以獲取更多資訊: %{discord}', + exploit_dropped = '您因使用外掛程式而被踢出伺服器', + }, + command = { + tp = { + help = '傳送至玩家或座標 (僅限管理員)', + params = { + x = { name = 'id/x', help = '玩家 ID 或 X 座標' }, + y = { name = 'y', help = 'Y 座標' }, + z = { name = 'z', help = 'Z 座標' }, + }, + }, + tpm = { help = '傳送至標記點 (僅限管理員)' }, + togglepvp = { help = '切換伺服器 PVP 狀態 (僅限管理員)' }, + addpermission = { + help = '給予玩家權限 (僅限最高權限)', + params = { + id = { name = 'id', help = '玩家 ID' }, + permission = { name = 'permission', help = '權限等級' }, + }, + }, + removepermission = { + help = '移除玩家權限 (僅限最高權限)', + params = { + id = { name = 'id', help = '玩家 ID' }, + permission = { name = 'permission', help = '權限等級' }, + }, + }, + openserver = { help = '開放伺服器給所有人 (僅限管理員)' }, + closeserver = { + help = '關閉伺服器給無權限者 (僅限管理員)', + params = { + reason = { name = 'reason', help = '關閉原因 (選填)' }, + }, + }, + car = { + help = '生成載具 (僅限管理員)', + params = { + model = { name = 'model', help = '載具型號名稱' }, + }, + }, + dv = { help = '刪除載具 (僅限管理員)' }, + dvall = { help = '刪除所有載具 (僅限管理員)' }, + dvp = { help = '刪除所有 NPC (僅限管理員)' }, + dvo = { help = '刪除所有物件 (僅限管理員)' }, + givemoney = { + help = '給予玩家金錢 (僅限管理員)', + params = { + id = { name = 'id', help = '玩家 ID' }, + moneytype = { name = 'moneytype', help = '金錢類型 (現金, 銀行, 加密貨幣)' }, + amount = { name = 'amount', help = '金額' }, + }, + }, + setmoney = { + help = '設定玩家金錢數量 (僅限管理員)', + params = { + id = { name = 'id', help = '玩家 ID' }, + moneytype = { name = 'moneytype', help = '金錢類型 (現金, 銀行, 加密貨幣)' }, + amount = { name = 'amount', help = '金額' }, + }, + }, + job = { help = '查看你的工作' }, + setjob = { + help = '設定玩家工作 (僅限管理員)', + params = { + id = { name = 'id', help = '玩家 ID' }, + job = { name = 'job', help = '工作名稱' }, + grade = { name = 'grade', help = '工作等級' }, + }, + }, + gang = { help = '查看你所在的幫派' }, + setgang = { + help = '設定玩家幫派 (僅限管理員)', + params = { + id = { name = 'id', help = '玩家 ID' }, + gang = { name = 'gang', help = '幫派名稱' }, + grade = { name = 'grade', help = '幫派等級' }, + }, + }, + ooc = { help = 'OOC 聊天訊息' }, + me = { + help = '顯示本地訊息', + params = { + message = { name = 'message', help = '要發送的訊息' } + }, + }, + }, +} + +if GetConvar('qb_locale', 'en') == 'zh-tw' then + Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true, + fallbackLang = Lang, + }) +end diff --git a/resources/[qb]/qb-core/server/events.lua b/resources/[qb]/qb-core/server/events.lua index 4147c431c..00b0fa5a9 100644 --- a/resources/[qb]/qb-core/server/events.lua +++ b/resources/[qb]/qb-core/server/events.lua @@ -18,6 +18,14 @@ AddEventHandler('playerDropped', function(reason) QBCore.Players[src] = nil end) +AddEventHandler("onResourceStop", function(resName) + for i,v in pairs(QBCore.UsableItems) do + if v.resource == resName then + QBCore.UsableItems[i] = nil + end + end +end) + -- Player Connecting local readyFunction = MySQL.ready local databaseConnected, bansTableExists = readyFunction == nil, readyFunction == nil diff --git a/resources/[qb]/qb-core/server/functions.lua b/resources/[qb]/qb-core/server/functions.lua index d2b40bde2..c01aed2c4 100644 --- a/resources/[qb]/qb-core/server/functions.lua +++ b/resources/[qb]/qb-core/server/functions.lua @@ -7,7 +7,6 @@ QBCore.UsableItems = {} -- Get your player first and then trigger a function on them -- ex: local player = QBCore.Functions.GetPlayer(source) -- ex: local example = player.Functions.functionname(parameter) - ---Gets the coordinates of an entity ---@param entity number ---@return vector4 @@ -133,15 +132,21 @@ function QBCore.Functions.GetQBPlayers() return QBCore.Players end ----Gets a list of all on duty players of a specified job and the number ----@param job string ----@return table, number -function QBCore.Functions.GetPlayersOnDuty(job) +--- Gets a list of all online players of a specified job or job type and the number +--- @param job string +--- @param checkOnDuty boolean If true, only players on duty will be returned +function QBCore.Functions.GetPlayersByJob(job, checkOnDuty) local players = {} local count = 0 for src, Player in pairs(QBCore.Players) do - if Player.PlayerData.job.name == job then - if Player.PlayerData.job.onduty then + local playerData = Player.PlayerData + if playerData.job.name == job or playerData.job.type == job then + if checkOnDuty then + if playerData.job.onduty then + players[#players + 1] = src + count += 1 + end + else players[#players + 1] = src count += 1 end @@ -150,18 +155,19 @@ function QBCore.Functions.GetPlayersOnDuty(job) return players, count end +---Gets a list of all on duty players of a specified job and the number +---@param job string +---@return table, number +function QBCore.Functions.GetPlayersOnDuty(job) + local players, count = QBCore.Functions.GetPlayersByJob(job, true) + return players, count +end + ---Returns only the amount of players on duty for the specified job ---@param job string ---@return number function QBCore.Functions.GetDutyCount(job) - local count = 0 - for _, Player in pairs(QBCore.Players) do - if Player.PlayerData.job.name == job then - if Player.PlayerData.job.onduty then - count += 1 - end - end - end + local _, count = QBCore.Functions.GetPlayersByJob(job, true) return count end @@ -395,33 +401,32 @@ function QBCore.Functions.CreateVehicle(source, model, vehtype, coords, warp) end function PaycheckInterval() - if next(QBCore.Players) then - for _, Player in pairs(QBCore.Players) do - if Player then - local payment = Player.PlayerData.job.payment - if Player.PlayerData.job and payment > 0 and (QBShared.Jobs[Player.PlayerData.job.name].offDutyPay or Player.PlayerData.job.onduty) then - if QBCore.Config.Money.PayCheckSociety then - local account = exports['qb-management']:GetAccount(Player.PlayerData.job.name) - if account ~= 0 then -- Checks if player is employed by a society - if account < payment then -- Checks if company has enough money to pay society - TriggerClientEvent('QBCore:Notify', Player.PlayerData.source, Lang:t('error.company_too_poor'), 'error') - else - Player.Functions.AddMoney('bank', payment) - exports['qb-management']:RemoveMoney(Player.PlayerData.job.name, payment) - TriggerClientEvent('QBCore:Notify', Player.PlayerData.source, Lang:t('info.received_paycheck', {value = payment})) - TriggerEvent('okokBanking:AddTransferTransactionFromSocietyToP', payment, "salary", "Salary", Player.PlayerData.citizenid, Player.PlayerData.charinfo.firstname..' '..Player.PlayerData.charinfo.lastname) - end - else - Player.Functions.AddMoney('bank', payment) - TriggerClientEvent('QBCore:Notify', Player.PlayerData.source, Lang:t('info.received_paycheck', {value = payment})) - TriggerEvent('okokBanking:AddTransferTransactionFromSocietyToP', payment, "salary", "Salary", Player.PlayerData.citizenid, Player.PlayerData.charinfo.firstname..' '..Player.PlayerData.charinfo.lastname) - end + if not next(QBCore.Players) then + SetTimeout(QBCore.Config.Money.PayCheckTimeOut * (60 * 1000), PaycheckInterval) -- Prevent paychecks from stopping forever once 0 players + return + end + for _, Player in pairs(QBCore.Players) do + if not Player then return end + local payment = QBShared.Jobs[Player.PlayerData.job.name]['grades'][tostring(Player.PlayerData.job.grade.level)].payment + if not payment then payment = Player.PlayerData.job.payment end + if Player.PlayerData.job and payment > 0 and (QBShared.Jobs[Player.PlayerData.job.name].offDutyPay or Player.PlayerData.job.onduty) then + if QBCore.Config.Money.PayCheckSociety then + local account = exports['qb-banking']:GetAccountBalance(Player.PlayerData.job.name) + if account ~= 0 then + if account < payment then + TriggerClientEvent('QBCore:Notify', Player.PlayerData.source, Lang:t('error.company_too_poor'), 'error') else - Player.Functions.AddMoney('bank', payment) - TriggerClientEvent('QBCore:Notify', Player.PlayerData.source, Lang:t('info.received_paycheck', {value = payment})) - TriggerEvent('okokBanking:AddTransferTransactionFromSocietyToP', payment, "salary", "Salary", Player.PlayerData.citizenid, Player.PlayerData.charinfo.firstname..' '..Player.PlayerData.charinfo.lastname) + Player.Functions.AddMoney('bank', payment, 'paycheck') + exports['qb-banking']:RemoveMoney(Player.PlayerData.job.name, payment, 'Employee Paycheck') + TriggerClientEvent('QBCore:Notify', Player.PlayerData.source, Lang:t('info.received_paycheck', { value = payment })) end + else + Player.Functions.AddMoney('bank', payment, 'paycheck') + TriggerClientEvent('QBCore:Notify', Player.PlayerData.source, Lang:t('info.received_paycheck', { value = payment })) end + else + Player.Functions.AddMoney('bank', payment, 'paycheck') + TriggerClientEvent('QBCore:Notify', Player.PlayerData.source, Lang:t('info.received_paycheck', { value = payment })) end end end @@ -470,7 +475,26 @@ end ---@param item string ---@param data function function QBCore.Functions.CreateUseableItem(item, data) - QBCore.UsableItems[item] = data + local rawFunc = nil + + if type(data) == 'table' then + if rawget(data, '__cfx_functionReference') then + rawFunc = data + elseif data.cb and rawget(data.cb, '__cfx_functionReference') then + rawFunc = data.cb + elseif data.callback and rawget(data.callback, '__cfx_functionReference') then + rawFunc = data.callback + end + elseif type(data) == 'function' then + rawFunc = data + end + + if rawFunc then + QBCore.UsableItems[item] = { + func = rawFunc, + resource = GetInvokingResource() + } + end end ---Checks if the given item is usable @@ -484,8 +508,8 @@ end ---@param source any ---@param item string function QBCore.Functions.UseItem(source, item) - if GetResourceState('qs-inventory') == 'missing' then return end - exports['qs-inventory']:UseItem(source, item) + if GetResourceState('qb-inventory') == 'missing' then return end + exports['qb-inventory']:UseItem(source, item) end ---Kick Player @@ -681,8 +705,8 @@ end ---@param amount number ---@return boolean function QBCore.Functions.HasItem(source, items, amount) - if GetResourceState('qs-inventory') == 'missing' then return end - return exports['qs-inventory']:HasItem(source, items, amount) + if GetResourceState('qb-inventory') == 'missing' then return end + return exports['qb-inventory']:HasItem(source, items, amount) end ---Notify @@ -716,6 +740,5 @@ for functionName, func in pairs(QBCore.Functions) do exports(functionName, func) end end - -- Access a specific function directly: -- exports['qb-core']:Notify(source, 'Hello Player!') diff --git a/resources/[qb]/qb-core/server/main.lua b/resources/[qb]/qb-core/server/main.lua index f07180f77..d6228e598 100644 --- a/resources/[qb]/qb-core/server/main.lua +++ b/resources/[qb]/qb-core/server/main.lua @@ -47,11 +47,3 @@ local function GetSharedGangs() return QBShared.Gangs end exports('GetSharedGangs', GetSharedGangs) - - - -- Jobs Creator integration (jobs_creator) - RegisterNetEvent("jobs_creator:injectJobs", function(jobs) - if type(source) == "number" and source > 0 then return end - QBCore.Shared.Jobs = jobs - end) - \ No newline at end of file diff --git a/resources/[qb]/qb-core/server/player.lua b/resources/[qb]/qb-core/server/player.lua index f54447470..4f73c0d30 100644 --- a/resources/[qb]/qb-core/server/player.lua +++ b/resources/[qb]/qb-core/server/player.lua @@ -146,8 +146,8 @@ function QBCore.Player.CheckPlayerData(source, PlayerData) applyDefaults(PlayerData, QBCore.Config.Player.PlayerDefaults) - if GetResourceState('qs-inventory') ~= 'missing' then - PlayerData.items = exports['qs-inventory']:LoadInventory(PlayerData.source, PlayerData.citizenid) + if GetResourceState('qb-inventory') ~= 'missing' then + PlayerData.items = exports['qb-inventory']:LoadInventory(PlayerData.source, PlayerData.citizenid) end return QBCore.Player.CreatePlayer(PlayerData, Offline) @@ -310,98 +310,83 @@ function QBCore.Player.CreatePlayer(PlayerData, Offline) return self.PlayerData.metadata['rep'][rep] or 0 end -function self.Functions.AddMoney(moneytype, amount, reason) - reason = reason or 'unknown' - moneytype = moneytype:lower() - amount = tonumber(amount) - if amount < 0 then return end - if not self.PlayerData.money[moneytype] then return false end - self.PlayerData.money[moneytype] = self.PlayerData.money[moneytype] + amount + function self.Functions.AddMoney(moneytype, amount, reason) + reason = reason or 'unknown' + moneytype = moneytype:lower() + amount = tonumber(amount) + if amount < 0 then return end + if not self.PlayerData.money[moneytype] then return false end + self.PlayerData.money[moneytype] = self.PlayerData.money[moneytype] + amount - local isMoneyItem, moneyItemName = exports["tgiann-inventory"]:IsMoneyItem(moneytype) - if isMoneyItem then - exports["tgiann-inventory"]:SetItem(self.PlayerData.source, moneyItemName, self.PlayerData.money[moneytype]) - end - - if not self.Offline then - self.Functions.UpdatePlayerData() - if amount > 100000 then - TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'AddMoney', 'lightgreen', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') added, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason, true) - else - TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'AddMoney', 'lightgreen', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') added, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason) + if not self.Offline then + self.Functions.UpdatePlayerData() + if amount > 100000 then + TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'AddMoney', 'lightgreen', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') added, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason, true) + else + TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'AddMoney', 'lightgreen', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') added, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason) + end + TriggerClientEvent('hud:client:OnMoneyChange', self.PlayerData.source, moneytype, amount, false) + TriggerClientEvent('QBCore:Client:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'add', reason) + TriggerEvent('QBCore:Server:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'add', reason) end - TriggerClientEvent('hud:client:OnMoneyChange', self.PlayerData.source, moneytype, amount, false) - TriggerClientEvent('QBCore:Client:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'add', reason) - TriggerEvent('QBCore:Server:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'add', reason) + + return true end - return true -end - -function self.Functions.RemoveMoney(moneytype, amount, reason) - reason = reason or 'unknown' - moneytype = moneytype:lower() - amount = tonumber(amount) - if amount < 0 then return end - if not self.PlayerData.money[moneytype] then return false end - for _, mtype in pairs(QBCore.Config.Money.DontAllowMinus) do - if mtype == moneytype then - if (self.PlayerData.money[moneytype] - amount) < 0 then - return false + function self.Functions.RemoveMoney(moneytype, amount, reason) + reason = reason or 'unknown' + moneytype = moneytype:lower() + amount = tonumber(amount) + if amount < 0 then return end + if not self.PlayerData.money[moneytype] then return false end + for _, mtype in pairs(QBCore.Config.Money.DontAllowMinus) do + if mtype == moneytype then + if (self.PlayerData.money[moneytype] - amount) < 0 then + return false + end end end - end - self.PlayerData.money[moneytype] = self.PlayerData.money[moneytype] - amount - local isMoneyItem, moneyItemName = exports["tgiann-inventory"]:IsMoneyItem(moneytype) - if isMoneyItem then - exports["tgiann-inventory"]:SetItem(self.PlayerData.source, moneyItemName, self.PlayerData.money[moneytype]) - end + if self.PlayerData.money[moneytype] - amount < QBCore.Config.Money.MinusLimit then return false end + self.PlayerData.money[moneytype] = self.PlayerData.money[moneytype] - amount - if not self.Offline then - self.Functions.UpdatePlayerData() - if amount > 100000 then - TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'RemoveMoney', 'red', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') removed, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason, true) - else - TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'RemoveMoney', 'red', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') removed, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason) + if not self.Offline then + self.Functions.UpdatePlayerData() + if amount > 100000 then + TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'RemoveMoney', 'red', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') removed, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason, true) + else + TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'RemoveMoney', 'red', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') removed, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason) + end + TriggerClientEvent('hud:client:OnMoneyChange', self.PlayerData.source, moneytype, amount, true) + if moneytype == 'bank' then + TriggerClientEvent('qb-phone:client:RemoveBankMoney', self.PlayerData.source, amount) + end + TriggerClientEvent('QBCore:Client:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'remove', reason) + TriggerEvent('QBCore:Server:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'remove', reason) end - TriggerClientEvent('hud:client:OnMoneyChange', self.PlayerData.source, moneytype, amount, true) - if moneytype == 'bank' then - TriggerClientEvent('qb-phone:client:RemoveBankMoney', self.PlayerData.source, amount) + + return true + end + + function self.Functions.SetMoney(moneytype, amount, reason) + reason = reason or 'unknown' + moneytype = moneytype:lower() + amount = tonumber(amount) + if amount < 0 then return false end + if not self.PlayerData.money[moneytype] then return false end + local difference = amount - self.PlayerData.money[moneytype] + self.PlayerData.money[moneytype] = amount + + if not self.Offline then + self.Functions.UpdatePlayerData() + TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'SetMoney', 'green', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') set, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason) + TriggerClientEvent('hud:client:OnMoneyChange', self.PlayerData.source, moneytype, math.abs(difference), difference < 0) + TriggerClientEvent('QBCore:Client:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'set', reason) + TriggerEvent('QBCore:Server:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'set', reason) end - TriggerClientEvent('QBCore:Client:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'remove', reason) - TriggerEvent('QBCore:Server:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'remove', reason) + + return true end - return true -end - -function self.Functions.SetMoney(moneytype, amount, reason, forInventory) - reason = reason or 'unknown' - moneytype = moneytype:lower() - amount = tonumber(amount) - if amount < 0 then return false end - if not self.PlayerData.money[moneytype] then return false end - local difference = amount - self.PlayerData.money[moneytype] - self.PlayerData.money[moneytype] = amount - - if not forInventory then - local isMoneyItem, moneyItemName = exports["tgiann-inventory"]:IsMoneyItem(moneytype) - if isMoneyItem then - exports["tgiann-inventory"]:SetItem(self.PlayerData.source, moneyItemName, amount) - end - end - - if not self.Offline then - self.Functions.UpdatePlayerData() - TriggerEvent('qb-log:server:CreateLog', 'playermoney', 'SetMoney', 'green', '**' .. GetPlayerName(self.PlayerData.source) .. ' (citizenid: ' .. self.PlayerData.citizenid .. ' | id: ' .. self.PlayerData.source .. ')** $' .. amount .. ' (' .. moneytype .. ') set, new ' .. moneytype .. ' balance: ' .. self.PlayerData.money[moneytype] .. ' reason: ' .. reason) - TriggerClientEvent('hud:client:OnMoneyChange', self.PlayerData.source, moneytype, math.abs(difference), difference < 0) - TriggerClientEvent('QBCore:Client:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'set', reason) - TriggerEvent('QBCore:Server:OnMoneyChange', self.PlayerData.source, moneytype, amount, 'set', reason) - end - - return true -end - function self.Functions.GetMoney(moneytype) if not moneytype then return false end moneytype = moneytype:lower() @@ -514,22 +499,13 @@ function QBCore.Player.Save(source) position = json.encode(pcoords), metadata = json.encode(PlayerData.metadata) }) - if GetResourceState('qs-inventory') ~= 'missing' then exports['qs-inventory']:SaveInventory(source) end + if GetResourceState('qb-inventory') ~= 'missing' then exports['qb-inventory']:SaveInventory(source) end QBCore.ShowSuccess(resourceName, PlayerData.name .. ' PLAYER SAVED!') else QBCore.ShowError(resourceName, 'ERROR QBCORE.PLAYER.SAVE - PLAYERDATA IS EMPTY!') end end -AddEventHandler('onResourceStop', function(resourceName) - if (resourceName == 'qs-inventory') then - local players = QBCore.Functions.GetPlayers() - for _, player in ipairs(players) do - QBCore.Player.Save(player) - end - end -end) - function QBCore.Player.SaveOffline(PlayerData) if PlayerData then MySQL.insert('INSERT INTO players (citizenid, cid, license, name, money, charinfo, job, gang, position, metadata) VALUES (:citizenid, :cid, :license, :name, :money, :charinfo, :job, :gang, :position, :metadata) ON DUPLICATE KEY UPDATE cid = :cid, name = :name, money = :money, charinfo = :charinfo, job = :job, gang = :gang, position = :position, metadata = :metadata', { @@ -544,7 +520,7 @@ function QBCore.Player.SaveOffline(PlayerData) position = json.encode(PlayerData.position), metadata = json.encode(PlayerData.metadata) }) - if GetResourceState('qs-inventory') ~= 'missing' then exports['qs-inventory']:SaveInventory(PlayerData, true) end + if GetResourceState('qb-inventory') ~= 'missing' then exports['qb-inventory']:SaveInventory(PlayerData, true) end QBCore.ShowSuccess(resourceName, PlayerData.name .. ' OFFLINE PLAYER SAVED!') else QBCore.ShowError(resourceName, 'ERROR QBCORE.PLAYER.SAVEOFFLINE - PLAYERDATA IS EMPTY!') @@ -619,28 +595,28 @@ end -- Inventory Backwards Compatibility function QBCore.Player.SaveInventory(source) - if GetResourceState('qs-inventory') == 'missing' then return end - exports['qs-inventory']:SaveInventory(source, false) + if GetResourceState('qb-inventory') == 'missing' then return end + exports['qb-inventory']:SaveInventory(source, false) end function QBCore.Player.SaveOfflineInventory(PlayerData) - if GetResourceState('qs-inventory') == 'missing' then return end - exports['qs-inventory']:SaveInventory(PlayerData, true) + if GetResourceState('qb-inventory') == 'missing' then return end + exports['qb-inventory']:SaveInventory(PlayerData, true) end function QBCore.Player.GetTotalWeight(items) - if GetResourceState('qs-inventory') == 'missing' then return end - return exports['qs-inventory']:GetTotalWeight(items) + if GetResourceState('qb-inventory') == 'missing' then return end + return exports['qb-inventory']:GetTotalWeight(items) end function QBCore.Player.GetSlotsByItem(items, itemName) - if GetResourceState('qs-inventory') == 'missing' then return end - return exports['qs-inventory']:GetSlotsByItem(items, itemName) + if GetResourceState('qb-inventory') == 'missing' then return end + return exports['qb-inventory']:GetSlotsByItem(items, itemName) end function QBCore.Player.GetFirstSlotByItem(items, itemName) - if GetResourceState('qs-inventory') == 'missing' then return end - return exports['qs-inventory']:GetFirstSlotByItem(items, itemName) + if GetResourceState('qb-inventory') == 'missing' then return end + return exports['qb-inventory']:GetFirstSlotByItem(items, itemName) end -- Util Functions diff --git a/resources/[qb]/qb-core/shared/gangs.lua b/resources/[qb]/qb-core/shared/gangs.lua index 333d33c08..70dc5a901 100644 --- a/resources/[qb]/qb-core/shared/gangs.lua +++ b/resources/[qb]/qb-core/shared/gangs.lua @@ -1,3 +1,58 @@ QBShared = QBShared or {} - -QBShared.Gangs = {} \ No newline at end of file +QBShared.Gangs = { + none = { label = 'No Gang', grades = { ['0'] = { name = 'Unaffiliated' } } }, + lostmc = { + label = 'The Lost MC', + grades = { + ['0'] = { name = 'Recruit' }, + ['1'] = { name = 'Enforcer' }, + ['2'] = { name = 'Shot Caller' }, + ['3'] = { name = 'Boss', isboss = true }, + }, + }, + ballas = { + label = 'Ballas', + grades = { + ['0'] = { name = 'Recruit' }, + ['1'] = { name = 'Enforcer' }, + ['2'] = { name = 'Shot Caller' }, + ['3'] = { name = 'Boss', isboss = true }, + }, + }, + vagos = { + label = 'Vagos', + grades = { + ['0'] = { name = 'Recruit' }, + ['1'] = { name = 'Enforcer' }, + ['2'] = { name = 'Shot Caller' }, + ['3'] = { name = 'Boss', isboss = true }, + }, + }, + cartel = { + label = 'Cartel', + grades = { + ['0'] = { name = 'Recruit' }, + ['1'] = { name = 'Enforcer' }, + ['2'] = { name = 'Shot Caller' }, + ['3'] = { name = 'Boss', isboss = true }, + }, + }, + families = { + label = 'Families', + grades = { + ['0'] = { name = 'Recruit' }, + ['1'] = { name = 'Enforcer' }, + ['2'] = { name = 'Shot Caller' }, + ['3'] = { name = 'Boss', isboss = true }, + }, + }, + triads = { + label = 'Triads', + grades = { + ['0'] = { name = 'Recruit' }, + ['1'] = { name = 'Enforcer' }, + ['2'] = { name = 'Shot Caller' }, + ['3'] = { name = 'Boss', isboss = true }, + }, + } +} diff --git a/resources/[qb]/qb-core/shared/items.lua b/resources/[qb]/qb-core/shared/items.lua index 5c4633a3c..6164389aa 100644 --- a/resources/[qb]/qb-core/shared/items.lua +++ b/resources/[qb]/qb-core/shared/items.lua @@ -1,10228 +1,390 @@ QBShared = QBShared or {} +QBShared.Items = { + -- WEAPONS + -- Melee + weapon_unarmed = { name = 'weapon_unarmed', label = 'Fists', weight = 1000, type = 'weapon', ammotype = nil, image = 'placeholder.png', unique = true, useable = false, description = 'Fisticuffs' }, + weapon_dagger = { name = 'weapon_dagger', label = 'Dagger', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_dagger.png', unique = true, useable = false, description = 'A short knife with a pointed and edged blade, used as a weapon' }, + weapon_bat = { name = 'weapon_bat', label = 'Bat', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_bat.png', unique = true, useable = false, description = 'Used for hitting a ball in sports (or other things)' }, + weapon_bottle = { name = 'weapon_bottle', label = 'Broken Bottle', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_bottle.png', unique = true, useable = false, description = 'A broken bottle' }, + weapon_crowbar = { name = 'weapon_crowbar', label = 'Crowbar', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_crowbar.png', unique = true, useable = false, description = 'An iron bar with a flattened end, used as a lever' }, + weapon_flashlight = { name = 'weapon_flashlight', label = 'Flashlight', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_flashlight.png', unique = true, useable = false, description = 'A battery-operated portable light' }, + weapon_golfclub = { name = 'weapon_golfclub', label = 'Golfclub', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_golfclub.png', unique = true, useable = false, description = 'A club used to hit the ball in golf' }, + weapon_hammer = { name = 'weapon_hammer', label = 'Hammer', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_hammer.png', unique = true, useable = false, description = 'Used for jobs such as breaking things (legs) and driving in nails' }, + weapon_hatchet = { name = 'weapon_hatchet', label = 'Hatchet', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_hatchet.png', unique = true, useable = false, description = 'A small axe with a short handle for use in one hand' }, + weapon_knuckle = { name = 'weapon_knuckle', label = 'Knuckle', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_knuckle.png', unique = true, useable = false, description = 'A metal guard worn over the knuckles in fighting, especially to increase the effect of the blows' }, + weapon_knife = { name = 'weapon_knife', label = 'Knife', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_knife.png', unique = true, useable = false, description = 'An instrument composed of a blade fixed into a handle, used for cutting or as a weapon' }, + weapon_machete = { name = 'weapon_machete', label = 'Machete', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_machete.png', unique = true, useable = false, description = 'A broad, heavy knife used as a weapon' }, + weapon_switchblade = { name = 'weapon_switchblade', label = 'Switchblade', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_switchblade.png', unique = true, useable = false, description = 'A knife with a blade that springs out from the handle when a button is pressed' }, + weapon_nightstick = { name = 'weapon_nightstick', label = 'Nightstick', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_nightstick.png', unique = true, useable = false, description = 'A police officer\'s club or billy' }, + weapon_wrench = { name = 'weapon_wrench', label = 'Wrench', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_wrench.png', unique = true, useable = false, description = 'A tool used for gripping and turning nuts, bolts, pipes, etc' }, + weapon_battleaxe = { name = 'weapon_battleaxe', label = 'Battle Axe', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_battleaxe.png', unique = true, useable = false, description = 'A large broad-bladed axe used in ancient warfare' }, + weapon_poolcue = { name = 'weapon_poolcue', label = 'Poolcue', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_poolcue.png', unique = true, useable = false, description = 'A stick used to strike a ball, usually the cue ball (or other things)' }, + weapon_briefcase = { name = 'weapon_briefcase', label = 'Briefcase', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_briefcase.png', unique = true, useable = false, description = 'A briefcase for storing important documents' }, + weapon_briefcase_02 = { name = 'weapon_briefcase_02', label = 'Suitcase', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_briefcase2.png', unique = true, useable = false, description = 'Wonderfull for nice vacation to Liberty City' }, + weapon_garbagebag = { name = 'weapon_garbagebag', label = 'Garbage Bag', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_garbagebag.png', unique = true, useable = false, description = 'A garbage bag' }, + weapon_handcuffs = { name = 'weapon_handcuffs', label = 'Handcuffs', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_handcuffs.png', unique = true, useable = false, description = 'A pair of lockable linked metal rings for securing a prisoner\'s wrists' }, + weapon_bread = { name = 'weapon_bread', label = 'Baquette', weight = 1000, type = 'weapon', ammotype = nil, image = 'baquette.png', unique = true, useable = false, description = 'Bread...?' }, + weapon_stone_hatchet = { name = 'weapon_stone_hatchet', label = 'Stone Hatchet', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_stone_hatchet.png', unique = true, useable = true, description = 'Stone Hatchet' }, + weapon_candycane = { name = 'weapon_candycane', label = 'Candy Cane', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_candycane', unique = true, useable = true, description = 'Candy Cane' }, -QBShared.Items = { - smg_grip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'grip_attachment.png', - shouldClose = true, - label = 'SMG Griff', - name = 'smg_grip', - }, - coke_small_brick = { - useable = false, - weight = 350, - type = 'item', - unique = true, - description = 'Small package of cocaine, mostly used for deals and takes a lot of space', - image = 'coke_small_brick.png', - shouldClose = true, - label = 'Coke Package', - name = 'coke_small_brick', - }, - veh_armor = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle armor', - image = 'veh_armor.png', - shouldClose = true, - label = 'Armor', - name = 'veh_armor', - }, - eimdalls_uard_read = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Stark und nahrhaft, dieses Brot bewacht den Magen und bereitet dich auf den Genuss der kommenden Speisen vor.', - image = 'HeimdallsGuardBread.png', - shouldClose = true, - label = 'Heimdall\'s Guard Bread', - name = 'heimdalls_guard_bread', - }, - cigkfte = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'cigkfte.png', - shouldClose = true, - label = 'Cigköfte', - name = 'cigkfte', - }, - weapon_autoshotgun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A shotgun capable of rapid continous fire', - image = 'weapon_autoshotgun.png', - label = 'Auto Shotgun', - ammotype = 'AMMO_SHOTGUN', - name = 'weapon_autoshotgun', - }, - woodbug = { - useable = false, - weight = 4, - type = 'item', - unique = false, - description = 'Deutsche Borkenkäfer dürfen dies....', - image = 'woodbug.png', - shouldClose = false, - label = 'Borkenkäfer', - name = 'woodbug', - }, - bagruben = { - useable = false, - weight = 2000, - type = 'item', - unique = true, - description = '', - image = 'bagruben.png', - shouldClose = false, - label = 'Sack Zuckerrüben', - name = 'bagruben', - }, - pisman = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'pisman.png', - shouldClose = true, - label = 'Pismaniye', - name = 'pisman', - }, - boomcamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A boom camo for a weapon', - image = 'boomcamo_attachment.png', - shouldClose = true, - label = 'Boom Camo', - name = 'boomcamo_attachment', - }, - cefalexin = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'Cefalexin.png', - shouldClose = true, - label = 'Cefalexin', - name = 'cefalexin', - }, - smg_drum = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'drum_attachment.png', - shouldClose = true, - label = 'SMG Trommelmagazin', - name = 'smg_drum', - }, - lean_route = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', - image = 'lean_route.png', - shouldClose = false, - label = 'Lean Route', - name = 'lean_route', - }, - cc_cake = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'cc_cake.png', - shouldClose = true, - label = 'Cheesecake', - name = 'cc_cake', - }, - bucket = { - useable = false, - weight = 600, - type = 'item', - unique = false, - description = 'alles im Eimer ^^', - image = 'bucket.png', - shouldClose = false, - label = 'Eimer', - name = 'bucket', - }, - vitaminloesung_500 = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = '', - image = 'screenshot_696-removebg-preview.png', - shouldClose = true, - label = 'Vitaminlösung 500', - name = 'vitaminloesung_500', - }, - ['kspieß'] = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'kspieß.png', - shouldClose = true, - label = 'Köftespieß', - name = 'kspieß', - }, - plastic = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'RECYCLE! - Greta Thunberg 2019', - image = 'plastic.png', - shouldClose = false, - label = 'Kunststoff', - name = 'plastic', - }, - weapontint_mk2_27 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic Red Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic Red Tint', - name = 'weapontint_mk2_27', - }, - weed_ak47 = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'A weed bag with 2g AK47', - image = 'weed_baggy.png', - shouldClose = false, - label = 'AK47 2g', - name = 'weed_ak47', - }, - slanted_muzzle_brake = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A muzzle brake for a weapon', - image = 'slanted_muzzle_brake.png', - shouldClose = true, - label = 'Slanted Muzzle Brake', - name = 'slanted_muzzle_brake', - }, - fish_fillet = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'fish_fillet.png', - shouldClose = false, - label = 'Fischfilet', - name = 'fish_fillet', - }, - shisha_tobacco = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'shisha_tobacco.png', - shouldClose = false, - label = 'Shisha Tabak', - name = 'shisha_tobacco', - }, - heimdalls_guard_bread = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'HeimdallsGuardBread.png', - shouldClose = true, - label = 'Heimdalls Guard Bread', - name = 'heimdalls_guard_bread', - }, - boxsalad = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'saladbox.png', - shouldClose = false, - label = 'Kiste Eisbergsalat', - name = 'boxsalad', - }, - weapon_railgun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A weapon that uses electromagnetic force to launch high velocity projectiles', - name = 'weapon_railgun', - label = 'Railgun', - image = 'weapon_railgun.png', - }, - gg_hunting_campfire = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'gg_hunting_campfire.png', - shouldClose = true, - label = 'Lagerfeuerkit', - name = 'gg_hunting_campfire', - }, - firework1 = { - useable = true, - weight = 600, - type = 'item', - unique = false, - description = 'Fireworks', - image = 'firework1.png', - shouldClose = true, - label = 'Space Rocket', - name = 'firework1', - }, - weapontint_mk2_5 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Classic Green Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Classic Green Tint', - name = 'weapontint_mk2_5', - }, - applejuice = { - useable = true, - weight = 400, - type = 'item', - unique = false, - description = '', - image = 'applejuice.png', - shouldClose = false, - label = 'Flasche Apfelsaft', - name = 'applejuice', - }, - cooked_turkey_drum = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'cooked_turkey_drum.png', - shouldClose = true, - label = 'gegrillte Putenkeule', - name = 'cooked_turkey_drum', - }, - weapontint_mk2_1 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Classic Gray Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Classic Gray Tint', - name = 'weapontint_mk2_1', - }, - freyas_kiss = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Ein verführerischer und zarter Drink, der die Schönheit der Göttin Freya widerspiegelt.', - image = 'FreyasKiss.png', - shouldClose = true, - label = 'Freya\'s Kiss', - name = 'freyas_kiss', - }, - boxgrapes = { - useable = false, - weight = 400, - type = 'item', - unique = false, - description = '', - image = 'boxgrapes.png', - shouldClose = false, - label = 'Packung Weintrauben', - name = 'boxgrapes', - }, - katzenfutter = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'besser als das was du hier zu essen bekommst XD', - image = 'catfood.png', - shouldClose = true, - label = 'Katzenfutter', - name = 'katzenfutter', - }, - firework2 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Fireworks', - image = 'firework2.png', - shouldClose = true, - label = 'Boomstorm', - name = 'firework2', - }, - koboldkotze = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'Koboldkotze.png', - shouldClose = false, - label = 'Koboldkotze', - name = 'koboldkotze', - }, - handle = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Der Klassiker der Griffe', - image = 'hammerhandle.png', - shouldClose = false, - label = 'Holzgriff', - name = 'handle', - }, - casinochips = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = 'Chips For Casino Gambling', - image = 'casinochips.png', - shouldClose = false, - label = 'Casino Chips', - name = 'casinochips', - }, - aluminumoxide = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'Some powder to mix with', - image = 'aluminumoxide.png', - shouldClose = false, - label = 'Aluminium Powder', - name = 'aluminumoxide', - }, - boxorange = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'boxorange.png', - shouldClose = false, - label = 'Kiste Orangen', - name = 'boxorange', - }, - filament = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'filament.png', - shouldClose = false, - label = 'Filament', - name = 'filament', - }, - joint = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'Die Friedenspfeife 2.0', - image = 'joint7.png', - shouldClose = true, - label = 'Joint', - name = 'joint', - }, - sugar = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'sugaar.png', - shouldClose = false, - label = 'Packung Zucker ', - name = 'sugar', - }, - smg_defaultclip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'clip_attachment.png', - shouldClose = true, - label = 'SMG Magazine', - name = 'smg_defaultclip', - }, - table = { - useable = true, - weight = 400, - type = 'item', - unique = false, - description = '', - image = 'table.png', - shouldClose = true, - label = 'Klapptisch', - name = 'table', - }, - soocer = { - useable = false, - weight = 400, - type = 'item', - unique = true, - description = '', - image = 'soccer.png', - shouldClose = false, - label = 'Fußball', - name = 'soocer', - }, - ems_card = { - useable = true, - weight = 10, - type = 'item', - unique = true, - description = '', - image = 'police_card.png', - shouldClose = true, - label = 'MD Dienstausweis', - name = 'ems_card', - }, - gardenshovel = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '', - image = 'gardenshovel.png', - shouldClose = false, - label = 'Gartenschaufel', - name = 'gardenshovel', - }, - weapon_molotov = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A crude bomb made of a bottle filled with a flammable liquid and fitted with a wick for lighting', - name = 'weapon_molotov', - label = 'Molotov', - image = 'weapon_molotov.png', - }, - weapon_firework = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A device containing gunpowder and other combustible chemicals that causes a spectacular explosion when ignited', - name = 'weapon_firework', - label = 'Firework Launcher', - image = 'weapon_firework.png', - }, - empty_evidence_bag = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = 'Used a lot to keep DNA from blood, bullet shells and more', - image = 'evidence.png', - shouldClose = false, - label = 'Empty Evidence Bag', - name = 'empty_evidence_bag', - }, - weapon_crossbow = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = '', - image = 'weapon_crossbow.png', - shouldClose = true, - label = 'Jagd Armbrust', - name = 'weapon_crossbow', - }, - apple = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_848-removebg-preview.png', - shouldClose = false, - label = 'Apfel', - name = 'apple', - }, - weapontint_5 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'LSPD Weapon Tint', - image = 'weapontint_lspd.png', - shouldClose = true, - label = 'LSPD Tint', - name = 'weapontint_5', - }, - weapontint_mk2_9 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Red Contrast Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Red Contrast Tint', - name = 'weapontint_mk2_9', - }, - blotter_paper = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'Das Papier, das dich nicht nur trocknen lässt, sondern auch deine Gedanken', - image = 'paperroll.png', - shouldClose = false, - label = 'Blotterpapier', - name = 'blotter_paper', - }, - weapon_combatshotgun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Combatshotgun', - image = 'weapon_combatshotgun.png', - label = 'Beanbag Shotgun', - ammotype = 'AMMO_BEANBAG', - name = 'weapon_combatshotgun', - }, - xtcbaggy = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'Pop those pills baby', - image = 'xtc_baggy.png', - shouldClose = true, - label = 'Bag of XTC', - name = 'xtcbaggy', - }, - weapon_bzgas = { - useable = false, - weight = 500, - type = 'weapon', - unique = false, - description = 'Tränen aus der Dose', - name = 'weapon_bzgas', - label = 'Tränengas Granate', - image = 'bz_gas.png', - }, - pistol_compensator = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'comp_attachment.png', - shouldClose = true, - label = 'Pistolen Kompensator', - name = 'pistol_compensator', - }, - tablet = { - useable = false, - weight = 2000, - type = 'item', - unique = false, - description = 'Expensive tablet', - image = 'tablet.png', - shouldClose = true, - label = 'Tablet', - name = 'tablet', - }, - kennzeichen_tool = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'kennzeichen_tool.png', - shouldClose = true, - label = 'Kennzeichen', - name = 'kennzeichen_tool', - }, - lysergic_acid = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Der geheime VIP-Zugang zu einer anderen Realität', - image = 'acid.png', - shouldClose = false, - label = 'Lysergsäure', - name = 'lysergic_acid', - }, - weapon_flashlight = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Heller als Du ^^', - name = 'weapon_flashlight', - label = 'Flashlight', - image = 'weapon_flashlight.png', - }, - weapon_dbshotgun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A shotgun with two parallel barrels, allowing two single shots to be fired in quick succession', - image = 'weapon_dbshotgun.png', - label = 'Double-barrel Shotgun', - ammotype = 'AMMO_SHOTGUN', - name = 'weapon_dbshotgun', - }, - aldurs_ight_lixir = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Ein strahlendes und belebendes Getränk, das den leuchtenden Geist Baldurs einfängt.', - image = 'BaldursLightElixir.png', - shouldClose = true, - label = 'Baldur\'s Light Elixir', - name = 'baldurs_light_elixir', - }, - ev_coolant = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'ev_coolant.png', - shouldClose = true, - label = 'EV_Kühlkit', - name = 'ev_coolant', - }, - codeine_syrup = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'Der Sirup, der dich von „A“ nach „Z“ schickt – aber ohne Zwischenstopps', - image = 'crackmixingagent.png', - shouldClose = false, - label = 'Codein-Sirup', - name = 'codeine_syrup', - }, - blood_100 = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'blood_100.png', - shouldClose = true, - label = 'Blut (100ml)', - name = 'blood_100', - }, - weapon_carbinerifle_mk2 = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Carbine Rifle MK2', - image = 'screenshot_455-removebg-preview.png', - label = 'Softair Gewehr', - ammotype = 'AMMO_RIFLE', - name = 'weapon_carbinerifle_mk2', - }, - dackelk = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'Dackelklatscher.png', - shouldClose = false, - label = 'Dackelklatscher', - name = 'dackelk', - }, - hors_hunder_ings = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Knusprig, würzig und mit einem feurigen Biss – diese Flügel schlagen ein wie ein Donnerblitz.', - image = 'ThorsThunderWings.png', - shouldClose = true, - label = 'Thor\'s Thunder Wings', - name = 'hors_hunder_ings', - }, - corn_cob = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'corn_cob.png', - shouldClose = true, - label = 'Maiskolben', - name = 'corn_cob', - }, - leberkas_semmal = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Mehr Fleisch als Worte – des is koa Semmel, des is a Lebensgefühl!', - image = 'leberkas_semmal.png', - shouldClose = true, - label = 'Leberkas Semmal', - name = 'leberkas_semmal', - }, - cc_kaffe = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'cc_kaffe.png', - shouldClose = true, - label = 'Kaffee', - name = 'cc_kaffe', - }, - okis_rickster_unch = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Unberechenbar und aufregend, dieser Mocktail hält eine erfrischende Überraschung parat.', - image = 'LokisTricksterPunch.png', - shouldClose = true, - label = 'Loki\'s Trickster Punch', - name = 'lokis_trickster_punch', - }, - rifle_ammo = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'schnelles Peng', - image = 'rifle_ammo.png', - shouldClose = true, - label = 'Gewehr Munition', - name = 'rifle_ammo', - }, - big_bottle_lemonade = { - useable = true, - weight = 600, - type = 'item', - unique = false, - description = '', - image = 'big_bottle_lemonade.png', - shouldClose = true, - label = 'große Flasche Sprunk', - name = 'big_bottle_lemonade', - }, - wood = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Ich und mein Holz....', - image = 'wood.png', - shouldClose = false, - label = 'Holz', - name = 'wood', - }, - popcorn = { - useable = true, - weight = 150, - type = 'item', - unique = true, - description = 'Frisch aufgepopptes Popcorn ', - image = 'ChatGPT Image 26. Apr. 2025, 17_05_56-min.png', - shouldClose = true, - label = 'Popcorn', - name = 'popcorn', - }, - weapon_combatmg_mk2 = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Combatmg MK2', - image = 'weapon_combatmg_mk2.png', - label = 'Combat MG Mk II', - ammotype = 'AMMO_MG', - name = 'weapon_combatmg_mk2', - }, - smg_extendedclip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'smg_extendedclip.png', - shouldClose = true, - label = 'erw. SMG Magazin', - name = 'smg_extendedclip', - }, - weapon_stungun = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'manchmal ist es einfach praktischer, jemanden mit Stromschlägen zu „überzeugen“, anstatt ein vernünftiges Gespräch zu führen.', - name = 'weapon_stungun', - label = 'Taser X6', - image = 'weapon_stungun.png', - }, - weapontint_mk2_3 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Classic White Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Classic White Tint', - name = 'weapontint_mk2_3', - }, - fries_with_dip = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Knusprig goldene Pommes, serviert im kleinen Metallkorb – dazu ein cremiger Dip im stilechten Mini-Metalleimer.', - image = 'ChatGPT_Image_27._Apr._2025__12_41_35-removebg-preview.png', - shouldClose = true, - label = 'Pommes mit Dip ', - name = 'fries_with_dip', - }, - comp_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A compensator for a weapon', - image = 'comp_attachment.png', - shouldClose = true, - label = 'Compensator', - name = 'comp_attachment', - }, - weapon_snowball = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A ball of packed snow, especially one made for throwing at other people for fun', - name = 'weapon_snowball', - label = 'Snowball', - image = 'weapon_snowball.png', - }, - saldprezels = { - useable = true, - weight = 150, - type = 'item', - unique = true, - description = 'Knusprige Mini-Salzbrezeln', - image = 'ChatGPT_Image_27._Apr._2025__00_12_06-removebg-preview.png', - shouldClose = true, - label = 'Salzbrezeln', - name = 'saldprezels', - }, - frittenwbm = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'Fritten_wie_bei_Muttern.png', - shouldClose = false, - label = 'Fritten wie bei Muttern', - name = 'frittenwbm', - }, - holoscope_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A holo scope for a weapon', - image = 'holoscope_attachment.png', - shouldClose = true, - label = 'Holo Scope', - name = 'holoscope_attachment', - }, - weapon_pumpshotgun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Der Türöffner für Cops, wenn Klopfen keine Option mehr ist.', - image = 'screenshot_399-removebg-preview.png', - label = 'Banalli Schrotflinte', - ammotype = 'AMMO_SHOTGUN', - name = 'weapon_pumpshotgun', - }, - meth = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'A baggie of Meth', - image = 'meth_baggy.png', - shouldClose = true, - label = 'Meth', - name = 'meth', - }, - weapon_assaultrifle = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Russlands Antwort auf jedes Problem: zuverlässig, unkaputtbar und schießt sogar noch, wenn Wodka drüber gekippt wird.', - image = 'weapon_assaultrifle.png', - label = 'AK 75', - ammotype = 'AMMO_RIFLE', - name = 'weapon_assaultrifle', - }, - narketan = { - useable = true, - weight = 250, - type = 'item', - unique = false, - description = '', - image = 'screenshot_696-removebg-preview.png', - shouldClose = true, - label = 'Narketan', - name = 'narketan', - }, - aktexyz = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'aktexyz.png', - shouldClose = false, - label = 'Akte XYZ', - name = 'aktexyz', - }, - snp_ammo = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Ammo for Sniper Rifles', - image = 'snp_ammo.png', - shouldClose = true, - label = 'Sniper Munition', - name = 'snp_ammo', - }, - orangejuice = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'orangejuice.png', - shouldClose = false, - label = 'Flasche Orangensaft', - name = 'orangejuice', - }, - lsd_papers = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'Miniatur-Kunstwerke, die dir den Kopf verdrehen – aber hey, zumindest sieht alles schöner aus.', - image = 'lsd.png', - shouldClose = true, - label = 'LSD-Papes', - name = 'lsd_papers', - }, - cigbox = { - useable = true, - weight = 400, - type = 'item', - unique = true, - description = '', - image = 'cigbox.png', - shouldClose = false, - label = 'Zigarrenkiste', - name = 'cigbox', - }, - billokaffee = { - useable = true, - weight = 80, - type = 'item', - unique = false, - description = 'Die Schande Kolumbiens', - image = 'billokaffee.png', - shouldClose = true, - label = 'Billo Kaffee', - name = 'billokaffee', - }, - espresso = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Hiernach bist du safe wach ^^', - image = 'espresso.png', - shouldClose = true, - label = 'Tasse Espresso', - name = 'espresso', - }, - rawmeat = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'rawmeat.png', - shouldClose = false, - label = 'rohes Fleisch', - name = 'rawmeat', - }, - weapon_ball = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A solid or hollow spherical or egg-shaped object that is kicked, thrown, or hit in a game', - image = 'weapon_ball.png', - label = 'Ball', - ammotype = 'AMMO_BALL', - name = 'weapon_ball', - }, - filter_papers = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Der Joint ist dein Freund und am besten mit Filter', - image = 'filter_papers.png', - shouldClose = false, - label = 'Filtertips', - name = 'filter_papers', - }, - ammo_grenadelauncher = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Munition für den Granatwerfer', - image = 'grenade_launcher_tokyo_marui_m320a1_6_-removebg-preview.png', - shouldClose = true, - label = 'AMMO_GRENADELAUNCHER', - name = 'ammo_grenadelauncher', - }, - novalmin = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'Novalmin.png', - shouldClose = true, - label = 'Novalmin', - name = 'novalmin', - }, - weed_route = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', - image = 'weed_route.png', - shouldClose = false, - label = 'Weed Route', - name = 'weed_route', - }, - weed_ak47_seed = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A weed seed of AK47', - image = 'weed_seed.png', - shouldClose = true, - label = 'AK47 Seed', - name = 'weed_ak47_seed', - }, - ['5-fach_impfung_hund'] = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'hundeimpfstoff.png', - shouldClose = true, - label = '5-fach Impfung Hund', - name = '5-fach_impfung_hund', - }, - ['3-fach_impfung_katze'] = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'katzenimpfstoff.png', - shouldClose = true, - label = '3-fach Impfung Katze', - name = '3-fach_impfung_katze', - }, - creditcard = { - useable = false, - weight = 0, - type = 'item', - unique = true, - description = 'Ich brauch Geld', - image = 'creditcard.png', - shouldClose = true, - label = 'Bankkarte', - name = 'creditcard', - }, - weapon_colbaton = { - useable = true, - weight = 100, - type = 'weapon', - unique = true, - description = '', - image = 'weapon_colbaton.png', - shouldClose = true, - label = 'Teleskopschlagstock', - name = 'weapon_colbaton', - }, - cooked_bbq_ribeye = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_bbq_ribeye.png', - shouldClose = true, - label = 'gegrilltes Ribeye Steak', - name = 'cooked_bbq_ribeye', - }, - paper = {}, - voltaren_salbenverband = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'salbenverband.png', - shouldClose = true, - label = 'Voltaren Salbenverband', - name = 'voltaren_salbenverband', - }, - njords_sea_platter = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'NjordsSeaPlatter.png', - shouldClose = true, - label = 'Njords Sea Platter', - name = 'njords_sea_platter', - }, - baldurslightelixir = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Ein strahlendes und belebendes Getränk, das den leuchtenden Geist Baldurs einfängt.', - image = 'BaldursLightElixir.png', - shouldClose = true, - label = 'Baldurs Light Elixir', - name = 'baldurslightelixir', - }, - weapon_combatpdw = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Ab Werk leise', - image = 'weapon_combatpdw.png', - shouldClose = true, - label = 'Zig MPX', - name = 'weapon_combatpdw', - }, - boxapples = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'applebox.png', - shouldClose = false, - label = 'Kiste Äpfel', - name = 'boxapples', - }, - weapontint_mk2_32 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic Red and Yellow Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic Red and Yellow Tint', - name = 'weapontint_mk2_32', - }, - heavy_duty_muzzle_brake = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A muzzle brake for a weapon', - image = 'heavy_duty_muzzle_brake.png', - shouldClose = true, - label = 'HD Muzzle Brake', - name = 'heavy_duty_muzzle_brake', - }, - rare_earths = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'rare_earths.png', - shouldClose = false, - label = 'seltene Erden', - name = 'rare_earths', - }, - cay = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Türkischer Tee', - image = 'Cay.png', - shouldClose = true, - label = 'Cay', - name = 'cay', - }, - weapon_specialcarbine_mk2 = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Wpecialcarbine MK2', - image = 'highteamspecialcarbinemk2.png', - label = 'Special Carbine Mk II', - ammotype = 'AMMO_RIFLE', - name = 'weapon_specialcarbine_mk2', - }, - weed_nutrition = { - useable = true, - weight = 2000, - type = 'item', - unique = false, - description = 'Plant nutrition', - image = 'weed_nutrition.png', - shouldClose = true, - label = 'Plant Fertilizer', - name = 'weed_nutrition', - }, - potatobag = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'potatobag.png', - shouldClose = false, - label = 'Sack Kartoffeln', - name = 'potatobag', - }, - blood_750 = { - useable = true, - weight = 750, - type = 'item', - unique = false, - description = '', - image = 'blood_750.png', - shouldClose = true, - label = 'Blut (750ml)', - name = 'blood_750', - }, - boxwater = { - useable = false, - weight = 2000, - type = 'item', - unique = true, - description = '', - image = 'boxwater.png', - shouldClose = false, - label = 'Kiste Wasser', - name = 'boxwater', - }, - weapon_petrolcan = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A robust liquid container made from pressed steel', - image = 'weapon_petrolcan.png', - label = 'Petrol Can', - ammotype = 'AMMO_PETROLCAN', - name = 'weapon_petrolcan', - }, - weapon_marksmanpistol = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A very accurate small firearm designed to be held in one hand', - image = 'weapon_marksmanpistol.png', - label = 'Marksman Pistol', - ammotype = 'AMMO_PISTOL', - name = 'weapon_marksmanpistol', - }, - vehicle_wheels = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'vehicle_wheels.png', - shouldClose = true, - label = 'Felgen', - name = 'vehicle_wheels', - }, - nvscope_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A night vision scope for a weapon', - image = 'nvscope_attachment.png', - shouldClose = true, - label = 'Night Vision Scope', - name = 'nvscope_attachment', - }, - kbrotmcr = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'Koboldbrot_mit_Cheddar.png', - shouldClose = false, - label = 'Koboldbrot mit Cheedar', - name = 'kbrotmcr', - }, - cooked_bbq_sausages = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_bbq_sausages.png', - shouldClose = true, - label = 'gegrillte Bratwurst', - name = 'cooked_bbq_sausages', - }, - hors_hunder_torm = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Ein spritziges Getränk mit einem überraschenden Kick, das wie ein Donnerschlag erfrischt.', - image = 'ThorsThunderStorm.png', - shouldClose = true, - label = 'Thor\'s Thunder Storm (alkoholfrei)', - name = 'thors_thunder_storm', - }, - poison = { - useable = false, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'poison.png', - shouldClose = false, - label = 'Kugelfisch Gift', - name = 'poison', - }, - weapon_pistol_mk2 = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An upgraded small firearm designed to be held in one hand', - image = 'weapon_pistol_mk2.png', - label = 'Klog 19', - ammotype = 'AMMO_PISTOL', - name = 'weapon_pistol_mk2', - }, - sniper_suppressor = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'suppressor_attachment.png', - shouldClose = true, - label = 'Sniper Schalldämpfer', - name = 'sniper_suppressor', - }, - green_phone = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '„Du bist nicht oberflächlich. Du hast einfach ein teures Telefon.“', - image = 'green_phone.png', - shouldClose = false, - label = 'iFruit 12XR Grün', - name = 'green_phone', - }, - veh_tint = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Install vehicle tint', - image = 'veh_tint.png', - shouldClose = true, - label = 'Tints', - name = 'veh_tint', - }, - bw_cupcake = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'bw_cupcake.png', - shouldClose = true, - label = 'Black & White Cupcake', - name = 'bw_cupcake', - }, - dagger_blade = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'So klein, du siehst sie fast nicht – aber sie hinterlässt Eindruck', - image = 'P1026942-3-scaled-removebg-preview.png', - shouldClose = false, - label = 'Dolchklinge', - name = 'dagger_blade', - }, - vehicletracker = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'vehicletracker.png', - shouldClose = true, - label = 'GPS Modul', - name = 'vehicletracker', - }, - falafel = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Falafel mit Joghurtsauce', - image = 'Falafel.png', - shouldClose = true, - label = 'Falafel', - name = 'falafel', - }, - parachute = { - useable = true, - weight = 30000, - type = 'item', - unique = true, - description = 'The sky is the limit! Woohoo!', - image = 'parachute.png', - shouldClose = true, - label = 'Parachute', - name = 'parachute', - }, - redwoodpack = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'redwoodpack.png', - shouldClose = true, - label = 'Packung Redwood Zigaretten', - name = 'redwoodpack', - }, - steel_ingots = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Hier trifft pure Masse auf unendliches Potenzial.', - image = 'steel_ingot.png', - shouldClose = false, - label = 'Stahlbarren', - name = 'steel_ingots', - }, - tranexamsaure = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'tranexamsaure.png', - shouldClose = true, - label = 'Tranexamsäure', - name = 'tranexamsaure', - }, - cup_lemonade = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'cup_lemonade.png', - shouldClose = true, - label = 'Becher Sprunk', - name = 'cup_lemonade', - }, - raw_ribs = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'raw_ribs.png', - shouldClose = true, - label = 'rohe Rippchen', - name = 'raw_ribs', - }, - cc_cino = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'cc_cino.png', - shouldClose = true, - label = 'Cappuccino', - name = 'cc_cino', - }, - ifaks = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'ifaks for healing and a complete stress remover.', - image = 'ifaks.png', - shouldClose = true, - label = 'ifaks', - name = 'ifaks', - }, - pizza_piece = { - useable = true, - weight = 150, - type = 'item', - unique = false, - description = 'Ein Stück Glück auf deinem Teller – Genieße unser köstliches Stück Pizza!', - name = 'pizza_piece', - label = 'Stück Pizza', - shouldClose = true, - }, - ecola_zero_flasche = { - useable = true, - weight = 80, - type = 'item', - unique = false, - description = 'Flasche Cola', - image = 'ecolazerobottle.png', - shouldClose = true, - label = 'E-Cola Zero Flasche', - name = 'ecola_zero_flasche', - }, - water_bottle = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Gerüchte sagen, es stammt aus einem Gletscher – wahrscheinlich eher aus dem Hahn hinterm Werkstor.', - image = 'wasserflasche.png', - shouldClose = true, - label = 'Wasser Flasche ', - name = 'water_bottle', - }, - hotdog = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_691-removebg-preview.png', - shouldClose = true, - label = 'Hot Dog', - name = 'hotdog', - }, - milk = { - useable = true, - weight = 400, - type = 'item', - unique = false, - description = 'Muuuuhhhh ', - image = 'milk.png', - shouldClose = true, - label = 'Packung Milch', - name = 'milk', - }, - kolonya = { - useable = true, - weight = 150, - type = 'item', - unique = false, - description = 'Duftwasser - Geschenk für Gäste', - image = 'Kolonya.png', - shouldClose = true, - label = 'Kolonya', - name = 'kolonya', - }, - sprunk = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '"Weil dein Körper Zucker liebt – du aber nicht deinen Körper."', - image = 'sprunk.png', - shouldClose = true, - label = 'Sprunk Softdrink', - name = 'sprunk', - }, - advancedlockpick = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'If you lose your keys a lot this is very useful... Also useful to open your beers', - image = 'advancedlockpick.png', - shouldClose = true, - label = 'Advanced Lockpick', - name = 'advancedlockpick', - }, - glucoseg40 = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'glucoseg40.png', - shouldClose = true, - label = 'Glucose 40%', - name = 'glucoseg40', - }, - drill = { - useable = false, - weight = 0, - type = 'item', - unique = true, - description = 'The real deal...', - image = 'drill.png', - shouldClose = false, - label = 'Bohrmaschine', - name = 'drill', - }, - mmorgenlicht = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'mmorgenlicht.png', - shouldClose = false, - label = 'Meiers Morgenlicht', - name = 'mmorgenlicht', - }, - riverwater = { - useable = false, - weight = 3000, - type = 'item', - unique = true, - description = '', - image = 'kanister.png', - shouldClose = false, - label = 'Kanister mit Wasser', - name = 'riverwater', - }, - weapon_heavysniper_mk2 = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Heavysniper MK2', - image = 'weapon_heavysniper_mk2.png', - label = 'Heavy Sniper Mk II', - ammotype = 'AMMO_SNIPER', - name = 'weapon_heavysniper_mk2', - }, - repair_kit = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'Für Schnelle & Kleinere Reparaturen ', - image = 'repair_kit.png', - shouldClose = true, - label = 'Werkzeug', - name = 'repair_kit', - }, - weapontint_mk2_13 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Pink Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Pink Tint', - name = 'weapontint_mk2_13', - }, - shoe = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'ein Schuh an Kop .... oder so', - image = 'shoe.png', - shouldClose = false, - label = 'Schuh', - name = 'shoe', - }, - revolver_barrel = { - useable = false, - weight = 250, - type = 'item', - unique = false, - description = 'Revolver-Abzug: Ein kurzer Zug, der großen Knall bringt', - image = 'axehandle.png', - shouldClose = false, - label = 'Revolverlauf', - name = 'revolver_barrel', - }, - gg_salt_block_01 = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'gg_salt_block_01.png', - shouldClose = true, - label = 'Salzblock', - name = 'gg_salt_block_01', - }, - weapontint_mk2_29 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic Blue Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic Blue Tint', - name = 'weapontint_mk2_29', - }, - weapontint_mk2_30 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic White & Aqua Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic White & Aqua Tint', - name = 'weapontint_mk2_30', - }, - ifs_olden_arvest = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Eine goldene Ernte, die Sif selbst gesegnet haben könnte – perfekt für eine herzhafte Mahlzeit.', - image = 'SifsGoldenHarvest.png', - shouldClose = true, - label = 'Sif\'s Golden Harvest', - name = 'sifs_olden_harvest', - }, - weapon_heavypistol = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Wenn die Klog nicht mehr reicht.', - image = 'screenshot_405-removebg-preview.png', - label = 'FM 510', - ammotype = 'AMMO_PISTOL', - name = 'weapon_heavypistol', - }, - veh_interior = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle interior', - image = 'veh_interior.png', - shouldClose = true, - label = 'Interior', - name = 'veh_interior', - }, - suspension_parts = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'suspension_parts.png', - shouldClose = true, - label = 'Premium Fahrwerksteile', - name = 'suspension_parts', - }, - irishexit = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'irish_exit.png', - shouldClose = false, - label = 'Irish Exit', - name = 'irishexit', - }, - precision_muzzle_brake = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A muzzle brake for a weapon', - image = 'precision_muzzle_brake.png', - shouldClose = true, - label = 'Precision Muzzle Brake', - name = 'precision_muzzle_brake', - }, - weapon_poolcue = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A stick used to strike a ball, usually the cue ball (or other things)', - name = 'weapon_poolcue', - label = 'Billardque', - image = 'weapon_poolcue.png', - }, - tactical_muzzle_brake = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A muzzle brakee for a weapon', - image = 'tactical_muzzle_brake.png', - shouldClose = true, - label = 'Tactical Muzzle Brake', - name = 'tactical_muzzle_brake', - }, - weapon_gadgetpistol = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Gadgetpistol', - image = 'weapon_gadgetpistol.png', - label = 'Perico Pistol', - ammotype = 'AMMO_PISTOL', - name = 'weapon_gadgetpistol', - }, - weapon_fireextinguisher = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A portable device that discharges a jet of water, foam, gas, or other material to extinguish a fire', - name = 'weapon_fireextinguisher', - label = 'Fire Extinguisher', - image = 'weapon_fireextinguisher.png', - }, - jelly_beans = { - useable = true, - weight = 150, - type = 'item', - unique = true, - description = 'Bunte, kleine Köstlichkeiten mit knackiger Hülle und fruchtig-süßem Kern – ein Farbtupfer voller Geschmack.', - image = 'file_00000000007861f7963805e1f6fecfc5-removebg-preview.png', - shouldClose = true, - label = 'Jelly Beans', - name = 'jelly_beans', - }, - marshal_card = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'police_card.png', - shouldClose = false, - label = 'Marshal Card', - name = 'marshal_card', - }, - gg_boar_tusk_03 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_boar_tusk_03.png', - shouldClose = true, - label = 'Makelloser Eberzahn', - name = 'gg_boar_tusk_03', - }, - offroad_tyres = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'offroad_tyres.png', - shouldClose = true, - label = 'Reifen offroad', - name = 'offroad_tyres', - }, - cottoncandy = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_693-removebg-preview.png', - shouldClose = true, - label = 'Zuckerwatte', - name = 'cottoncandy', - }, - metacam = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'Metacam.png', - shouldClose = true, - label = 'Metacam', - name = 'metacam', - }, - gg_captured_chickenhawk = { - useable = true, - weight = 5000, - type = 'item', - unique = true, - description = '', - image = 'gg_captured_chickenhawk.png', - shouldClose = true, - label = 'Gefangener Falke', - name = 'gg_captured_chickenhawk', - }, - smg_scope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'holoscope_attachment.png', - shouldClose = true, - label = 'SMG Visier', - name = 'smg_scope', - }, - weapon_batton = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Ein Lauf auf Stahl mit einer hohen Genauigkeit ', - image = 'weapon_batton.png', - shouldClose = false, - label = 'Waffenlauf Lang', - name = 'weapon_batton', - }, - kakao2 = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Eine Tasse heiße Schokolade ist wie eine warme Umarmung von innen – süß, tröstlich und immer zur Stelle, wenn die Welt zu kalt wird.', - image = 'kakao2.png', - shouldClose = true, - label = 'Tasse Heiße Schokolade', - name = 'kakao2', - }, - gazebo = { - useable = true, - weight = 600, - type = 'item', - unique = false, - description = '', - image = 'gazebo.png', - shouldClose = true, - label = 'Pavillon', - name = 'gazebo', - }, - slushi = { - useable = true, - weight = 150, - type = 'item', - unique = false, - description = 'Erfrischung pur in jedem Schluck – Gönn dir deinen Slushi!', - image = 'slushi.png', - shouldClose = true, - label = 'Slushi', - name = 'slushi', - }, - certificate = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = 'Certificate that proves you own certain stuff', - image = 'certificate.png', - shouldClose = true, - label = 'Certificate', - name = 'certificate', - }, - plank = { - useable = false, - weight = 600, - type = 'item', - unique = false, - description = 'Brett vorm Kopf oder so...', - image = 'plank.png', - shouldClose = false, - label = 'Brett ', - name = 'plank', - }, - weapontint_mk2_16 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Green & Purple Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Green & Purple Tint', - name = 'weapontint_mk2_16', - }, - odins_nuesse = { - useable = true, - weight = 150, - type = 'item', - unique = false, - description = 'Diese kräftige Mischung aus Nüssen symbolisiert die Weisheit und Stärke des Göttervaters. Voller Geschmack und Energie, ideal, um Körper und Geist zu nähren.', - image = 'Odins_nuesse.png', - shouldClose = true, - label = 'Odins Nüsse', - name = 'Odins_nuesse', - }, - boxmilk = { - useable = false, - weight = 1200, - type = 'item', - unique = true, - description = '', - image = 'boxmilk.png', - shouldClose = false, - label = 'Karton mit Milch', - name = 'boxmilk', - }, - hopfen = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'hopfen.png', - shouldClose = false, - label = 'Hopfen', - name = 'hopfen', - }, - gg_hunting_arrowammo = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'gg_hunting_arrowammo.png', - shouldClose = true, - label = 'Armbrust Pfeile', - name = 'gg_hunting_arrowammo', - }, - bb_cupcake = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'bb_cupcake.png', - shouldClose = true, - label = 'Blueberry Cupcake', - name = 'bb_cupcake', - }, - orange_o_tang_flasche = { - useable = true, - weight = 80, - type = 'item', - unique = false, - description = 'Flasche Orangen Limo', - image = 'orange_o_tang_flasche.png', - shouldClose = true, - label = 'Orange O Tang Flasche', - name = 'orange_o_tang_flasche', - }, - veh_plates = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Install vehicle plates', - image = 'veh_plates.png', - shouldClose = true, - label = 'Plates', - name = 'veh_plates', - }, - crack_baggy = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'To get happy faster', - image = 'crack_baggy.png', - shouldClose = true, - label = 'Bag of Crack', - name = 'crack_baggy', - }, - cotton = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'cotton.png', - shouldClose = false, - label = 'Baumwolle', - name = 'cotton', - }, - weapon_revolver_mk2 = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'da Violence', - image = 'screenshot_419-removebg-preview.png', - label = 'Blood in and out Gun', - ammotype = 'AMMO_PISTOL', - name = 'weapon_revolver_mk2', - }, - performance_part = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'performance_part.png', - shouldClose = true, - label = 'Performance Kit', - name = 'performance_part', - }, - kevlar = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'kevlar.png', - shouldClose = false, - label = 'Kevlar ', - name = 'kevlar', - }, - salep = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = ' Zimt Heißgetränk', - image = 'salep.png', - shouldClose = true, - label = 'Salep', - name = 'salep', - }, - weapon_wrench = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A tool used for gripping and turning nuts, bolts, pipes, etc', - name = 'weapon_wrench', - label = 'Wrench', - image = 'weapon_wrench.png', - }, - epinephrine = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'epi_pen.png', - shouldClose = true, - label = 'Adrenalinspritze', - name = 'epinephrine', - }, - sawdust = { - useable = false, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'sawdust.png', - shouldClose = false, - label = 'Sägemehl', - name = 'sawdust', - }, - pussycat = { - useable = true, - weight = 40, - type = 'item', - unique = false, - description = 'Für die einsamen Nächte.', - image = 'pussycat.png', - shouldClose = true, - label = 'Pussycat', - name = 'pussycat', - }, - hotdog_deluxe = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Der König unter den Hotdogs', - image = 'hotdogdeluxe-removebg-preview.png', - shouldClose = true, - label = 'Deluxe Hotdog', - name = 'hotdog_deluxe', - }, - vitaminloesung_750 = { - useable = true, - weight = 750, - type = 'item', - unique = false, - description = '', - image = 'screenshot_696-removebg-preview.png', - shouldClose = true, - label = 'Vitaminlösung 750', - name = 'vitaminloesung_750', - }, - cheese_burger = { - useable = true, - weight = 150, - type = 'item', - unique = false, - description = 'Ein flauschiges Brötchen, ein saftiges Patty und eine Scheibe Käse, die alles zusammenhält wie der beste Kumpel auf einer Party. Klein, rund, glücklich – genau wie du nach dem ersten Bissen.', - image = 'cheese_burger.png', - shouldClose = true, - label = 'Bacon Cheese Burger', - name = 'cheese_burger', - }, - vodka = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'Nach 4 Flaschen redet man Russisch.', - image = 'vodka.png', - shouldClose = true, - label = 'Chernokov Vodka', - name = 'vodka', - }, - vomex = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'vomex.png', - shouldClose = true, - label = 'Vomex', - name = 'vomex', - }, - sprunk_dose = { - useable = true, - weight = 50, - type = 'item', - unique = false, - description = 'Dose Zitronen Limo', - image = 'sprunk_dose.png', - shouldClose = true, - label = 'Sprunk Dose', - name = 'sprunk_dose', - }, - weapontint_mk2_8 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Classic Brown & Black Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Classic Brown & Black Tint', - name = 'weapontint_mk2_8', - }, - weapon_rpg = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A rocket-propelled grenade launcher', - image = 'weapon_rpg.png', - label = 'RPG', - ammotype = 'AMMO_RPG', - name = 'weapon_rpg', - }, - weapon_combatmg = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A combat version of an automatic gun that fires bullets in rapid succession for as long as the trigger is pressed', - image = 'weapon_combatmg.png', - label = 'Combat MG', - ammotype = 'AMMO_MG', - name = 'weapon_combatmg', - }, - weed_brick = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = '1KG Weed Brick to sell to large customers.', - image = 'weed_brick.png', - shouldClose = true, - label = 'Weed Brick', - name = 'weed_brick', - }, - weapon_switchblade = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A knife with a blade that springs out from the handle when a button is pressed', - name = 'weapon_switchblade', - label = 'Switchblade', - image = 'weapon_switchblade.png', - }, - lamb_chops = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'lamb_chops.png', - shouldClose = true, - label = 'Lammkoteletts', - name = 'lamb_chops', - }, - gg_cougar_claw_03 = { - useable = false, - weight = 500, - type = 'item', - unique = true, - description = '', - image = 'gg_cougar_claw_03.png', - shouldClose = true, - label = 'Makellose Puma-Klaue', - name = 'gg_cougar_claw_03', - }, - gg_salt_block_03 = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'gg_salt_block_03.png', - shouldClose = true, - label = 'Premium Salzblock', - name = 'gg_salt_block_03', - }, - propofol_250 = { - useable = true, - weight = 250, - type = 'item', - unique = false, - description = '', - image = 'Propofol-00409469924-removebg-preview.png', - shouldClose = true, - label = 'Propofol 250', - name = 'propofol_250', - }, - weapon_assaultsmg = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Voll Scifi ^^', - image = 'weapon_assaultsmg.png', - label = 'BDR-C ', - ammotype = 'AMMO_SMG', - name = 'weapon_assaultsmg', - }, - weapon_pumpshotgun_mk2 = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Pumpshotgun MK2', - image = 'weapon_pumpshotgun_mk2.png', - label = 'Pumpshotgun Mk II', - ammotype = 'AMMO_SHOTGUN', - name = 'weapon_pumpshotgun_mk2', - }, - firework3 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Fireworks', - image = 'firework3.png', - shouldClose = true, - label = 'Inferno King ', - name = 'firework3', - }, - ggdrasils_oots = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Tief verwurzelt in den Gaben der Natur, bieten diese knusprigen Snacks eine Verbindung zu den alten Geschichten.', - image = 'YggdrasilsRootsGemuseChips.png.png', - shouldClose = true, - label = 'Yggdrasil\'s Roots', - name = 'yggdrasils_roots', - }, - heparin = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'heparin.png', - shouldClose = true, - label = 'Heparin', - name = 'heparin', - }, - weapontint_mk2_31 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic Orange & Yellow Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic Orange & Yellow Tint', - name = 'weapontint_mk2_31', - }, - remote = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'remote.png', - shouldClose = false, - label = 'TV Fernbedienung', - name = 'remote', - }, - bank_card = { - useable = true, - weight = 0, - type = 'item', - unique = true, - description = 'Used to access ATM', - image = 'bank_card.png', - shouldClose = true, - label = 'Bank Card', - name = 'bank_card', - }, - odins_wisdom_brew = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Ein Getränk, das auch ohne Alkohol die Weisheit und Kraft des Allvaters vermittelt – voller Geschmack und leicht süß.', - image = 'OdinsWisdomBrew.png', - shouldClose = true, - label = 'Odin\'s Wisdom Brew (alkoholfrei)', - name = 'odins_wisdom_brew', - }, - weapontint_1 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Green Weapon Tint', - image = 'weapontint_green.png', - shouldClose = true, - label = 'Green Tint', - name = 'weapontint_1', - }, - kq_outfitbag = { - useable = true, - weight = 5, - type = 'item', - unique = false, - description = 'Der Kleiderschrank für unterwegs', - image = 'kq_outfitbag.png', - shouldClose = false, - label = 'Outfit Rucksack', - name = 'kq_outfitbag', - }, - gg_hunting_knife_02 = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_hunting_knife_02.png', - shouldClose = true, - label = 'verbessertes Jagdmesser', - name = 'gg_hunting_knife_02', - }, - item_bench = { - useable = true, - weight = 15000, - type = 'item', - unique = true, - description = 'A workbench to craft items.', - image = 'workbench.png', - shouldClose = false, - label = 'Workbench', - name = 'item_bench', - }, - ibuprophen = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'Ibuprophen.png', - shouldClose = true, - label = 'Ibuprophen', - name = 'ibuprophen', - }, - veh_turbo = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Install vehicle turbo', - image = 'veh_turbo.png', - shouldClose = true, - label = 'Turbo', - name = 'veh_turbo', - }, - copper = { - useable = false, - weight = 800, - type = 'item', - unique = false, - description = 'Es ist Metall aber Weich ', - image = 'cooperbar.png', - shouldClose = false, - label = 'Kupferbarren', - name = 'copper', - }, - mg_ammo = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Ammo for Machine Guns', - image = 'mg_ammo.png', - shouldClose = true, - label = 'MG ammo', - name = 'mg_ammo', - }, - reyas_arden_alad = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Leicht und verführerisch, mit einer perfekten Balance von süß und herzhaft, genau wie die Göttin der Liebe.', - image = 'FreyasGardenSalad.png', - shouldClose = true, - label = 'Freya\'s Garden Salad', - name = 'reyas_arden_alad', - }, - gg_rabbit_pelt_01 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_rabbit_pelt_01.png', - shouldClose = true, - label = 'Raues Kaninchenfell', - name = 'gg_rabbit_pelt_01', - }, - laptop = { - useable = false, - weight = 4000, - type = 'item', - unique = false, - description = 'Expensive laptop', - image = 'laptop.png', - shouldClose = true, - label = 'Laptop', - name = 'laptop', - }, - weapon_compactrifle = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A compact version of an assault rifle', - image = 'weapon_compactrifle.png', - label = 'Compact Rifle', - ammotype = 'AMMO_RIFLE', - name = 'weapon_compactrifle', - }, - weapon_bullpuprifle = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Dieses Gewehr ist der neueste chinesische Import, der Amerika im Sturm erobert.', - image = 'screenshot_411-removebg-preview.png', - label = 'QBX-92-3', - ammotype = 'AMMO_RIFLE', - name = 'weapon_bullpuprifle', - }, - thermite = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Sometimes you\'d wish for everything to burn', - image = 'thermite.png', - shouldClose = true, - label = 'Thermite', - name = 'thermite', - }, - gg_captured_hen = { - useable = true, - weight = 5000, - type = 'item', - unique = true, - description = '', - image = 'gg_captured_hen.png', - shouldClose = true, - label = 'Gefangenes Huhn', - name = 'gg_captured_hen', - }, - orange_o_tang_zero_dose = { - useable = true, - weight = 50, - type = 'item', - unique = false, - description = 'Dose Orangen Limo', - image = 'orange_o_tang_zero_dose.png', - shouldClose = true, - label = 'Orange O Tang Zero Dose', - name = 'orange_o_tang_zero_dose', - }, - cuttingdisc = { - useable = false, - weight = 200, - type = 'item', - unique = true, - description = '', - image = 'cuttingdisc.png', - shouldClose = false, - label = 'Trennscheibe', - name = 'cuttingdisc', - }, - weapon_bullpupshotgun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A compact smoothbore gun for firing small shot at short range', - image = 'weapon_bullpupshotgun.png', - label = 'Bullpup Shotgun', - ammotype = 'AMMO_SHOTGUN', - name = 'weapon_bullpupshotgun', - }, - ev_motor = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'ev_motor.png', - shouldClose = true, - label = 'EV_Motor', - name = 'ev_motor', - }, - gg_boar_tusk_02 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_boar_tusk_02.png', - shouldClose = true, - label = 'Robuster Eberzahn', - name = 'gg_boar_tusk_02', - }, - v8_engine = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'v8_engine.png', - shouldClose = true, - label = 'V8 Motor', - name = 'v8_engine', - }, - urapidil1 = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'urapidil1.png', - shouldClose = true, - label = 'Urapidil 1,0 mg', - name = 'urapidil1', - }, - rifle_extendedclip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'rifle_extendedclip.png', - shouldClose = true, - label = 'erw. Gewehr Magazin', - name = 'rifle_extendedclip', - }, - weapon_machinepistol = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A self-loading pistol capable of burst or fully automatic fire', - image = 'weapon_machinepistol.png', - label = 'Tec-9', - ammotype = 'AMMO_PISTOL', - name = 'weapon_machinepistol', - }, - printerdocument = { - useable = true, - weight = 0, - type = 'item', - unique = true, - description = 'A nice document', - image = 'printerdocument.png', - shouldClose = true, - label = 'Dokument', - name = 'printerdocument', - }, - football = { - useable = true, - weight = 400, - type = 'item', - unique = true, - description = '', - image = 'football.png', - shouldClose = false, - label = 'Football', - name = 'football', - }, - thors_hammer = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'So kraftvoll wie der Schlag von Mjölnir, Thors legendärem Hammer.', - image = 'ThorsHammerBeer.png', - shouldClose = true, - label = 'Thor\'s Hammer', - name = 'thors_hammer', - }, - tier_leckerlis = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Freude für deinen Vierbeiner.', - image = 'tier_leckerlies.png', - shouldClose = true, - label = 'Tier Leckerlis', - name = 'tier_leckerlis', - }, - raki = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'türkisches Nationalgetränk, aus Weintrauben oder Rosinen gebrannter Anisée', - image = 'raki.png', - shouldClose = true, - label = 'Raki', - name = 'raki', - }, - turbocharger = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'turbocharger.png', - shouldClose = true, - label = 'Premium Turbokit', - name = 'turbocharger', - }, - blood_500 = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = '', - image = 'blood_500.png', - shouldClose = true, - label = 'Blut (500ml)', - name = 'blood_500', - }, - ecg_monitor = { - useable = true, - weight = 2500, - type = 'item', - unique = false, - description = '', - image = '148383-multiparameter-patientenmonitor-pc-3000-lepu-medical-2-removebg-preview.png', - shouldClose = true, - label = 'EKG Monitor', - name = 'ecg_monitor', - }, - snikkel_candy = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Some delicious candy :O', - image = 'snikkel_candy.png', - shouldClose = true, - label = 'EarthQuakes', - name = 'snikkel_candy', - }, - weapon_pocketlight = { - useable = true, - weight = 100, - type = 'weapon', - unique = true, - description = '', - image = 'w_me_pocketlight.png', - shouldClose = true, - label = 'kleine Taschenlampe', - name = 'weapon_pocketlight', - }, - ammunition_route = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', - image = 'ammunition_route.png', - shouldClose = false, - label = 'Munitions Route', - name = 'ammunition_route', - }, - cleaningkit = { - useable = true, - weight = 250, - type = 'item', - unique = false, - description = 'A microfiber cloth with some soap will let your car sparkle again!', - image = 'cleaningkit.png', - shouldClose = true, - label = 'Cleaning Kit', - name = 'cleaningkit', - }, - rifle_grip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'ar_grip.png', - shouldClose = true, - label = 'Gewehrgriff', - name = 'rifle_grip', - }, - baldurs_light = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Sanft und erfrischend, wie das reine Licht, das Baldur ausstrahlt.', - image = 'BaldursLight.png', - shouldClose = true, - label = 'Baldur\'s Light', - name = 'baldurs_light', - }, - fat_end_muzzle_brake = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A muzzle brake for a weapon', - image = 'fat_end_muzzle_brake.png', - shouldClose = true, - label = 'Fat End Muzzle Brake', - name = 'fat_end_muzzle_brake', - }, - goldbar = { - useable = false, - weight = 7000, - type = 'item', - unique = false, - description = 'Looks pretty expensive to me', - image = 'goldbar.png', - shouldClose = true, - label = 'Gold Bar', - name = 'goldbar', - }, - nacl_1000 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'nacl.png', - shouldClose = true, - label = 'NACL (1000ml)', - name = 'nacl_1000', - }, - ready_methpipe = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'Der schnelle Weg ins Nirvana – aber du verpasst den Ausgang', - image = 'opium_pipe.png', - shouldClose = true, - label = 'Gefüllte Methpfeife', - name = 'ready_methpipe', - }, - weapontint_mk2_24 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic Platinum Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic Platinum Tint', - name = 'weapontint_mk2_24', - }, - walkstick = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Walking stick for ya\'ll grannies out there.. HAHA', - image = 'walkstick.png', - shouldClose = true, - label = 'Walking Stick', - name = 'walkstick', - }, - morphine = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'syringe.png', - shouldClose = true, - label = 'Morphiumspritze', - name = 'morphine', - }, - doener = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Döner macht schöner...', - image = 'doner.png', - shouldClose = true, - label = 'Döner', - name = 'doener', - }, - lutschfinger_eis = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'wie aus deiner Kindheit', - image = 'lutschfinger_eis.png', - shouldClose = true, - label = 'Lutschfinger Eis', - name = 'lutschfinger_eis', - }, - moneybag = { - useable = true, - weight = 0, - type = 'item', - unique = true, - description = 'A bag with cash', - image = 'moneybag.png', - shouldClose = true, - label = 'Money Bag', - name = 'moneybag', - }, - ironoxide = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'Some powder to mix with.', - image = 'ironoxide.png', - shouldClose = false, - label = 'Iron Powder', - name = 'ironoxide', - }, - kino_keycard = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = '', - image = 'keycard.png', - shouldClose = false, - label = 'Moonlight Cinema Keycard', - name = 'kino_keycard', - }, - raw_kebab = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'raw_kebab.png', - shouldClose = true, - label = 'roher Schaschlickspieß', - name = 'raw_kebab', - }, - vehicletrackertablet = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'vehicletrackertablet.png', - shouldClose = true, - label = 'Fahrzeugtracker Tablet', - name = 'vehicletrackertablet', - }, - weapontint_mk2_21 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Red & White Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Red & White Tint', - name = 'weapontint_mk2_21', - }, - weapontint_mk2_2 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Classic Two-Tone Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Classic Two-Tone Tint', - name = 'weapontint_mk2_2', - }, - nitrous_bottle = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = '', - image = '', - shouldClose = false, - label = 'Nitro Flasche', - name = 'nitrous_bottle', - }, - cryptostick = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Why would someone ever buy money that doesn\'t exist.. How many would it contain..?', - image = 'cryptostick.png', - shouldClose = true, - label = 'Crypto Stick', - name = 'cryptostick', - }, - ayran = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'erfrischendes Joghurtgetränk', - image = 'Ayran.png', - shouldClose = true, - label = 'Ayran', - name = 'ayran', - }, - s_shake = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 's_shake.png', - shouldClose = true, - label = 'Schokoshake', - name = 's_shake', - }, - security_card_02 = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A security card... I wonder what it goes to', - image = 'security_card_02.png', - shouldClose = true, - label = 'Security Card B', - name = 'security_card_02', - }, - weapon_hazardcan = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Hazardcan', - image = 'weapon_hazardcan.png', - label = 'Hazardous Jerry Can', - ammotype = 'AMMO_PETROLCAN', - name = 'weapon_hazardcan', - }, - weapon_smokegrenade = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An explosive charge that can be remotely detonated', - name = 'weapon_smokegrenade', - label = 'Rauchgranate', - image = 'screenshot_425-removebg-preview.png', - }, - weapontint_4 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Army Weapon Tint', - image = 'weapontint_army.png', - shouldClose = true, - label = 'Army Tint', - name = 'weapontint_4', - }, - weapontint_mk2_19 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Cyan Features Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Cyan Features Tint', - name = 'weapontint_mk2_19', - }, - blood_250 = { - useable = true, - weight = 250, - type = 'item', - unique = false, - description = '', - image = 'blood_250.png', - shouldClose = true, - label = 'Blut (250ml)', - name = 'blood_250', - }, - weapon_flare = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A small pyrotechnic devices used for illumination and signalling', - image = 'weapon_flare.png', - label = 'Flare pistol', - ammotype = 'AMMO_FLARE', - name = 'weapon_flare', - }, - grape = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Mmmmh yummie, grapes', - image = 'grape.png', - shouldClose = false, - label = 'Weintrauben', - name = 'grape', - }, - weapon_navyrevolver = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Navyrevolver', - image = 'weapon_navyrevolver.png', - label = 'Navy Revolver', - ammotype = 'AMMO_PISTOL', - name = 'weapon_navyrevolver', - }, - cooked_ribs = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_ribs.png', - shouldClose = true, - label = 'gegrillte Rippchen', - name = 'cooked_ribs', - }, - gg_hunting_cookedmeat = { - useable = true, - weight = 50, - type = 'item', - unique = false, - description = '', - image = 'gg_hunting_cookedmeat.png', - shouldClose = true, - label = 'gebratenes Wildfleisch', - name = 'gg_hunting_cookedmeat', - }, - dueruem = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Wrap, mit typischen Döner-Kebab-Zutaten gefüllt', - image = 'durum.png', - shouldClose = true, - label = 'Dürüm', - name = 'dueruem', - }, - rifle_holoscope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'MK2 Gewehr Holovisier', - image = 'holoscope_attachment.png', - shouldClose = true, - label = '100', - name = 'rifle_holoscope', - }, - cooked_corn_cob = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'cooked_corn_cob.png', - shouldClose = true, - label = 'gegrillter Maiskolben', - name = 'cooked_corn_cob', - }, - police_card = { - useable = true, - weight = 10, - type = 'item', - unique = true, - description = '', - image = 'police_card.png', - shouldClose = true, - label = 'PD Dienstausweis', - name = 'police_card', - }, - roofbox_color = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'roofbox_color.png', - shouldClose = true, - label = 'Farbige Dachbox', - name = 'roofbox_color', - }, - emergency_revive_kit = { - useable = true, - weight = 1500, - type = 'item', - unique = false, - description = '', - image = 'medbox.png', - shouldClose = true, - label = 'Wiederbelebungs-Kit', - name = 'emergency_revive_kit', - }, - okis_ischief_ites = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Knusprige Bissen, die mit einer scharfen Überraschung im Inneren den Gästen einen schelmischen Spaß bereiten.', - image = 'LokisMischiefBites.png', - shouldClose = true, - label = 'Loki\'s Mischief Bites', - name = 'okis_ischief_ites', - }, - klimo = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'klimo.png', - shouldClose = true, - label = 'Kirschlimonade', - name = 'klimo', - }, - filled_evidence_bag = { - useable = false, - weight = 200, - type = 'item', - unique = true, - description = 'A filled evidence bag to see who committed the crime >:(', - image = 'evidence.png', - shouldClose = false, - label = 'Evidence Bag', - name = 'filled_evidence_bag', - }, - latte = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Er hat Latte gesagt XD', - image = 'latte.png', - shouldClose = true, - label = 'Glas Latte Macchiato', - name = 'latte', - }, - pistol_holoscope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'holoscope_attachment.png', - shouldClose = true, - label = 'Pistolenvisier', - name = 'pistol_holoscope', - }, - weapontint_mk2_15 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Orange Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Orange Tint', - name = 'weapontint_mk2_15', - }, - cooked_bbq_wings = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_bbq_wings.png', - shouldClose = true, - label = 'gegrillte BBQ Wings', - name = 'cooked_bbq_wings', - }, - rubber = { - useable = false, - weight = 600, - type = 'item', - unique = false, - description = 'Rubber, I believe you can make your own rubber ducky with it :D', - image = 'rubber.png', - shouldClose = false, - label = 'Gummi', - name = 'rubber', - }, - sniper_flashlight = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'flashlight_attachment.png', - shouldClose = true, - label = 'Sniper Licht', - name = 'sniper_flashlight', - }, - pistol_smallscope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'smallscope_attachment.png', - shouldClose = true, - label = 'MK2 Revolver Visier', - name = 'pistol_smallscope', - }, - smg_suppressor = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'suppressor_attachment.png', - shouldClose = true, - label = 'SMG Schalldämpfer', - name = 'smg_suppressor', - }, - weapon_garbagebag = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A garbage bag', - name = 'weapon_garbagebag', - label = 'Garbage Bag', - image = 'weapon_garbagebag.png', - }, - slick_tyres = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'slick_tyres.png', - shouldClose = true, - label = 'Reifen slick', - name = 'slick_tyres', - }, - ceramic_brakes = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'ceramic_brakes.png', - shouldClose = true, - label = 'Ceramic Bremsen', - name = 'ceramic_brakes', - }, - pizza_burger = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Zartes Wagyu-Patty, würzige Salami, fruchtige Tomatensauce und geschmolzener Mozzarella, serviert in fluffigen Brioche Buns', - image = 'pizza_burger.png', - shouldClose = true, - label = 'Pizza Burger', - name = 'pizza_burger', - }, - emergencydrone = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'emergencydrone.png', - shouldClose = true, - label = 'Einsatz Drohne', - name = 'emergencydrone', - }, - sniper_largescope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'advscope_attachment.png', - shouldClose = true, - label = 'Sniper Visier groß', - name = 'sniper_largescope', - }, - emptybag = { - useable = false, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'emptybag.png', - shouldClose = false, - label = 'leerer Sack', - name = 'emptybag', - }, - ammo_beanbag = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Munition für die Beanbag Shotgun', - image = 'beanbag_ammo.png', - shouldClose = true, - label = 'Beanbag Ammo', - name = 'ammo_beanbag', - }, - burrito = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_690-removebg-preview.png', - shouldClose = true, - label = 'Burrito', - name = 'burrito', - }, - weapon_railgunxm3 = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A weapon that uses electromagnetic force to launch high velocity projectiles', - name = 'weapon_railgunxm3', - label = 'Railgun XM3', - image = 'weapon_railgunxm3.png', - }, - weapon_hatchet = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A small axe with a short handle for use in one hand', - name = 'weapon_hatchet', - label = 'Beil', - image = 'weapon_hatchet.png', - }, - weed_whitewidow = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'A weed bag with 2g White Widow', - image = 'weed_baggy.png', - shouldClose = false, - label = 'White Widow 2g', - name = 'weed_whitewidow', - }, - midazolam = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_696-removebg-preview.png', - shouldClose = true, - label = 'Midazolam', - name = 'midazolam', - }, - weapon_remotesniper = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A portable high-precision, long-range rifle', - image = 'weapon_remotesniper.png', - label = 'Remote Sniper', - ammotype = 'AMMO_SNIPER_REMOTE', - name = 'weapon_remotesniper', - }, - goezleme = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'würzig gefülltes Fladenbrot', - image = 'Goezleme.png', - shouldClose = true, - label = 'Gözleme', - name = 'goezleme', - }, - weapontint_2 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Gold Weapon Tint', - image = 'weapontint_gold.png', - shouldClose = true, - label = 'Gold Tint', - name = 'weapontint_2', - }, - gg_deer_hide_02 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_deer_hide_02.png', - shouldClose = true, - label = 'Robustes Hirschleder', - name = 'gg_deer_hide_02', - }, - big_bottle_cola = { - useable = true, - weight = 600, - type = 'item', - unique = false, - description = '', - image = 'big_bottle_cola.png', - shouldClose = true, - label = 'große Flasche E-Cola', - name = 'big_bottle_cola', - }, - weapons_route = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', - image = 'weaponsroute.png', - shouldClose = false, - label = 'Waffen Route', - name = 'weapons_route', - }, - weapon_raypistol = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Raypistol', - image = 'weapon_raypistol.png', - label = 'Up-n-Atomizer', - ammotype = 'AMMO_PISTOL', - name = 'weapon_raypistol', - }, - vape = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = '', - image = 'vape.png', - shouldClose = false, - label = 'E-Dampfe', - name = 'vape', - }, - fwd_drivetrain = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'fwd_drivetrain.png', - shouldClose = true, - label = 'FWD', - name = 'fwd_drivetrain', - }, - split_end_muzzle_brake = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A muzzle brake for a weapon', - image = 'split_end_muzzle_brake.png', - shouldClose = true, - label = 'Split End Muzzle Brake', - name = 'split_end_muzzle_brake', - }, - cooked_brisket = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_brisket.png', - shouldClose = true, - label = 'gegrilltes Brisket', - name = 'cooked_brisket', - }, - packung = { - useable = false, - weight = 400, - type = 'item', - unique = false, - description = '', - image = 'packung.png', - shouldClose = false, - label = 'leere Verpackung', - name = 'packung', - }, - weapon_sniperrifle = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Wenn man mal das Gesetzt von weiter weg vertreten muss.', - image = 'screenshot_414-removebg-preview.png', - label = 'ABM Sniper Rifle', - ammotype = 'AMMO_SNIPER', - name = 'weapon_sniperrifle', - }, - spazi = { - useable = true, - weight = 150, - type = 'item', - unique = false, - description = 'Cola trifft Orange – wie nie zuvor gesehen. Falls dir das bekannt vorkommt: Nein, du bildest dir das nur ein.', - image = 'spazi.png', - shouldClose = true, - label = 'Bergbräu Spazi ', - name = 'spazi', - }, - caviar = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'caviar.png', - shouldClose = false, - label = 'Kaviar', - name = 'caviar', - }, - rifle_largescope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'largescope_attachment.png', - shouldClose = true, - label = 'Mk2 Gewehr Visier groß', - name = 'rifle_largescope', - }, - gazoz = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'kohlensäurehaltiges, süßes Erfrischungsgetränk ', - image = 'Gazoz.png', - shouldClose = true, - label = 'Gazoz', - name = 'gazoz', - }, - gg_pug_bait_01 = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'gg_pug_bait_01.png', - shouldClose = true, - label = 'Illegaler Raubtierköder 1', - name = 'gg_pug_bait_01', - }, - wwine = { - useable = true, - weight = 300, - type = 'item', - unique = false, - description = '', - image = 'wwine.png', - shouldClose = true, - label = 'Weißwein', - name = 'wwine', - }, - battery = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'battery.png', - shouldClose = false, - label = 'Akku', - name = 'battery', - }, - schnitzelbroetchen = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Knuspriger Held im Brötchenmantel – das Schnitzel regelt!', - image = 'schnitzelbroetchen.png', - shouldClose = true, - label = 'Schnitzelbrötchen', - name = 'schnitzelbroetchen', - }, - sprunk_zero_flasche = { - useable = true, - weight = 80, - type = 'item', - unique = false, - description = 'Flasche Zero Zitronen Limo', - image = 'sprunk_zero_flasche.png', - shouldClose = true, - label = 'Sprunk Zero Flasche', - name = 'sprunk_zero_flasche', - }, - kaugummi = { - useable = true, - weight = 40, - type = 'item', - unique = false, - description = 'Damit dein Maul net mehr so Stinkt...', - image = 'kaugummi.png', - shouldClose = true, - label = 'Kaugummi ', - name = 'kaugummi', - }, - file = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'file.png', - shouldClose = false, - label = 'SD Karte mit Datei', - name = 'file', - }, - c_cake = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'c_cake.png', - shouldClose = true, - label = 'Chocolate Cake', - name = 'c_cake', - }, - roadpods = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = '„Klang für Menschen, die sich keine Kompromisse anhören.“', - image = 'roadpods.png', - shouldClose = true, - label = 'iFruit Ear Buds', - name = 'roadpods', - }, - magic_mushroom = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'Der Pilz, der dir das Gefühl gibt, du könntest mit deinen Gedanken den Regenbogen malen.', - image = 'magic_mushroom.png', - shouldClose = false, - label = 'Mutterkorn', - name = 'magic_mushroom', - }, - diving_fill = { - useable = true, - weight = 3000, - type = 'item', - unique = true, - description = 'An oxygen tube and a rebreather', - image = 'diving_tube.png', - shouldClose = true, - label = 'Diving Tube', - name = 'diving_fill', - }, - stoast = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'stoast.png', - shouldClose = true, - label = 'Sucuktoast', - name = 'stoast', - }, - rohkaffee = { - useable = false, - weight = 4, - type = 'item', - unique = false, - description = '', - image = 'rohkaffee.png', - shouldClose = false, - label = 'Rohkaffee', - name = 'rohkaffee', - }, - chicken_thigh = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'chicken_thigh.png', - shouldClose = true, - label = 'rohe Hähnchenkeule', - name = 'chicken_thigh', - }, - penicillin = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'penicillin.png', - shouldClose = true, - label = 'Penicillin', - name = 'penicillin', - }, - screwdriverset = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = 'Sehr nützlich zum Schrauben... zu schrauben...', - image = 'screwdriverset.png', - shouldClose = false, - label = 'Schraubendreher Set', - name = 'screwdriverset', - }, - cosmetic_part = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'cosmetic_part.png', - shouldClose = true, - label = 'Cosmetickit', - name = 'cosmetic_part', - }, - weapon_minigun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A portable machine gun consisting of a rotating cluster of six barrels and capable of variable rates of fire of up to 6,000 rounds per minute', - image = 'weapon_minigun.png', - label = 'Minigun', - ammotype = 'AMMO_MINIGUN', - name = 'weapon_minigun', - }, - binoculars = { - useable = true, - weight = 600, - type = 'item', - unique = true, - description = 'EY!DU sollst nicht spannern!', - image = 'fernglas.png', - shouldClose = true, - label = 'Fernglas', - name = 'binoculars', - }, - weed_purplehaze = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'A weed bag with 2g Purple Haze', - image = 'weed_baggy.png', - shouldClose = false, - label = 'Purple Haze 2g', - name = 'weed_purplehaze', - }, - veh_wheels = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle wheels', - image = 'veh_wheels.png', - shouldClose = true, - label = 'Wheels', - name = 'veh_wheels', - }, - sauerstoff = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'screenshot_697-removebg-preview.png', - shouldClose = true, - label = 'Sauerstoff', - name = 'sauerstoff', - }, - skadis_winter_skewers = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'sws.png', - shouldClose = true, - label = 'Skadis Winter Skewers', - name = 'skadis_winter_skewers', - }, - olimo = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'olimo.png', - shouldClose = true, - label = 'Orangenlimonade', - name = 'olimo', - }, - seed = { - useable = true, - weight = 5, - type = 'item', - unique = false, - description = '', - image = 'seed.png', - shouldClose = true, - label = 'Samen', - name = 'seed', - }, - weapon_proxmine = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A bomb placed on the ground that detonates when going within its proximity', - name = 'weapon_proxmine', - label = 'Proxmine Grenade', - image = 'weapon_proximitymine.png', - }, - sunflowerseeds = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Der Snack zum selber knacken', - image = 'Sonnenblumenkerne.png', - shouldClose = true, - label = 'Sonnenblumenkerne', - name = 'sunflowerseeds', - }, - v6_engine = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'v6_engine.png', - shouldClose = true, - label = 'V6 Motor', - name = 'v6_engine', - }, - fruitpicker = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '', - image = 'fruitpicker.png', - shouldClose = false, - label = 'Obstpflücker', - name = 'fruitpicker', - }, - bleeder = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'bleeder.png', - shouldClose = true, - label = 'The Bleeder', - name = 'bleeder', - }, - esketamin = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'esketamin.png', - shouldClose = true, - label = 'Esketamin', - name = 'esketamin', - }, - loaded_fries = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Knusprige Pommes, reich belegt mit köstlichen Toppings', - image = 'loaded_fries.png', - shouldClose = true, - label = 'Loaded Fries', - name = 'loaded_fries', - }, - gg_captured_rabbit = { - useable = true, - weight = 5000, - type = 'item', - unique = true, - description = '', - image = 'gg_captured_rabbit.png', - shouldClose = true, - label = 'Gefangenes Kaninchen', - name = 'gg_captured_rabbit', - }, - wine = { - useable = true, - weight = 300, - type = 'item', - unique = false, - description = 'Some good wine to drink on a fine evening', - image = 'wine.png', - shouldClose = true, - label = 'Rotwein', - name = 'wine', - }, - zlimo = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'zlimo.png', - shouldClose = true, - label = 'Zitronenlimonade', - name = 'zlimo', - }, - pistol_suppressor = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'suppressor_attachment.png', - shouldClose = true, - label = 'Pistolen Schalldämpfer', - name = 'pistol_suppressor', - }, - glass = { - useable = false, - weight = 600, - type = 'item', - unique = false, - description = 'It is very fragile, watch out', - image = 'glass.png', - shouldClose = false, - label = 'Glas', - name = 'glass', - }, - pufferfish = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'putterfish.png', - shouldClose = false, - label = 'Kugelfisch', - name = 'pufferfish', - }, - heartstopper = { - useable = true, - weight = 600, - type = 'item', - unique = false, - description = '"Sieben Lagen pures Glück – und ein direkter Weg zum Herzstillstand!"', - image = 'heartstopper.png', - shouldClose = true, - label = 'Heart Stopper ', - name = 'heartstopper', - }, - gumianimals = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Zurück in die Kindheit – Deine Retro-Tüte voller bunter Gummi-Tierchen!', - image = 'gummanimals.png', - shouldClose = true, - label = 'Gummitierchen', - name = 'gumianimals', - }, - armor = { - useable = true, - weight = 4000, - type = 'item', - unique = false, - description = 'Some protection won\'t hurt... right?', - image = 'armor.png', - shouldClose = true, - label = 'Kugelsichere Weste', - name = 'armor', - }, - weapon_snspistol_mk2 = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Sie sieht gefährlich aus, macht Krach – und verursacht blaue Flecken.', - image = 'weapon_snspistol_mk2.png', - label = 'Softair Pistole', - ammotype = 'AMMO_PISTOL', - name = 'weapon_snspistol_mk2', - }, - gg_deer_hide_01 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_deer_hide_01.png', - shouldClose = true, - label = 'Raues Hirschleder', - name = 'gg_deer_hide_01', - }, - dirischebs = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'Der_Irische_Beziehungsstatus.png', - shouldClose = false, - label = 'Der Irische Beziehungstatus', - name = 'dirischebs', - }, - tobbaco = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'tobbaco.png', - shouldClose = false, - label = 'Tabak', - name = 'tobbaco', - }, - weapon_smg = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Deutsche Ingenieurskunst in Kompaktform, gebaut für Cops, die auf Präzision und Verlässlichkeit zählen.', - image = 'weapon_smg.png', - label = 'MP5', - ammotype = 'AMMO_SMG', - name = 'weapon_smg', - }, - weapon_pistol = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Das Multitool zum Löcher machen.', - image = 'screenshot_398-removebg-preview.png', - label = 'Bretta', - ammotype = 'AMMO_PISTOL', - name = 'weapon_pistol', - }, - urapidil3 = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'urapidil1.png', - shouldClose = true, - label = 'Urapidil 3,0 mg', - name = 'urapidil3', - }, - black_phone = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '„Mach Schluss mit echten Gesprächen – es gibt jetzt bessere Ablenkungen.“', - image = 'black_phone.png', - shouldClose = false, - label = 'iFruit 12XR Schwarz', - name = 'black_phone', - }, - drone = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'drone.png', - shouldClose = true, - label = 'Drohne', - name = 'drone', - }, - freyas_blossom = { - useable = true, - weight = 250, - type = 'item', - unique = true, - description = 'Ein blumiges und fruchtiges Getränk, das die Zartheit und Schönheit, der Göttin Freya widerspiegelt.', - image = 'FreyasBlossom.png', - shouldClose = true, - label = 'Freyas Blossom', - name = 'freyas_blossom', - }, - gleitgel = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = 'Falls es mal zu Trocken ist ^^', - image = 'gleitgel.png', - shouldClose = false, - label = 'Gleitgel', - name = 'gleitgel', - }, - veh_suspension = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle suspension', - image = 'veh_suspension.png', - shouldClose = true, - label = 'Suspension', - name = 'veh_suspension', - }, - packlollis = { - useable = true, - weight = 40, - type = 'item', - unique = false, - description = '', - image = 'packlollis.png', - shouldClose = true, - label = 'Tüte Lollis', - name = 'packlollis', - }, - gg_hunting_knife_01 = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_hunting_knife_01.png', - shouldClose = true, - label = 'Klassisches Jagdmesser', - name = 'gg_hunting_knife_01', - }, - emp_ammo = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Ammo for EMP Launcher', - image = 'emp_ammo.png', - shouldClose = true, - label = 'EMP Ammo', - name = 'emp_ammo', - }, - orange_o_tang_zero_flasche = { - useable = true, - weight = 80, - type = 'item', - unique = false, - description = 'Flasche Orangen Limo', - image = 'orange_o_tang_zero_flasche.png', - shouldClose = true, - label = 'Orange O Tang Zero Flasche', - name = 'orange_o_tang_zero_flasche', - }, - weapontint_mk2_25 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic Gray & Lilac Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic Gray & Lilac Tint', - name = 'weapontint_mk2_25', - }, - njords_ocean_breeze_alkoholfrei = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'NjordsOceanBreeze.png', - shouldClose = true, - label = 'Njords Ocean Breeze', - name = 'njords_ocean_breeze_alkoholfrei', - }, - cup_cola = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'cup_cola.png', - shouldClose = true, - label = 'Becher E-Cola', - name = 'cup_cola', - }, - wurmkur = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'Wurmkur.png', - shouldClose = true, - label = 'Wurmkur', - name = 'wurmkur', - }, - repairkit = { - useable = true, - weight = 2500, - type = 'item', - unique = false, - description = 'A nice toolbox with stuff to repair your vehicle', - image = 'repairkit.png', - shouldClose = true, - label = 'Repairkit', - name = 'repairkit', - }, - diamond = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'A diamond seems like the jackpot to me!', - image = 'diamond.png', - shouldClose = true, - label = 'Diamond', - name = 'diamond', - }, - lokis_trickery = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Unvorhersehbar und gefährlich, genau wie der Gott der Streiche selbst.', - image = 'LokisTrickery.png', - shouldClose = true, - label = 'Loki\'s Trickery', - name = 'lokis_trickery', - }, - weapon_bullpuprifle_mk2 = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Bull Puprifle MK2', - image = 'weapon_bullpuprifle_mk2.png', - label = 'Bullpup Rifle Mk II', - ammotype = 'AMMO_RIFLE', - name = 'weapon_bullpuprifle_mk2', - }, - aldurs_right_ites = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Leicht und erfrischend, diese Bissen erhellen den Geist und lassen den Geschmack erstrahlen.', - image = 'BaldursBrightBites.png', - shouldClose = true, - label = 'Baldur\'s Bright Bites', - name = 'aldurs_right_ites', - }, - bbq_grill = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'bbq_grill.png', - shouldClose = true, - label = 'BBQ Grill', - name = 'bbq_grill', - }, - heimdalls_clear_sight = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'HeimdallsClearSight.png', - shouldClose = true, - label = 'Heimdalls Clear Sight', - name = 'heimdalls_clear_sight', - }, - zig = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'zig.png', - shouldClose = false, - label = 'selbstgedrehte Zigarette ', - name = 'zig', - }, - weapontint_mk2_20 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Yellow Features Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Yellow Features Tint', - name = 'weapontint_mk2_20', - }, - shotgun_ammo = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'viel Peng', - image = 'shotgun_ammo.png', - shouldClose = true, - label = 'Shotgun Munition', - name = 'shotgun_ammo', - }, - nordisee_fischfrikadellenbroetchen = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '"Die Fischfrikadelle im Brötchen hat einen längeren Reiseweg hinter sich als ein Container von Bremerhaven bis zum Hafen von Los Santos – inklusive Turbulenzen über dem Atlantik und Jetlag in der Remoulade."', - image = 'nordisee_fischfrikadellenbroetchen.png', - shouldClose = true, - label = 'Nordisee Fischfrikadellenbrötchen', - name = 'nordisee_fischfrikadellenbroetchen', - }, - box = { - useable = false, - weight = 600, - type = 'item', - unique = true, - description = '', - image = 'box.png', - shouldClose = false, - label = 'Kiste', - name = 'box', - }, - gg_pug_bait_03 = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'gg_pug_bait_03.png', - shouldClose = true, - label = 'Illegaler Raubtierköder 3', - name = 'gg_pug_bait_03', - }, - weapontint_mk2_6 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Classic Blue Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Classic Blue Tint', - name = 'weapontint_mk2_6', - }, - mixed_grilled_plate = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'gemischter Grillteller mit Beilagen', - image = 'Gemischter_grillteller.png', - shouldClose = true, - label = 'KARIŞIK IZGARA ', - name = 'mixed_grilled_plate', - }, - bcesandwich = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Knuspriger Bacon, geschmolzener Käse und ein saftiges Spiegelei, geschichtet zwischen zwei goldbraun gerösteten Toastscheiben', - image = 'bcesandwich.png', - shouldClose = true, - label = 'Bacon Cheese Egg Sandwich', - name = 'bcesandwich', - }, - weed_skunk = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'A weed bag with 2g Skunk', - image = 'weed_baggy.png', - shouldClose = false, - label = 'Skunk 2g', - name = 'weed_skunk', - }, - spazi_limo = { - useable = true, - weight = 150, - type = 'item', - unique = false, - description = 'Spritzig, lecker, absolut neu und revolutionär. Ähnlichkeiten zu anderen Limos? Niemals. Reinste Zufälle. Wirklich.', - image = 'spazi_limo.png', - shouldClose = true, - label = 'Bergbräu Limo', - name = 'spazi_limo', - }, - burger = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'burger.png', - shouldClose = true, - label = 'Hamburger mit Käse', - name = 'burger', - }, - newsmic = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'A microphone for the news', - image = 'newsmic.png', - shouldClose = true, - label = 'News Microphone', - name = 'newsmic', - }, - nitrous_install_kit = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'nitrous_install_kit.png', - shouldClose = true, - label = 'Nitrokit', - name = 'nitrous_install_kit', - }, - elastic_bandage = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'elastisches-medizinisches-bandageband-komprimierend-geringe-dehnung-80-mm_189499203-removebg-preview.png', - shouldClose = true, - label = 'Elastische Binde', - name = 'elastic_bandage', - }, - etilefrin = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_696-removebg-preview.png', - shouldClose = true, - label = 'Etilefrin', - name = 'etilefrin', - }, - bulletproof_tyres = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'bulletproof_tyres.png', - shouldClose = true, - label = 'Reifen Gebanzert', - name = 'bulletproof_tyres', - }, - red_phone = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '„So smart, es wundert sich selbst, warum es bei dir gelandet ist.“', - image = 'red_phone.png', - shouldClose = false, - label = 'iFruit 12XR Rot', - name = 'red_phone', - }, - sniper_defaultclip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'sniper_defaultclip.png', - shouldClose = true, - label = 'Sniper Magzin', - name = 'sniper_defaultclip', - }, - weapon_stone_hatchet = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Stone Hatchet', - name = 'weapon_stone_hatchet', - label = 'Stone Hatchet', - image = 'weapon_stone_hatchet.png', - }, - amiodaron = { - useable = true, - weight = 15, - type = 'item', - unique = false, - description = '', - image = 'amiodaron.png', - shouldClose = true, - label = 'Amiodaron', - name = 'amiodaron', - }, - weapon_grenadelauncher = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A weapon that fires a specially-designed large-caliber projectile, often with an explosive, smoke or gas warhead', - image = 'weapon_grenadelauncher.png', - label = 'Grenade Launcher', - ammotype = 'AMMO_GRENADELAUNCHER', - name = 'weapon_grenadelauncher', - }, - weaponlicense = { - useable = true, - weight = 0, - type = 'item', - unique = true, - description = 'Weapon License', - image = 'weapon_license.png', - shouldClose = true, - label = 'Weapon License', - name = 'weaponlicense', - }, - ohrstopsel = { - useable = false, - weight = 20, - type = 'item', - unique = true, - description = 'damit du das Stöhnen der Nachbarn net hören musst', - image = 'oropax.png', - shouldClose = false, - label = 'Ohrstöpsel', - name = 'ohrstopsel', - }, - kanister = { - useable = false, - weight = 600, - type = 'item', - unique = false, - description = '', - image = 'kanister.png', - shouldClose = false, - label = 'leerer Kanister', - name = 'kanister', - }, - weed = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Wächst, riecht, entspannt', - image = 'marihuana.png', - shouldClose = false, - label = 'Cannabis Knolle', - name = 'weed', - }, - ifs_olden_ectar = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Fruchtig und süß, wie die goldene Ernte auf den Feldern – ein perfekter Genuss für jede Gelegenheit.', - image = 'SifGoldenNectar.png', - shouldClose = true, - label = 'Sif\'s Golden Nectar', - name = 'ifs_olden_ectar', - }, - injection = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'Bereit für alles, aber hat nix zu sagen.', - image = 'syringe.png', - shouldClose = false, - label = 'Spritze', - name = 'injection', - }, - tavor1 = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'tavor1.png', - shouldClose = true, - label = 'Tavor 1,0 mg', - name = 'tavor1', - }, - pistol_barrel = { - useable = false, - weight = 250, - type = 'item', - unique = false, - description = 'Der einzige Weg, wie du in kürzester Zeit einen bleibenden Eindruck hinterlässt', - image = 'weapon_batton.png', - shouldClose = false, - label = 'Pistolenlauf', - name = 'pistol_barrel', - }, - semi_slick_tyres = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'semi_slick_tyres.png', - shouldClose = true, - label = 'Reifen semi slick', - name = 'semi_slick_tyres', - }, - weapon_minismg = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A mini handheld light weight machine gun', - image = 'weapon_minismg.png', - label = 'Mini SMG', - ammotype = 'AMMO_SMG', - name = 'weapon_minismg', - }, - thermalvision = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = 'i can seeee you ^^', - image = 'thermalvision.png', - shouldClose = true, - label = 'Thermalvisier', - name = 'thermalvision', - }, - pork_joint = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'pork_joint.png', - shouldClose = true, - label = 'roher Schweinebraten', - name = 'pork_joint', - }, - luxuryfinish_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A luxury finish for a weapon', - image = 'luxuryfinish_attachment.png', - shouldClose = true, - label = 'Luxury Finish', - name = 'luxuryfinish_attachment', - }, - weapon_nightstick = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A police officer\'s club or billy', - name = 'weapon_nightstick', - label = 'Nightstick', - image = 'weapon_nightstick.png', - }, - gg_hunting_animaltracker = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_hunting_animaltracker.png', - shouldClose = true, - label = 'Tier Ortungsgerät', - name = 'gg_hunting_animaltracker', - }, - empty_weed_bag = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A small empty bag', - image = 'weed_baggy_empty.png', - shouldClose = true, - label = 'Empty Weed Bag', - name = 'empty_weed_bag', - }, - weapon_sled = { - useable = false, - weight = 250, - type = 'item', - unique = false, - description = 'Der flinke Kurier, der das Feuer in Bewegung bringt', - image = 'Waffenschlitten.png', - shouldClose = false, - label = 'Pistolenschlitten', - name = 'weapon_sled', - }, - gg_coyote_fangs_01 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_coyote_fangs_01.png', - shouldClose = true, - label = 'Robuster Kojotenzahn', - name = 'gg_coyote_fangs_01', - }, - rolling_paper = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Der Stoff, der Gras und Tabak zusammenhält', - image = 'rolling_paper2.png', - shouldClose = true, - label = 'Drehpapier', - name = 'rolling_paper', - }, - weapontint_mk2_11 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Yellow Contrast Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Yellow Contrast Tint', - name = 'weapontint_mk2_11', - }, - pinger = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'With a pinger and your phone you can send out your location', - image = 'pinger.png', - shouldClose = true, - label = 'Pinger', - name = 'pinger', - }, - munky_juice = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Trinkpäckchen mit Saft und ja der Strohhalm ist aus Plastik ^^', - image = 'munky_juice.png', - shouldClose = true, - label = 'Munky Juice', - name = 'munky_juice', - }, - weapontint_mk2_22 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Blue & White Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Blue & White Tint', - name = 'weapontint_mk2_22', - }, - largescope_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A large scope for a weapon', - image = 'largescope_attachment.png', - shouldClose = true, - label = 'Large Scope', - name = 'largescope_attachment', - }, - ceramic_barrel = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Der Lauf, der sich in jeder Sicherheitskontrolle unsichtbar macht', - image = 'keramiklauf.png', - shouldClose = false, - label = 'Keramiklauf', - name = 'ceramic_barrel', - }, - chemiebarrel = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'chemie.png', - shouldClose = false, - label = 'Chemie Fass', - name = 'chemiebarrel', - }, - shovel = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '', - image = 'shovel.png', - shouldClose = false, - label = 'Schaufel', - name = 'shovel', - }, - small_blade = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = ' Die Klinge, die nicht auf sich warten lässt', - image = 'Klinge Springmesser.png', - shouldClose = false, - label = 'kleine Klinge', - name = 'small_blade', - }, - purple_phone = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '„Jetzt mit noch mehr Features, die du nie brauchst, aber jedem zeigen musst.“', - image = 'purple_phone.png', - shouldClose = false, - label = 'iFruit 12XR Lila', - name = 'purple_phone', - }, - stickynote = { - useable = false, - weight = 0, - type = 'item', - unique = true, - description = 'Sometimes handy to remember something :)', - image = 'stickynote.png', - shouldClose = false, - label = 'Sticky note', - name = 'stickynote', - }, - packing_bandage = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_478-removebg-preview.png', - shouldClose = true, - label = 'Verbandpäckchen', - name = 'packing_bandage', - }, - cigar = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'cigar.png', - shouldClose = false, - label = 'Zigarre', - name = 'cigar', - }, - sifs_olden_harvest = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'SifsGoldenHarvest.png', - shouldClose = true, - label = 'Sifs Golden Harvest', - name = 'sifs_olden_harvest', - }, - bubble_tea = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Bubble Tea – das einzige Getränk, bei dem man sich fragt, ob man gerade trinkt, snackt oder ein Kinderspielzeug schlürft!', - image = 'bubble_tea.png', - shouldClose = true, - label = 'Bubble Tea', - name = 'bubble_tea', - }, - bbq_seasoning = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'bbq_seasoning.png', - shouldClose = true, - label = 'BBQ Gewürze', - name = 'bbq_seasoning', - }, - ezme = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'ezme.png', - shouldClose = true, - label = 'Ezme', - name = 'ezme', - }, - smallscope_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A small scope for a weapon', - image = 'smallscope_attachment.png', - shouldClose = true, - label = 'Small Scope', - name = 'smallscope_attachment', - }, - gg_rabbit_pelt_02 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_rabbit_pelt_02.png', - shouldClose = true, - label = 'Robustes Kaninchenfell', - name = 'gg_rabbit_pelt_02', - }, - tyre_replacement = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'die Premium Schuhe der Kraftfahrzeuge', - image = 'tyre_replacement.png', - shouldClose = true, - label = 'Premium Reifen', - name = 'tyre_replacement', - }, - sniper_grip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'ar_grip.png', - shouldClose = true, - label = 'Marksmangewehr Griff', - name = 'sniper_grip', - }, - dins_isdom_latter = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Eine herzhafte Mischung, die den Wissensdurst und die Abenteuerlust des Göttervaters befriedigt.', - image = 'OdinsWisdomPlatter.png', - shouldClose = true, - label = 'Odin\'s Wisdom Platter', - name = 'dins_isdom_latter', - }, - zebracamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A zebra camo for a weapon', - image = 'zebracamo_attachment.png', - shouldClose = true, - label = 'Zebra Camo', - name = 'zebracamo_attachment', - }, - gg_boar_tusk_01 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_boar_tusk_01.png', - shouldClose = true, - label = 'Rauer Eberzahn', - name = 'gg_boar_tusk_01', - }, - weapontint_mk2_18 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Green Features Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Green Features Tint', - name = 'weapontint_mk2_18', - }, - digicamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A digital camo for a weapon', - image = 'digicamo_attachment.png', - shouldClose = true, - label = 'Digital Camo', - name = 'digicamo_attachment', - }, - weapon_handcuffs = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A pair of lockable linked metal rings for securing a prisoner\'s wrists', - name = 'weapon_handcuffs', - label = 'Handcuffs', - image = 'weapon_handcuffs.png', - }, - pelmini = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Kleine Teigtaschen, große Gefühle – Pelmeni lieben dich zurück!', - image = 'pelmini.png', - shouldClose = true, - label = 'Pelmini', - name = 'pelmini', - }, - weapon_candycane = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Candy Cane', - name = 'weapon_candycane', - label = 'Candy Cane', - image = 'weapon_candycane', - }, - raw_turkey_drums = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'raw_turkey_drums.png', - shouldClose = true, - label = 'rohe Putenkeulen', - name = 'raw_turkey_drums', - }, - weapon_sawnoffshotgun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A sawn-off smoothbore gun for firing small shot at short range', - image = 'weapon_sawnoffshotgun.png', - label = 'Sawn-off Shotgun', - ammotype = 'AMMO_SHOTGUN', - name = 'weapon_sawnoffshotgun', - }, - veh_brakes = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle brakes', - image = 'veh_brakes.png', - shouldClose = true, - label = 'Brakes', - name = 'veh_brakes', - }, - shotgun_grip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'grip_attachment.png', - shouldClose = true, - label = 'Shotgun Griff', - name = 'shotgun_grip', - }, - tilidin = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'syringe.png', - shouldClose = true, - label = 'Tilidin', - name = 'tilidin', - }, - sessantacamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A sessanta nove camo for a weapon', - image = 'sessantacamo_attachment.png', - shouldClose = true, - label = 'Sessanta Nove Camo', - name = 'sessantacamo_attachment', - }, - tenkgoldchain = { - useable = false, - weight = 2000, - type = 'item', - unique = false, - description = '10 carat golden chain', - image = '10kgoldchain.png', - shouldClose = true, - label = '10k Gold Chain', - name = 'tenkgoldchain', - }, - h_choclate = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'h_choclate.png', - shouldClose = true, - label = 'Heiße Schokolade', - name = 'h_choclate', - }, - weapon_heavysniper = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An upgraded high-precision, long-range rifle', - image = 'weapon_heavysniper.png', - label = 'Heavy Sniper', - ammotype = 'AMMO_SNIPER', - name = 'weapon_heavysniper', - }, - big_bottle_tide = { - useable = true, - weight = 600, - type = 'item', - unique = false, - description = '', - image = 'big_bottle_tide.png', - shouldClose = true, - label = 'große Flasche Orange O Tang', - name = 'big_bottle_tide', - }, - pipe = { - useable = true, - weight = 400, - type = 'item', - unique = true, - description = '', - image = 'pipe.png', - shouldClose = false, - label = 'Pfeife', - name = 'pipe', - }, - sprunk_zero_dose = { - useable = true, - weight = 50, - type = 'item', - unique = false, - description = 'Dose Zitronen Limo', - image = 'sprunk_zero_dose.png', - shouldClose = true, - label = 'Sprunk Zero Dose', - name = 'sprunk_zero_dose', - }, - steel = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'Nice piece of metal that you can probably use for something', - image = 'steel.png', - shouldClose = false, - label = 'Stahl', - name = 'steel', - }, - rifle_drum = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'drum_attachment.png', - shouldClose = true, - label = 'Gewehr Trommelmagzin', - name = 'rifle_drum', - }, - kunfe = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'kunfe.png', - shouldClose = true, - label = 'Künefe', - name = 'kunfe', - }, - korb = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '', - image = 'korb.png', - shouldClose = false, - label = 'Korb', - name = 'korb', - }, - placebo = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'placebo.png', - shouldClose = true, - label = 'Placebo', - name = 'placebo', - }, - cocoa = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Kakaopulver ist Schokolade im Tarnanzug – bereit, jede Tasse in Wohlfühlzauber zu verwandeln.', - image = 'cacao.png', - shouldClose = false, - label = 'Packung Kakaopulver', - name = 'cocoa', - }, - tavor25 = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'tavor25.png', - shouldClose = true, - label = 'Tavor 2,5 mg', - name = 'tavor25', - }, - weapontint_mk2_0 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Classic Black Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Classic Black Tint', - name = 'weapontint_mk2_0', - }, - weapon_combatpistol = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Eine kompakte, zuverlässige 9mm-Dienstpistole mit 17 Schuss Magazin.', - image = 'screenshot_434-removebg-preview.png', - label = 'Bretta Storm', - ammotype = 'AMMO_PISTOL', - name = 'weapon_combatpistol', - }, - firstaid = { - useable = true, - weight = 2500, - type = 'item', - unique = false, - description = 'You can use this First Aid kit to get people back on their feet', - image = 'firstaid.png', - shouldClose = true, - label = 'First Aid', - name = 'firstaid', - }, - vitaminloesung = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_696-removebg-preview.png', - shouldClose = true, - label = 'Vitaminlösung 100', - name = 'vitaminloesung', - }, - newspaper = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'zum Nachschlagen ^^', - image = 'newspaper.png', - shouldClose = true, - label = 'Zeitung', - name = 'newspaper', - }, - weapon_pipebomb = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A homemade bomb, the components of which are contained in a pipe', - name = 'weapon_pipebomb', - label = 'Pipe Bomb', - image = 'weapon_pipebomb.png', - }, - sd_card = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'sd_card.png', - shouldClose = false, - label = 'SD Karte', - name = 'sd_card', - }, - squared_muzzle_brake = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A muzzle brake for a weapon', - image = 'squared_muzzle_brake.png', - shouldClose = true, - label = 'Squared Muzzle Brake', - name = 'squared_muzzle_brake', - }, - veh_transmission = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle transmission', - image = 'veh_transmission.png', - shouldClose = true, - label = 'Transmission', - name = 'veh_transmission', - }, - lidocain = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'Lidocain.png', - shouldClose = true, - label = 'Lidocain', - name = 'lidocain', - }, - gg_hunting_meat = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'gg_hunting_meat.png', - shouldClose = true, - label = 'rohes Wildfleisch', - name = 'gg_hunting_meat', - }, - gg_cougar_claw_01 = { - useable = false, - weight = 500, - type = 'item', - unique = true, - description = '', - image = 'gg_cougar_claw_01.png', - shouldClose = true, - label = 'Raue Puma-Klaue', - name = 'gg_cougar_claw_01', - }, - radioscanner = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'With this you can get some police alerts. Not 100% effective however', - image = 'radioscanner.png', - shouldClose = true, - label = 'Radio Scanner', - name = 'radioscanner', - }, - boxapplejuice = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'boxapplejuice.png', - shouldClose = false, - label = 'Kiste Apfelsaft', - name = 'boxapplejuice', - }, - geocamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A geometric camo for a weapon', - image = 'geocamo_attachment.png', - shouldClose = true, - label = 'Geometric Camo', - name = 'geocamo_attachment', - }, - twerks_candy = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'It\'s all about you.', - image = 'twerks_candy.png', - shouldClose = true, - label = 'Ego Chaser Schockriegel', - name = 'twerks_candy', - }, - gg_deer_hide_03 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_deer_hide_03.png', - shouldClose = true, - label = 'Makelloses Hirschfell', - name = 'gg_deer_hide_03', - }, - orange_o_tang_dose = { - useable = true, - weight = 50, - type = 'item', - unique = false, - description = 'Dose Orangen Limo', - image = 'orange_o_tang_dose.png', - shouldClose = true, - label = 'Orange O Tang Dose', - name = 'orange_o_tang_dose', - }, - j_and_js = { - useable = true, - weight = 150, - type = 'item', - unique = true, - description = 'Kleine, bunte Schockodrops mit knackiger Hülle und weichem Kern', - image = 'ChatGPT_Image_27._Apr._2025__12_06_23-removebg-preview.png', - shouldClose = true, - label = 'J&J’s', - name = 'j_and_js', - }, - weapon_hammer = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Used for jobs such as breaking things (legs) and driving in nails', - name = 'weapon_hammer', - label = 'Hammer', - image = 'weapon_hammer.png', - }, - raw_beef_brisket = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'raw_beef_brisket.png', - shouldClose = true, - label = 'rohes Beef Brisket', - name = 'raw_beef_brisket', - }, - gg_coyote_fangs_02 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_coyote_fangs_02.png', - shouldClose = true, - label = 'guter Kojotenzahn', - name = 'gg_coyote_fangs_02', - }, - jords_ea_latter = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Frisch aus dem Meer, diese Meeresfrüchte erinnern an Njords Verbindung zu den stürmischen Wellen der nordischen Meere.', - image = 'NjordsSeaPlatter.png', - shouldClose = true, - label = 'Njord\'s Sea Platter', - name = 'njords_sea_platter', - }, - young_salmon = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'young_salmon.png', - shouldClose = false, - label = 'junger Lachs', - name = 'young_salmon', - }, - dwurstmskraut = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'Deckelwurst_mit_Sauerkraft-removebg-preview.png', - shouldClose = false, - label = 'Dackelwurst mit Sauerkraut', - name = 'dwurstmskraut', - }, - kayas_rotwein = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Türkischer Rotwein', - image = 'kirimzi.png', - shouldClose = true, - label = 'Kırmızı şarap ', - name = 'kayas_rotwein', - }, - thors_sandwich = { - useable = true, - weight = 150, - type = 'item', - unique = false, - description = 'So kraftvoll wie Thors Hammerschlag, dieses Sandwich ist eine herzhafte Kombination aus intensiven Aromen und sättigender Substanz. Perfekt für einen echten Wikinger-Appetit.', - image = 'thors_sandwich.png', - shouldClose = true, - label = 'Thors Sandwich', - name = 'thors_sandwich', - }, - cerveza_barracho = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Erfrischendes mexikanisches Bier mit vollmundigem Geschmack', - image = 'ChatGPT Image 26. Apr. 2025, 15_29_53-min.png', - shouldClose = true, - label = 'Cerveza Barracho', - name = 'cerveza_barracho', - }, - veh_neons = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle neons', - image = 'veh_neons.png', - shouldClose = true, - label = 'Neons', - name = 'veh_neons', - }, - weapon_bread = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Bread...?', - name = 'weapon_bread', - label = 'Baquette', - image = 'baquette.png', - }, - log = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = '', - image = 'wood_scraps.png', - shouldClose = false, - label = 'Holzscheit', - name = 'log', - }, - campers_fuel = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'ein Campers am morgen vertreibt Kummer und Sorgen', - image = 'campers_fuel.png', - shouldClose = true, - label = 'Campers Fuel', - name = 'campers_fuel', - }, - pistol_flashlight = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'flashlight_attachment.png', - shouldClose = true, - label = 'Pistolenlicht', - name = 'pistol_flashlight', - }, - rifle_suppressor = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'suppressor_attachment.png', - shouldClose = true, - label = 'Gewehr Schalldämpfer', - name = 'rifle_suppressor', - }, - weapon_handle = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Der perfekte Halt – für dich und deine Waffen-Fantasien', - image = 'snspistol_part_3.png', - shouldClose = false, - label = 'Griff', - name = 'weapon_handle', - }, - juice = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Wenn hier Anna nass macht dann bin ICH das !!!!', - image = 'juice.png', - shouldClose = true, - label = 'Saft', - name = 'juice', - }, - weapon_assaultshotgun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An assault version of asmoothbore gun for firing small shot at short range', - image = 'weapon_assaultshotgun.png', - label = 'Assault Shotgun', - ammotype = 'AMMO_SHOTGUN', - name = 'weapon_assaultshotgun', - }, - kobolbrolle = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'kobolbrolle.png', - shouldClose = false, - label = 'Kobolbrolle', - name = 'kobolbrolle', - }, - awd_drivetrain = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'awd_drivetrain.png', - shouldClose = true, - label = 'AWD', - name = 'awd_drivetrain', - }, - sniper_scope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'largescope_attachment.png', - shouldClose = true, - label = 'Sniper Visier', - name = 'sniper_scope', - }, - weapon_crowbar = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An iron bar with a flattened end, used as a lever', - name = 'weapon_crowbar', - label = 'Crowbar', - image = 'weapon_crowbar.png', - }, - machete_blade = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'Wenn du mehr als nur ein bisschen Durchblick brauchst – sie räumt den Weg frei', - image = 'Machetenklinge.png', - shouldClose = false, - label = 'Machete Klinge', - name = 'machete_blade', - }, - shotgun_scope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'smallscope_attachment.png', - shouldClose = true, - label = 'MK2 Shotgun Visier', - name = 'shotgun_scope', - }, - gatecrack = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = 'Handy software to tear down some fences', - image = 'usb_device.png', - shouldClose = true, - label = 'Gatecrack', - name = 'gatecrack', - }, - brakepad_replacement = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'brakepad_replacement.png', - shouldClose = true, - label = 'Premium Bremsenteile', - name = 'brakepad_replacement', - }, - weapontint_mk2_28 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic Green Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic Green Tint', - name = 'weapontint_mk2_28', - }, - zwiebelsalat = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Türkischer Zwiebelsalat', - image = 'sogan.png', - shouldClose = true, - label = 'Soğan salatası', - name = 'zwiebelsalat', - }, - boxorangejuice = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'boxorangejuice.png', - shouldClose = false, - label = 'Kiste Orangensaft', - name = 'boxorangejuice', - }, - shaft = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Schaft: Der ruhige Held der Waffe – immer da, wenn man ihn braucht, aber nie im Mittelpunkt', - image = 'ar_grip.png', - shouldClose = false, - label = 'Waffenschaft', - name = 'shaft', - }, - manti = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'manti.png', - shouldClose = true, - label = 'Manti', - name = 'manti', - }, - nightvision = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'nightvision.png', - shouldClose = true, - label = 'Nachtsichtgerät', - name = 'nightvision', - }, - opium = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'Chillfilter fürs Leben – aber Vorsicht, klebrig', - image = 'opium_dry2.png', - shouldClose = false, - label = 'Opium', - name = 'opium', - }, - respray_kit = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'Perfekt für die schnelle Ausbesserung des Kleides', - image = 'respray_kit.png', - shouldClose = true, - label = 'Lack Spraydose', - name = 'respray_kit', - }, - weapon_pistol50 = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Für alle, die denken, normale Pistolen fühlen sich einfach zu sehr nach Spielzeug an.', - image = 'tropical_eagle.png', - label = 'Tropical Eagle', - ammotype = 'AMMO_PISTOL', - name = 'weapon_pistol50', - }, - i4_engine = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'i4_engine.png', - shouldClose = true, - label = 'I4 Motor', - name = 'i4_engine', - }, - rwd_drivetrain = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'rwd_drivetrain.png', - shouldClose = true, - label = 'RWD', - name = 'rwd_drivetrain', - }, - roofbox_carbon = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'roofbox_carbon.png', - shouldClose = true, - label = 'Carbon Dachbox', - name = 'roofbox_carbon', - }, - weapontint_6 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Orange Weapon Tint', - image = 'weapontint_orange.png', - shouldClose = true, - label = 'Orange Tint', - name = 'weapontint_6', - }, - salmon = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'salmon.png', - shouldClose = true, - label = 'Lachs', - name = 'salmon', - }, - veh_exterior = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle exterior', - image = 'veh_exterior.png', - shouldClose = true, - label = 'Exterior', - name = 'veh_exterior', - }, - amoxicillin = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'amoxicillin.png', - shouldClose = true, - label = 'Amoxicillin', - name = 'amoxicillin', - }, - switchblade_mechanism = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'Der flinke Schalter – ein Klick, und das Messer ist blitzschnell auf dem Sprung', - image = 'weapon_parts2.png', - shouldClose = false, - label = 'Mechanismus für Springmesser', - name = 'switchblade_mechanism', - }, - cup_tide = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'cup_tide.png', - shouldClose = true, - label = 'Becher Orange O Tang', - name = 'cup_tide', - }, - weapon_hominglauncher = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A weapon fitted with an electronic device that enables it to find and hit a target', - image = 'weapon_hominglauncher.png', - label = 'Homing Launcher', - ammotype = 'AMMO_STINGER', - name = 'weapon_hominglauncher', - }, - heroin_route = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', - image = 'heroin_route.png', - shouldClose = false, - label = 'Heroin Route', - name = 'heroin_route', - }, - kakao = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Eine heiße, süße Tasse Schokolade – perfekt zum Entspannen oder Aufwärmen an kühlen Tagen.', - image = 'kakao.png', - shouldClose = true, - label = 'Kakao Togo', - name = 'kakao', - }, - barrel = { - useable = false, - weight = 2000, - type = 'item', - unique = true, - description = '', - image = 'barrel.png', - shouldClose = false, - label = 'leeres Metallfass', - name = 'barrel', - }, - worm_bait = { - useable = true, - weight = 2, - type = 'item', - unique = false, - description = '', - image = 'worm_bait.png', - shouldClose = false, - label = 'Regenwurm', - name = 'worm_bait', - }, - paracetamol = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'Paracetamol.png', - shouldClose = true, - label = 'Paracetamol', - name = 'paracetamol', - }, - ecola_zero_dose = { - useable = true, - weight = 50, - type = 'item', - unique = false, - description = 'Dose Cola', - image = 'ecolazerocan.png', - shouldClose = true, - label = 'E-Cola Zero Dose', - name = 'ecola_zero_dose', - }, - oilbarrel = { - useable = false, - weight = 6000, - type = 'item', - unique = true, - description = '', - image = 'oilbarrel.png', - shouldClose = false, - label = 'Erdölfass', - name = 'oilbarrel', - }, - weapon_carbinerifle = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Der beste Freund eines Cops, wenn Funk und Pfefferspray nicht mehr reichen.', - image = 'ar15.png', - label = 'AR 15', - ammotype = 'AMMO_RIFLE', - name = 'weapon_carbinerifle', - }, - salad = { - useable = false, - weight = 200, - type = 'item', - unique = true, - description = '', - image = 'salad.png', - shouldClose = false, - label = 'Eisbergsalat', - name = 'salad', - }, - engine_oil = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'Das bier der Kraftfahrzeuge!', - image = 'engine_oil.png', - shouldClose = true, - label = 'Premium Motoröl', - name = 'engine_oil', - }, - weapon_musket = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An infantryman\'s light gun with a long barrel, typically smooth-bored, muzzleloading, and fired from the shoulder', - image = 'weapon_musket.png', - label = 'Musket', - ammotype = 'AMMO_SHOTGUN', - name = 'weapon_musket', - }, - lahmacun = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Fladenbrot mit einer würzigen Mischung aus Hackfleisch, Zwiebeln, Tomaten und Olivenöl', - image = 'lahmacun.png', - shouldClose = true, - label = 'Lahmacun', - name = 'lahmacun', - }, - rifle_scope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'smallscope_attachment.png', - shouldClose = true, - label = 'Gewehrvisier', - name = 'rifle_scope', - }, - axe_head = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Der schneidige Bruder der Säge', - image = 'Axtkopf.png', - shouldClose = false, - label = 'Axt Kopf', - name = 'axe_head', - }, - kuzu_sis = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Lammkebab mit Beilagen', - image = 'Kuzu_sis.png', - shouldClose = true, - label = 'Kuzu Sis', - name = 'kuzu_sis', - }, - weapon_gusenberg = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = ' das Original aus der goldenen Ära der Gangster', - image = 'screenshot_412-removebg-preview.png', - label = 'Gusenberg Sweeper', - ammotype = 'AMMO_MG', - name = 'weapon_gusenberg', - }, - aluminum = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'Nice piece of metal that you can probably use for something', - image = 'aluminum.png', - shouldClose = false, - label = 'Aluminium', - name = 'aluminum', - }, - weed_whitewidow_seed = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A weed seed of White Widow', - image = 'weed_seed.png', - shouldClose = false, - label = 'White Widow Seed', - name = 'weed_whitewidow_seed', - }, - gussform = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gussform.png', - shouldClose = false, - label = 'Gussform ', - name = 'gussform', - }, - sugarbeet = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = '', - image = 'rube.png', - shouldClose = false, - label = 'Zuckerrübe', - name = 'sugarbeet', - }, - heroin_injection = { - useable = true, - weight = 750, - type = 'item', - unique = false, - description = 'Der schnellste Weg ins Nirwana, aber der Ausgang ist unsichtbar', - image = 'dirtyneedle.png', - shouldClose = true, - label = 'Heroinspritze', - name = 'heroin_injection', - }, - tunerlaptop = { - useable = true, - weight = 2000, - type = 'item', - unique = true, - description = 'With this tunerchip you can get your car on steroids... If you know what you\'re doing', - image = 'tunerchip.png', - shouldClose = true, - label = 'Tunerchip', - name = 'tunerlaptop', - }, - cigs = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cigs.png', - shouldClose = true, - label = 'Zigarette', - name = 'cigs', - }, - beerkeg = { - useable = true, - weight = 600, - type = 'item', - unique = true, - description = '', - image = 'beerkeg.png', - shouldClose = true, - label = 'Bierfass', - name = 'beerkeg', - }, - quickclot = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = '40053-QuikClot-Combat-Gauze-01-removebg-preview.png', - shouldClose = true, - label = 'Wundschnellverband', - name = 'quickclot', - }, - acetic = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Küchenessenz für Chemieprofis', - image = 'acetone2.png', - shouldClose = false, - label = 'Essiganhydrid', - name = 'acetic', - }, - bcso_card = { - useable = true, - weight = 0, - type = 'item', - unique = true, - description = '', - image = 'police_card.png', - shouldClose = true, - label = 'BCSO Dienstausweis', - name = 'bcso_card', - }, - kadis_inter_kewers = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'SkadisWinterSkewers.png', - shouldClose = true, - label = 'Skadi\'s Winter Skewers', - name = 'skadis_winter_skewers', - }, - coffee_beans = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'coffee_beans.png', - shouldClose = false, - label = 'Packung Kaffeepulver', - name = 'coffee_beans', - }, - gg_salt_block_02 = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'gg_salt_block_02.png', - shouldClose = true, - label = 'besserer Salzblock', - name = 'gg_salt_block_02', - }, - sweets_candies = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'Bunt, süß und manchmal klebrig', - image = 'candy1.png', - shouldClose = true, - label = 'Bonbons', - name = 'sweets_candies', - }, - fitbit = { - useable = true, - weight = 500, - type = 'item', - unique = true, - description = 'I like fitbit', - image = 'fitbit.png', - shouldClose = true, - label = 'Fitbit', - name = 'fitbit', - }, - shotgun_suppressor = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'suppressor_attachment.png', - shouldClose = true, - label = 'Shotgun Schalldämpfer', - name = 'shotgun_suppressor', - }, - veh_engine = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle engine', - image = 'veh_engine.png', - shouldClose = true, - label = 'Engine', - name = 'veh_engine', - }, - grip_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A grip for a weapon', - image = 'grip_attachment.png', - shouldClose = true, - label = 'Grip', - name = 'grip_attachment', - }, - weapon_stickybomb = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An explosive charge covered with an adhesive that when thrown against an object sticks until it explodes', - name = 'weapon_stickybomb', - label = 'C4', - image = 'weapon_stickybomb.png', - }, - rolex = { - useable = false, - weight = 1500, - type = 'item', - unique = false, - description = 'A golden watch seems like the jackpot to me!', - image = 'rolex.png', - shouldClose = true, - label = 'Golden Watch', - name = 'rolex', - }, - jords_cean_reeze_alkoholfrei = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Eine kühle Meeresbrise in Form eines Getränks, die erfrischend und exotisch zugleich ist.', - image = 'NjordsOceanBreeze.png', - shouldClose = true, - label = 'Njord\'s Ocean Breeze (alkoholfrei)', - name = 'njords_ocean_breeze_alkoholfrei', - }, - ffries = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '"Jetzt mit 0 % Kartoffel, 100 % Patriotismus!"', - image = 'screenshot_686-removebg-preview.png', - shouldClose = true, - label = 'Freedom Fries', - name = 'ffries', - }, - weapontint_mk2_12 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Orange Contrast Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Orange Contrast Tint', - name = 'weapontint_mk2_12', - }, - small_triggersystem = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'Winzig, aber mächtig – ein kleiner Klick und die Action geht los', - image = 'trigger2.png', - shouldClose = false, - label = 'kleines Abzugssystem', - name = 'small_triggersystem', - }, - whiskeywickel = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = '', - image = 'whiskeywickel.png', - shouldClose = false, - label = 'Whiskeywickel', - name = 'whiskeywickel', - }, - pralinen = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Damit Sie dich mal wieder ranlässt...', - image = 'pralinen.png', - shouldClose = true, - label = 'Pralinen', - name = 'pralinen', - }, - drytobbacoleaf = { - useable = false, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'drietobbacoleaf.png', - shouldClose = false, - label = 'getrocknetes Tabakblatt', - name = 'drytobbacoleaf', - }, - id_card = { - useable = true, - weight = 0, - type = 'item', - unique = true, - description = 'A card containing all your information to identify yourself', - image = 'id_card.png', - shouldClose = false, - label = 'ID Card', - name = 'id_card', - }, - flour = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'flour.png', - shouldClose = false, - label = 'Packung Mehl ', - name = 'flour', - }, - vitaminloesung_250 = { - useable = true, - weight = 250, - type = 'item', - unique = false, - description = '', - image = 'screenshot_696-removebg-preview.png', - shouldClose = true, - label = 'Vitaminlösung 250', - name = 'vitaminloesung_250', - }, - tyre_smoke_kit = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'tyre_smoke_kit.png', - shouldClose = true, - label = 'Reifenrauch Kit', - name = 'tyre_smoke_kit', - }, - veh_xenons = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Upgrade vehicle xenons', - image = 'veh_xenons.png', - shouldClose = true, - label = 'Xenons', - name = 'veh_xenons', - }, - weapon_flaregun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A handgun for firing signal rockets', - image = 'weapon_flaregun.png', - label = 'Flare Gun', - ammotype = 'AMMO_FLARE', - name = 'weapon_flaregun', - }, - driver_license = { - useable = true, - weight = 0, - type = 'item', - unique = true, - description = 'Permit to show you can drive a vehicle', - image = 'driver_license.png', - shouldClose = false, - label = 'Drivers License', - name = 'driver_license', - }, - meth_pipe = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'Leere Pfeife zum möglichen Glück was keins ist', - image = 'Meth pfeife.png', - shouldClose = false, - label = 'Leere Methpfeife', - name = 'meth_pipe', - }, - lsd_route = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', - image = 'lsd_route.png', - shouldClose = false, - label = 'LSD Route', - name = 'lsd_route', - }, - bodybag = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'bodybag.png', - shouldClose = true, - label = 'Leichensack', - name = 'bodybag', - }, - fenystil = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'fenystil.png', - shouldClose = true, - label = 'Fenistil', - name = 'fenystil', - }, - kas_leberkas_semmal = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Mehr Fleisch als Worte – des is koa Semmel, des is a Lebensgefühl!', - image = 'kas_leberkas_semmal.png', - shouldClose = true, - label = 'Kas Leberkas Semmal', - name = 'kas_leberkas_semmal', - }, - gg_coyote_fangs_03 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_coyote_fangs_03.png', - shouldClose = true, - label = 'Makelloser Kojotenzahn', - name = 'gg_coyote_fangs_03', - }, - cleaning_kit = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = 'Für die schnelle Reinigung', - image = '', - shouldClose = false, - label = 'Premium Putzlappen ', - name = 'cleaning_kit', - }, - rifle_flashlight = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'flashlight_attachment.png', - shouldClose = true, - label = 'Gewehrlicht', - name = 'rifle_flashlight', - }, - painkillers = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'For pain you can\'t stand anymore, take this pill that\'d make you feel great again', - image = 'painkillers.png', - shouldClose = true, - label = 'Painkillers', - name = 'painkillers', - }, - stancing_kit = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'stancing_kit.png', - shouldClose = true, - label = 'Stancing Kit', - name = 'stancing_kit', - }, - packtobbaco = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'packtobbaco.png', - shouldClose = false, - label = 'Packung Tabak', - name = 'packtobbaco', - }, - freshtobbacoleaf = { - useable = false, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'freshtobbacoleaf.png', - shouldClose = false, - label = 'frisches Tabakblatt', - name = 'freshtobbacoleaf', - }, - hundefutter = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Futter für Hunde', - image = 'dogfood.png', - shouldClose = true, - label = 'Hundefutter', - name = 'hundefutter', - }, - ggdrasils_ssence = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Erdend und zugleich erfrischend, dieses Getränk bringt die Essenz des Weltenbaums direkt ins Glas.', - image = 'YggdrasilsEssence.png', - shouldClose = true, - label = 'Yggdrasil\'s Essence', - name = 'ggdrasils_ssence', - }, - weapon_heavyshotgun = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A large smoothbore gun for firing small shot at short range', - image = 'weapon_heavyshotgun.png', - label = 'Heavy Shotgun', - ammotype = 'AMMO_SHOTGUN', - name = 'weapon_heavyshotgun', - }, - heavyarmor = { - useable = true, - weight = 5000, - type = 'item', - unique = false, - description = 'Some protection won\'t hurt... right?', - image = 'armor.png', - shouldClose = true, - label = 'Verstärkte Kugelsischere Weste', - name = 'heavyarmor', - }, - thiopental = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_696-removebg-preview.png', - shouldClose = true, - label = 'Thiopental', - name = 'thiopental', - }, - macrons = { - useable = true, - weight = 50, - type = 'item', - unique = false, - description = 'bunte Leckerbissen, die den Gaumen mit süßer Freude verzaubern', - image = 'macrons.png', - shouldClose = true, - label = 'Macrons', - name = 'macrons', - }, - opium_poppy = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'Die Blume, die Träume verkauft', - image = 'opium_dry.png', - shouldClose = false, - label = 'Schlafmohn', - name = 'opium_poppy', - }, - weapontint_mk2_26 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic Purple & Lime Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic Purple & Lime Tint', - name = 'weapontint_mk2_26', - }, - vehicletrackerscanner = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'vehicletrackerscanner.png', - shouldClose = true, - label = 'Fahrzeugtracker Scanner', - name = 'vehicletrackerscanner', - }, - pistol_defaultclip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'clip_attachment.png', - shouldClose = true, - label = 'Pistolen Magazin', - name = 'pistol_defaultclip', - }, - fentanyl = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'fentanyl-removebg-preview.png', - shouldClose = true, - label = 'Fentanyl', - name = 'fentanyl', - }, - sludgie = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Gefrorene Chemie zum Trinken ^^', - image = 'sludgie.png', - shouldClose = true, - label = 'Sludgie', - name = 'sludgie', - }, - weed_ogkush_seed = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A weed seed of OG Kush', - image = 'weed_seed.png', - shouldClose = true, - label = 'OGKush Seed', - name = 'weed_ogkush_seed', - }, - perseuscamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A perseus camo for a weapon', - image = 'perseuscamo_attachment.png', - shouldClose = true, - label = 'Perseus Camo', - name = 'perseuscamo_attachment', - }, - whiskey = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'For all the thirsty out there', - image = 'whiskey.png', - shouldClose = true, - label = 'Whiskey', - name = 'whiskey', - }, - pd_keycard = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = 'Wenn du kein Cop bist Finger weg!', - image = 'pd_keycard.png', - shouldClose = false, - label = 'PD Key Card', - name = 'pd_keycard', - }, - weapontint_mk2_14 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Purple & Yellow Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Purple & Yellow Tint', - name = 'weapontint_mk2_14', - }, - dildo = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'passt gut zum Gleitgel ^^', - image = 'dildo.png', - shouldClose = true, - label = 'Dildo', - name = 'dildo', - }, - security_card_01 = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A security card... I wonder what it goes to', - image = 'security_card_01.png', - shouldClose = true, - label = 'Security Card A', - name = 'security_card_01', - }, - gg_hunting_rifleammo = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'gg_hunting_rifleammo.png', - shouldClose = true, - label = 'Jagdgewehr Munition', - name = 'gg_hunting_rifleammo', - }, - sarma = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'sarma.png', - shouldClose = true, - label = 'Sarma', - name = 'sarma', - }, - raw_wings = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'raw_wings.png', - shouldClose = true, - label = 'rohe Chickenwings', - name = 'raw_wings', - }, - mechanic_tablet = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'Das wichtigste Werkzeug', - image = 'mechanic_tablet.png', - shouldClose = false, - label = 'Petrol Head Tablet', - name = 'mechanic_tablet', - }, - cc_espresso = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'cc_espresso.png', - shouldClose = true, - label = 'Espresso', - name = 'cc_espresso', - }, - blood_1000 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'blood_100.png', - shouldClose = true, - label = 'Blut (1000ml)', - name = 'blood_1000', - }, - weapon_huntingrifle = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = '', - image = 'weapon_huntingrifle.png', - shouldClose = true, - label = 'Jagdgewehr', - name = 'weapon_huntingrifle', - }, - weapon_doubleaction = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Moderner Revolver um auf Städter zu schießen und was sich sonst noch so bewegt ^^', - image = 'revolver2.png', - label = ' Revolver', - ammotype = 'AMMO_PISTOL', - name = 'weapon_doubleaction', - }, - basketball = { - useable = false, - weight = 400, - type = 'item', - unique = true, - description = '', - image = 'basketball.png', - shouldClose = false, - label = 'Basketball', - name = 'basketball', - }, - kadis_rostbite = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Erfrischend und frostig, wie die kalte Winterluft in Skadis schneebedeckten Bergen.', - image = 'SkadisFrostbite.png', - shouldClose = true, - label = 'Skadi\'s Frostbite', - name = 'kadis_rostbite', - }, - pump = { - useable = false, - weight = 2000, - type = 'item', - unique = true, - description = '', - image = 'pump.png', - shouldClose = false, - label = 'Akku Pumpe', - name = 'pump', - }, - weapon_marksmanrifle_mk2 = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Marksmanrifle MK2', - image = 'huntingrifle2.png', - label = 'Marksman Rifle Mk II', - ammotype = 'AMMO_SNIPER', - name = 'weapon_marksmanrifle_mk2', - }, - soda_machine = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'soda_machine.png', - shouldClose = true, - label = 'Abfüllstation', - name = 'soda_machine', - }, - coke_brick = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = 'Heavy package of cocaine, mostly used for deals and takes a lot of space', - image = 'coke_brick.png', - shouldClose = true, - label = 'Coke Brick', - name = 'coke_brick', - }, - butcherknife = { - useable = false, - weight = 400, - type = 'item', - unique = true, - description = '', - image = 'butcherknife.png', - shouldClose = false, - label = 'Schlachtermesser', - name = 'butcherknife', - }, - ecola = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '"Weil dein Körper Zucker liebt – du aber nicht deinen Körper."', - image = 'ecola.png', - shouldClose = true, - label = 'E-Cola Softdrink', - name = 'ecola', - }, - newscam = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'A camera for the news', - image = 'newscam.png', - shouldClose = true, - label = 'News Camera', - name = 'newscam', - }, - drift_tuning_kit = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'drift_tuning_kit.png', - shouldClose = true, - label = 'Driftkit', - name = 'drift_tuning_kit', - }, - stoff = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'stoff.png', - shouldClose = false, - label = 'Stoff ', - name = 'stoff', - }, - chainsaw = { - useable = false, - weight = 600, - type = 'item', - unique = true, - description = 'Fichtenmoped..... Benzinbiber..... ', - image = 'chainsaw.png', - shouldClose = false, - label = 'Kettensäge', - name = 'chainsaw', - }, - smg_flashlight = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'flashlight_attachment.png', - shouldClose = true, - label = 'SMG Licht', - name = 'smg_flashlight', - }, - reinforced_handle = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Der Bodybuilder unter den Griffen', - image = 'Verstaerktergriff.png', - shouldClose = false, - label = 'Verstärkter Griff', - name = 'reinforced_handle', - }, - gun_handle = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Dein persönlicher Halt – stärker als jeder Nervenkitzel', - image = 'empu.png', - shouldClose = false, - label = 'Griffstück', - name = 'gun_handle', - }, - ephedrin = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'Deine Eintrittskarte zu einem Adrenalinschub', - image = 'ephedrine.png', - shouldClose = true, - label = 'Ephedrin Tabletten', - name = 'ephedrin', - }, - weapon_machete = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A broad, heavy knife used as a weapon', - name = 'weapon_machete', - label = 'Machete', - image = 'machete.png', - }, - nitrous = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Speed up, gas pedal! :D', - image = 'nitrous.png', - shouldClose = true, - label = 'Nitrous', - name = 'nitrous', - }, - vitaminloesung_1000 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'screenshot_696-removebg-preview.png', - shouldClose = true, - label = 'Vitaminlösung 1000', - name = 'vitaminloesung_1000', - }, - weapon_revolver = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A pistol with revolving chambers enabling several shots to be fired without reloading', - image = 'revolver.png', - label = 'Tac. Revolver', - ammotype = 'AMMO_PISTOL', - name = 'weapon_revolver', - }, - weapon_bottle = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A broken bottle', - name = 'weapon_bottle', - label = 'Broken Bottle', - image = 'weapon_bottle.png', - }, - weapon_marksmanrifle = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = '... die Sonntagsjäger fahrn in den Touristenwald ...', - image = 'screenshot_395-removebg-preview.png', - label = 'Besseres Jagdgewehr', - ammotype = 'AMMO_SNIPER', - name = 'weapon_marksmanrifle', - }, - tirerepairkit = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A kit to repair your tires', - image = 'tirerepairkit.png', - shouldClose = true, - label = 'Tire Repair Kit', - name = 'tirerepairkit', - }, - njords_tide = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Frisch wie die Seebrise und kraftvoll wie die Gezeiten des Meeres.', - image = 'NjordsTide.png', - shouldClose = true, - label = 'Njord\'s Tide', - name = 'njords_tide', - }, - dirt = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'dirt.png', - shouldClose = false, - label = 'Erde', - name = 'dirt', - }, - samsplint = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'samsplint.png', - shouldClose = true, - label = 'Samsplint', - name = 'samsplint', - }, - frenchfries = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_692-removebg-preview.png', - shouldClose = true, - label = 'French Fries', - name = 'frenchfries', - }, - salbutamol = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'salbutamol.png', - shouldClose = true, - label = 'Salbutamol', - name = 'salbutamol', - }, - jerry_can = { - useable = true, - weight = 20000, - type = 'item', - unique = false, - description = 'A can full of Fuel', - image = 'jerry_can.png', - shouldClose = true, - label = 'Jerrycan 20L', - name = 'jerry_can', - }, - raw_sausages = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'raw_sausages.png', - shouldClose = true, - label = 'rohe Bratwurst', - name = 'raw_sausages', - }, - chair = { - useable = true, - weight = 600, - type = 'item', - unique = false, - description = '', - image = 'chair.png', - shouldClose = true, - label = 'Stuhl', - name = 'chair', - }, - harness = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = 'Racing Harness so no matter what you stay in the car', - image = 'harness.png', - shouldClose = true, - label = 'Race Harness', - name = 'harness', - }, - weapon_ceramicpistol = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Ceramicpistol', - image = 'weapon_ceramicpistol.png', - label = 'Ceramic Pistol', - ammotype = 'AMMO_PISTOL', - name = 'weapon_ceramicpistol', - }, - junk_energy = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Dose mit Engery', - image = 'junk_energy.png', - shouldClose = true, - label = 'Junk Energy', - name = 'junk_energy', - }, - drum_mechanism = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Der Dreh, der alles verändert – Spannung in jeder Umdrehung', - image = 'Trommel.png', - shouldClose = false, - label = 'Trommel Mechanismus', - name = 'drum_mechanism', - }, - weapon_knuckle = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A metal guard worn over the knuckles in fighting, especially to increase the effect of the blows', - name = 'weapon_knuckle', - label = 'Knuckle', - image = 'weapon_knuckle.png', - }, - defibrillator = { - useable = true, - weight = 3000, - type = 'item', - unique = false, - description = '', - image = 'aed.png', - shouldClose = true, - label = 'Defibrillator', - name = 'defibrillator', - }, - sandwich = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'bist du dir sicher das du das essen willst?', - image = 'sandwich.png', - shouldClose = true, - label = '3 Tage altes Sandwich', - name = 'sandwich', - }, - propofol_100 = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'Propofol-00409469924-removebg-preview.png', - shouldClose = true, - label = 'Propofol (100ml)', - name = 'propofol_100', - }, - ecola_flasche = { - useable = true, - weight = 80, - type = 'item', - unique = false, - description = 'Flasche Cola', - image = 'ecolabottle.png', - shouldClose = true, - label = 'E-Cola Flasche', - name = 'ecola_flasche', - }, - weapon_microsmg = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A handheld light weight machine gun', - image = 'weapon_microsmg.png', - label = 'Micro SMG', - ammotype = 'AMMO_SMG', - name = 'weapon_microsmg', - }, - weapon_appistol = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Wie die normale Klog nur mit mehr Fuck Yeaaah!', - image = 'weapon_appistol.png', - label = ' Klog 19 A', - ammotype = 'AMMO_PISTOL', - name = 'weapon_appistol', - }, - yggdrasils_root = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = '', - image = 'YggdrasilsRoot.png', - shouldClose = true, - label = 'Yggdrasil\'s Root', - name = 'yggdrasils_root', - }, - sniper_extendedclip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'sniper_extendedclip.png', - shouldClose = true, - label = 'erw. Sniper Magazin', - name = 'sniper_extendedclip', - }, - weapon_assaultrifle_mk2 = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Assault Rifle MK2', - image = 'weapon_assaultrifle_mk2.png', - label = 'Assault Rifle Mk II', - ammotype = 'AMMO_RIFLE', - name = 'weapon_assaultrifle_mk2', - }, - weapon_bat = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Used for hitting a ball in sports (or other things)', - name = 'weapon_bat', - label = 'Bat', - image = 'weapon_bat.png', - }, - flohmittel = { - useable = true, - weight = 25, - type = 'item', - unique = false, - description = '', - image = 'Flohmittel.png', - shouldClose = true, - label = 'Flohmittel', - name = 'flohmittel', - }, - markedbills = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = 'Money?', - image = 'markedbills.png', - shouldClose = true, - label = 'Marked Money', - name = 'markedbills', - }, - metalscrap = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'Der Stoff, aus dem DIY-Träume sind', - image = 'scrap-iron.png', - shouldClose = false, - label = 'Metallschrott', - name = 'metalscrap', - }, - cc_latte = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'cc_latte.png', - shouldClose = true, - label = 'Latte Macchiato', - name = 'cc_latte', - }, - pistol_ammo = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Peng in klein', - image = 'pistol_ammo.png', - shouldClose = true, - label = 'Pistolen Munition', - name = 'pistol_ammo', - }, - sand = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'sand.png', - shouldClose = false, - label = 'Eimer mit Sand', - name = 'sand', - }, - anchovy = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'anchovy.png', - shouldClose = false, - label = 'Anchovy', - name = 'anchovy', - }, - weapon_smg_mk2 = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'SMG MK2', - image = 'highteamsmgmk2-removebg-preview.png', - label = 'SMG Mk II', - ammotype = 'AMMO_SMG', - name = 'weapon_smg_mk2', - }, - coffee = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Pump 4 Caffeine', - image = 'coffee.png', - shouldClose = true, - label = 'Kaffee Togo', - name = 'coffee', - }, - scookie = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Ein Softcookie ist ein weicher, saftiger Keks mit einer zarten Textur, der oft noch leicht warm und innen herrlich chewy ist.', - image = 'softccookie.png', - shouldClose = true, - label = 'Soft Cookie', - name = 'scookie', - }, - weapon_militaryrifle = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Militaryrifle', - image = 'weapon_assaultrifle.png', - label = 'Weapon Militaryrifle', - ammotype = 'AMMO_RIFLE', - name = 'weapon_militaryrifle', - }, - weapon_advancedrifle = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An assault version of a rapid-fire, magazine-fed automatic rifle designed for infantry use', - image = 'weapon_advancedrifle.png', - label = 'Advanced Rifle', - ammotype = 'AMMO_RIFLE', - name = 'weapon_advancedrifle', - }, - weapon_golfclub = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A club used to hit the ball in golf', - name = 'weapon_golfclub', - label = 'Golfclub', - image = 'weapon_golfclub.png', - }, - diving_gear = { - useable = true, - weight = 30000, - type = 'item', - unique = true, - description = 'An oxygen tank and a rebreather', - image = 'diving_gear.png', - shouldClose = true, - label = 'Diving Gear', - name = 'diving_gear', - }, - spikestrips = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = '', - image = 'spikestripes.png', - shouldClose = true, - label = 'Nagelband', - name = 'spikestrips', - }, - smg_holoscope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'holoscope_attachment.png', - shouldClose = true, - label = 'SMG Holoscope', - name = 'smg_holoscope', - }, - diamond_ring = { - useable = false, - weight = 1500, - type = 'item', - unique = false, - description = 'A diamond ring seems like the jackpot to me!', - image = 'diamond_ring.png', - shouldClose = true, - label = 'Diamond Ring', - name = 'diamond_ring', - }, - privcard01 = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = 'Registriert auf Mark Petrol', - image = '', - shouldClose = false, - label = 'Schlüsselkarte-0100a', - name = 'privcard01', - }, - cooked_bbq_thigh = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_bbq_thigh.png', - shouldClose = true, - label = 'gegrillte Hähnchenkeule', - name = 'cooked_bbq_thigh', - }, - deckelblendno5 = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'deckelblendno5.png', - shouldClose = false, - label = 'Deckel Blend No.5', - name = 'deckelblendno5', - }, - weapon_rayminigun = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Rayminigun', - image = 'weapon_rayminigun.png', - label = 'Widowmaker', - ammotype = 'AMMO_MINIGUN', - name = 'weapon_rayminigun', - }, - simcard = { - useable = false, - weight = 1, - type = 'item', - unique = true, - description = '„Nicht einfach eine SIM. Ein Statement für Stil – in der Welt der Empfangslosen.“', - image = 'simcard.png', - shouldClose = false, - label = 'Sim-Karte', - name = 'simcard', - }, - blackmoney_route = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', - image = 'blackmoney_route.png', - shouldClose = false, - label = 'Schwarzgeld Route', - name = 'blackmoney_route', - }, - kakao3 = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Eine Tasse heiße Schokolade mit Marshmallows ist wie ein Kuschelabend in flüssiger Form – süß, warm und himmlisch übertrieben.', - image = 'kakao3.png', - shouldClose = true, - label = 'Tasse Heiße Schokolade mit Marshmallows', - name = 'kakao3', - }, - weapon_briefcase = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A briefcase for storing important documents', - name = 'weapon_briefcase', - label = 'Briefcase', - image = 'weapon_briefcase.png', - }, - dendrogyra_coral = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Its also known as pillar coral', - image = 'dendrogyra_coral.png', - shouldClose = true, - label = 'Dendrogyra', - name = 'dendrogyra_coral', - }, - corn = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'corn.png', - shouldClose = false, - label = 'Getreide', - name = 'corn', - }, - eis_konfekt = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Eis Konfekt – der erfrischende Klassiker aus den 70er Jahren!', - image = 'ChatGPT_Image_27._Apr._2025__12_24_22-removebg-preview.png', - shouldClose = true, - label = 'Eis Konfekt', - name = 'eis_konfekt', - }, - badfruit = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'badfruit.png', - shouldClose = false, - label = 'Faules Obst', - name = 'badfruit', - }, - barrel_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A barrel for a weapon', - image = 'barrel_attachment.png', - shouldClose = true, - label = 'Barrel', - name = 'barrel_attachment', - }, - rifle_smallscope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'smallscope_attachment.png', - shouldClose = true, - label = 'MK2 Gewehr Visier klein', - name = 'rifle_smallscope', - }, - lawyerpass = { - useable = true, - weight = 0, - type = 'item', - unique = true, - description = 'Pass exclusive to lawyers to show they can represent a suspect', - image = 'lawyerpass.png', - shouldClose = false, - label = 'Lawyer Pass', - name = 'lawyerpass', - }, - pistol_extendedclip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'erw. Pistolen Magazin', - image = 'clip_attachment.png', - shouldClose = true, - label = 'pistol_extendedclip', - name = 'pistol_extendedclip', - }, - weapontint_7 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Platinum Weapon Tint', - image = 'weapontint_plat.png', - shouldClose = true, - label = 'Platinum Tint', - name = 'weapontint_7', - }, - sprunk_flasche = { - useable = true, - weight = 80, - type = 'item', - unique = false, - description = 'Flasche Zitronen Limo', - image = 'sprunk_flasche.png', - shouldClose = true, - label = 'Sprunk Flasche', - name = 'sprunk_flasche', - }, - eimdalls_lear_ight = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Ein erfrischendes, klares Getränk, das wie Heimdall’s wachsames Auge rein und belebend wirkt.', - image = 'HeimdallsClearSight.png', - shouldClose = true, - label = 'Heimdall\'s Clear Sight', - name = 'heimdalls_clear_sight', - }, - weed_ogkush = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'A weed bag with 2g OG Kush', - image = 'weed_baggy.png', - shouldClose = false, - label = 'OGKush 2g', - name = 'weed_ogkush', - }, - weapontint_mk2_7 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Classic Earth Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Classic Earth Tint', - name = 'weapontint_mk2_7', - }, - gg_hunting_animaltrap = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_hunting_animaltrap.png', - shouldClose = true, - label = 'Tierfalle', - name = 'gg_hunting_animaltrap', - }, - nacl_500 = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = '', - image = 'nacl.png', - shouldClose = true, - label = 'NACL (500ml)', - name = 'nacl_500', - }, - ironbar = { - useable = false, - weight = 2000, - type = 'item', - unique = false, - description = '', - image = 'ironbar.png', - shouldClose = false, - label = 'Eisenbarren', - name = 'ironbar', - }, - radio = { - useable = false, - weight = 600, - type = 'item', - unique = true, - description = 'You can communicate with this through a signal', - image = 'radio.png', - shouldClose = true, - label = 'Funkgerät', - name = 'radio', - }, - tims_instant_nudeln = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'der Kulinarische Blitzbesuch in Fernost', - image = 'tims_instant_nudeln.png', - shouldClose = true, - label = 'Tim\'s Instant Nudeln', - name = 'tims_instant_nudeln', - }, - attachment_bench = { - useable = true, - weight = 15000, - type = 'item', - unique = true, - description = 'A workbench for crafting attachments.', - image = 'attworkbench.png', - shouldClose = false, - label = 'Attachment Workbench', - name = 'attachment_bench', - }, - thermalscope_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A thermal scope for a weapon', - image = 'thermalscope_attachment.png', - shouldClose = true, - label = 'Thermal Scope', - name = 'thermalscope_attachment', - }, - police_stormram = { - useable = true, - weight = 18000, - type = 'item', - unique = true, - description = 'A nice tool to break into doors', - image = 'police_stormram.png', - shouldClose = true, - label = 'Stormram', - name = 'police_stormram', - }, - ecola_dose = { - useable = true, - weight = 50, - type = 'item', - unique = false, - description = 'Dose Cola', - image = 'ecola_dose.png', - shouldClose = true, - label = 'E-Cola Dose', - name = 'ecola_dose', - }, - smg_ammo = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'Kleines schnelles Peng', - image = 'smg_ammo.png', - shouldClose = true, - label = 'SMG Munition', - name = 'smg_ammo', - }, - anglegrinder = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '„Dein bester Freund, wenn’s darum geht, Dinge zu zerstören – äh, bearbeiten.“', - image = 'anglegrinder.png', - shouldClose = false, - label = 'Flex', - name = 'anglegrinder', - }, - medscope_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A medium scope for a weapon', - image = 'medscope_attachment.png', - shouldClose = true, - label = 'Medium Scope', - name = 'medscope_attachment', - }, - cash = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = 'Nur Bares ist wares...', - image = 'cash.png', - shouldClose = false, - label = 'Bargeld', - name = 'cash', - }, - weapon_mg = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An automatic gun that fires bullets in rapid succession for as long as the trigger is pressed', - image = 'weapon_mg.png', - label = 'Machinegun', - ammotype = 'AMMO_MG', - name = 'weapon_mg', - }, - halbes_haendel = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'zum Finger lecken gut ^^', - image = 'halbes_haendel.png', - shouldClose = true, - label = 'Halbes Händel', - name = 'halbes_haendel', - }, - weapon_knife = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An instrument composed of a blade fixed into a handle, used for cutting or as a weapon', - name = 'weapon_knife', - label = 'Messer', - image = 'weapon_knife.png', - }, - muffin = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'der Muffin Mann...', - image = 'ChatGPT_Image_1._Mai_2025__03_50_52-removebg-preview.png', - shouldClose = true, - label = 'Muffin', - name = 'muffin', - }, - zeckenschutzmittel = { - useable = true, - weight = 25, - type = 'item', - unique = false, - description = '', - image = 'Zeckenschutzmittel.png', - shouldClose = true, - label = 'Zeckenschutzmittel', - name = 'zeckenschutzmittel', - }, - manual_gearbox = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'Handgerissen, so gehört sich das', - image = 'manual_gearbox.png', - shouldClose = true, - label = 'Schaltgetriebe', - name = 'manual_gearbox', - }, - weapon_snspistol = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = ' So unauffällig, dass selbst der Agent manchmal vergisst, dass er sie dabei hat.', - image = 'screenshot_401-removebg-preview.png', - label = 'Durov Pistole', - ammotype = 'AMMO_PISTOL', - name = 'weapon_snspistol', - }, - flat_muzzle_brake = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A muzzle brake for a weapon', - image = 'flat_muzzle_brake.png', - shouldClose = true, - label = 'Flat Muzzle Brake', - name = 'flat_muzzle_brake', - }, - wc_cupcake = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'wc_cupcake.png', - shouldClose = true, - label = 'White Chocolate Raspberry Cupcake', - name = 'wc_cupcake', - }, - empty_nitrous_bottle = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'empty_nitrous_bottle.png', - shouldClose = true, - label = 'leere Nitro Flasche', - name = 'empty_nitrous_bottle', - }, - weed_skunk_seed = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A weed seed of Skunk', - image = 'weed_seed.png', - shouldClose = true, - label = 'Skunk Seed', - name = 'weed_skunk_seed', - }, - advancedrepairkit = { - useable = true, - weight = 4000, - type = 'item', - unique = false, - description = 'A nice toolbox with stuff to repair your vehicle', - image = 'advancedkit.png', - shouldClose = true, - label = 'Advanced Repairkit', - name = 'advancedrepairkit', - }, - waffle_icream = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Cremiges Vanilleeis, umhüllt von zwei zarten Waffelschichten – der Klassiker im Retro-Look für echte Eisliebhaber.', - image = 'waffle_icream.png', - shouldClose = true, - label = 'Sandwich Eis', - name = 'waffle_icream', - }, - donut = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Dooooonuuuuts', - image = 'donut.png', - shouldClose = true, - label = 'Donut', - name = 'donut', - }, - grilled_fish = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'grilled_fish.png', - shouldClose = true, - label = 'Gegrilltes Fischfilet', - name = 'grilled_fish', - }, - fish_and_chips = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'very british ^^', - image = 'fish_and_chips.png', - shouldClose = true, - label = 'Fish and Chips', - name = 'fish_and_chips', - }, - weapon_unarmed = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Fisticuffs', - name = 'weapon_unarmed', - label = 'Fists', - image = 'placeholder.png', - }, - marble_pop_limo = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Kult-Getränk aus Japan: Erfrischende Limonade mit fruchtigem Geschmack und der typischen Glasmurmel', - image = 'marblepop.png', - shouldClose = true, - label = 'Marble Pop Limo', - name = 'marble_pop_limo', - }, - shortened_gunbarrel = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Weniger Lauf, mehr Stil', - image = 'shotgun_barrel_compressed_better.png', - shouldClose = false, - label = 'verkürzter Waffenlauf', - name = 'shortened_gunbarrel', - }, - leopardcamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A leopard camo for a weapon', - image = 'leopardcamo_attachment.png', - shouldClose = true, - label = 'Leopard Camo', - name = 'leopardcamo_attachment', - }, - p_schnecke = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'p_schnecke.png', - shouldClose = true, - label = '', - name = 'p_schnecke', - }, - weapontint_mk2_4 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Classic Beige Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Classic Beige Tint', - name = 'weapontint_mk2_4', - }, - gg_hunting_knife_03 = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_hunting_knife_03.png', - shouldClose = true, - label = 'Premium Jagdmesser', - name = 'gg_hunting_knife_03', - }, - packtomatos = { - useable = false, - weight = 600, - type = 'item', - unique = true, - description = '', - image = 'packtomatos.png', - shouldClose = false, - label = 'Packung Tomaten', - name = 'packtomatos', - }, - shotgun_squaredmuzzle = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'comp_attachment.png', - shouldClose = true, - label = 'MK2 Shotgun Squaredmuzzle', - name = 'shotgun_squaredmuzzle', - }, - stevens_apfelmustorte = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'wie bei Oma', - image = 'stevens_apfelmustorte.png', - shouldClose = true, - label = 'Stevens Apfelmustorte', - name = 'stevens_apfelmustorte', - }, - boxgrapejuice = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'boxgrapejuice.png', - shouldClose = false, - label = 'Kiste Traubensaft', - name = 'boxgrapejuice', - }, - weapontint_mk2_17 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Bold Red Features Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Bold Red Features Tint', - name = 'weapontint_mk2_17', - }, - cc_cupcake = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'cc_cupcake.png', - shouldClose = true, - label = 'Cheesecake Cupcake', - name = 'cc_cupcake', - }, - dc_cupcake = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'dc_cupcake.png', - shouldClose = true, - label = 'Double-Chocolate Cupcake', - name = 'dc_cupcake', - }, - fishingrod = { - useable = true, - weight = 400, - type = 'item', - unique = true, - description = '', - image = 'fishingrod.png', - shouldClose = true, - label = 'Angelrute', - name = 'fishingrod', - }, - mmkc = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'mmkc.png', - shouldClose = true, - label = 'Mercimek Çorbasi', - name = 'mmkc', - }, - duct_tape = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'duct_tape.png', - shouldClose = true, - label = 'Klebeband', - name = 'duct_tape', - }, - weapon_battleaxe = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A large broad-bladed axe used in ancient warfare', - name = 'weapon_battleaxe', - label = 'Battle Axe', - image = 'weapon_battleaxe.png', - }, - meth_route = { - useable = false, - weight = 10, - type = 'item', - unique = true, - description = 'Offiziell? Dieses Dokument gibt’s nicht. Unofficially? Du bist jetzt Teil der geheimen Route – und das solltest du niemandem erzählen', - image = 'meth_route.png', - shouldClose = false, - label = 'Meth Route', - name = 'meth_route', - }, - e_kaffee = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'e_kaffee.png', - shouldClose = true, - label = 'Eiskaffee', - name = 'e_kaffee', - }, - clutch_replacement = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'clutch_replacement.png', - shouldClose = true, - label = 'Premium Kupplungssatz', - name = 'clutch_replacement', - }, - shotgun_holoscope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'holoscope_attachment.png', - shouldClose = true, - label = 'MK2 Shotgun Holovisier', - name = 'shotgun_holoscope', - }, - cheeseanachos = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Knusprige Nachos, überzogen mit cremiger, würziger Käsesauce', - image = 'ChatGPT_Image_26._Apr._2025__18_25_48-removebg-preview.png', - shouldClose = true, - label = 'Nachos mit Käsesauce', - name = 'cheeseanachos', - }, - cokebaggy = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'To get happy real quick', - image = 'cocaine_baggy.png', - shouldClose = true, - label = 'Bag of Coke', - name = 'cokebaggy', - }, - weed_purplehaze_seed = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A weed seed of Purple Haze', - image = 'weed_seed.png', - shouldClose = true, - label = 'Purple Haze Seed', - name = 'weed_purplehaze_seed', - }, - weapontint_mk2_23 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Metallic Gold Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Metallic Gold Tint', - name = 'weapontint_mk2_23', - }, - weapon_grenade = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A handheld throwable bomb', - name = 'weapon_grenade', - label = 'Grenade', - image = 'weapon_grenade.png', - }, - drum_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A drum for a weapon', - image = 'drum_attachment.png', - shouldClose = true, - label = 'Drum', - name = 'drum_attachment', - }, - antipatharia_coral = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Its also known as black corals or thorn corals', - image = 'antipatharia_coral.png', - shouldClose = true, - label = 'Antipatharia', - name = 'antipatharia_coral', - }, - salami_b = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'salami_b.png', - shouldClose = true, - label = '', - name = 'salami_b', - }, - ['sifs_golden-ale'] = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Golden und nahrhaft, wie das Feld unter der Obhut der Göttin Sif.', - image = 'SifGoldenAle.png', - shouldClose = true, - label = 'Sif\'s Golden Ale', - name = 'sifs_golden-ale', - }, - bruschetta = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'bruschetta.png', - shouldClose = true, - label = 'Bruschetta', - name = 'bruschetta', - }, - oxy = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'The Label Has Been Ripped Off', - image = 'oxy.png', - shouldClose = true, - label = 'Prescription Oxy', - name = 'oxy', - }, - flashlight_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A flashlight for a weapon', - image = 'flashlight_attachment.png', - shouldClose = true, - label = 'Flashlight', - name = 'flashlight_attachment', - }, - lean = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'Der Drink, der dich so langsam macht wie eine Schnecke auf Valium', - image = 'lean.png', - shouldClose = true, - label = 'Lean', - name = 'lean', - }, - tomato = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'tomato.png', - shouldClose = false, - label = 'Tomate', - name = 'tomato', - }, - shotgun_flashlight = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'flashlight_attachment.png', - shouldClose = true, - label = 'Shotgun Licht', - name = 'shotgun_flashlight', - }, - doj_card = { - useable = true, - weight = 10, - type = 'item', - unique = true, - description = '', - image = 'doj_card.png', - shouldClose = true, - label = 'DOJ Card', - name = 'doj_card', - }, - mettbroetchen = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'mhmm deutsches Sushi', - image = 'mettbroetchen.png', - shouldClose = true, - label = 'Mettbrötchen', - name = 'mettbroetchen', - }, - weed_amnesia = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'A weed bag with 2g Amnesia', - image = 'weed_baggy.png', - shouldClose = false, - label = 'Amnesia 2g', - name = 'weed_amnesia', - }, - weapon_briefcase_02 = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Wonderfull for nice vacation to Liberty City', - name = 'weapon_briefcase_02', - label = 'Suitcase', - image = 'weapon_briefcase2.png', - }, - bread_bait = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'bread_bait.png', - shouldClose = false, - label = 'Stück Brot', - name = 'bread_bait', - }, - deployable_light = { - useable = true, - weight = 250, - type = 'item', - unique = true, - description = '', - image = 'deployable_light.png', - shouldClose = false, - label = 'Aufsetzt Rundumleuchte', - name = 'deployable_light', - }, - salsa_nachos = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Knusprige Nachos, serviert mit frischer, würziger Salsa ', - image = 'ChatGPT_Image_26._Apr._2025__19_00_33-removebg-preview.png', - shouldClose = true, - label = 'Nachos mit Salsa', - name = 'salsa_nachos', - }, - patriotcamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A patriot camo for a weapon', - image = 'patriotcamo_attachment.png', - shouldClose = true, - label = 'Patriot Camo', - name = 'patriotcamo_attachment', - }, - weapon_grenadelauncher_smoke = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A bomb that produces a lot of smoke when it explodes', - image = 'weapon_grenadelauncher_smoke.PNG', - label = 'Smoke Grenade Launcher', - ammotype = 'AMMO_GRENADELAUNCHER', - name = 'weapon_grenadelauncher_smoke', - }, - handcuffs = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Comes in handy when people misbehave. Maybe it can be used for something else?', - image = 'handcuffs.png', - shouldClose = true, - label = 'Handschellen', - name = 'handcuffs', - }, - raw_short_ribs = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'raw_short_ribs.png', - shouldClose = true, - label = 'rohe Short Ribs', - name = 'raw_short_ribs', - }, - rifle_defaultclip = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'rifle_defaultclip.png', - shouldClose = true, - label = 'Gewehr Magazin', - name = 'rifle_defaultclip', - }, - ev_battery = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'ev_battery.png', - shouldClose = true, - label = 'EV Battery', - name = 'ev_battery', - }, - dackels = { - useable = false, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'dacklschreck.png', - shouldClose = false, - label = 'Dackelschreck', - name = 'dackels', - }, - labkey = { - useable = true, - weight = 500, - type = 'item', - unique = true, - description = 'Key for a lock...?', - image = 'labkey.png', - shouldClose = true, - label = 'Key', - name = 'labkey', - }, - aspirin = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'aspirin.png', - shouldClose = true, - label = 'Aspirin', - name = 'aspirin', - }, - cooked_short_ribs = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_short_ribs.png', - shouldClose = true, - label = 'gegrillte Short Ribs', - name = 'cooked_short_ribs', - }, - weapon_compactlauncher = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A compact grenade launcher', - name = 'weapon_compactlauncher', - label = 'Compact Launcher', - image = 'weapon_compactlauncher.png', - }, - munky_juice_ice_tea = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'Pfirsich oder Zitrone das hier die Frage...', - image = 'munky_juice_ice_tea.png', - shouldClose = true, - label = 'Munky Juice Ice Tea', - name = 'munky_juice_ice_tea', - }, - weapontint_mk2_10 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Blue Contrast Weapon Tint for MK2 Weapons', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Blue Contrast Tint', - name = 'weapontint_mk2_10', - }, - cup_beer = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'cup_beer.png', - shouldClose = true, - label = 'Becher Bier', - name = 'cup_beer', - }, - field_dressing = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'screenshot_477-removebg-preview.png', - shouldClose = true, - label = 'Verbandtuch', - name = 'field_dressing', - }, - rb_cupcake = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'rb_cupcake.png', - shouldClose = true, - label = 'Rainbow Cupcake', - name = 'rb_cupcake', - }, - heimdalls_watch = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Scharf und klar wie Heimdalls Auge, aber mit einem farbenfrohen Twist.', - image = 'HeimdallsWatch.png', - shouldClose = true, - label = 'Heimdall\'s Watch', - name = 'heimdalls_watch', - }, - surgical_kit = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = '', - image = 'surgicalkit.png', - shouldClose = true, - label = 'Näh-Set', - name = 'surgical_kit', - }, - weapon_dagger = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'A short knife with a pointed and edged blade, used as a weapon', - name = 'weapon_dagger', - label = 'Dagger', - image = 'weapon_dagger.png', - }, - lighting_controller = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'Alle Farben des Regenbogens per Knopfdruck', - image = 'lighting_controller.png', - shouldClose = false, - label = 'Neon Controller', - name = 'lighting_controller', - }, - thors_thunder_storm = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'ThorsThunderStorm.png', - shouldClose = true, - label = 'Thors Thunder Storm', - name = 'thors_thunder_storm', - }, - fishbait = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'fishbait.png', - shouldClose = false, - label = 'Köder', - name = 'fishbait', - }, - rostedcoffee = { - useable = false, - weight = 2000, - type = 'item', - unique = true, - description = '', - image = 'rostedcoffee.png', - shouldClose = false, - label = 'Sack geröstete Kaffeebohnen', - name = 'rostedcoffee', - }, - ribeye_steak = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'ribeye_steak.png', - shouldClose = true, - label = 'Ribeye Steak', - name = 'ribeye_steak', - }, - v12_engine = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'v12_engine.png', - shouldClose = true, - label = 'V12 Motor', - name = 'v12_engine', - }, - sniper_holoscope = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '', - image = 'holoscope_attachment.png', - shouldClose = true, - label = 'MK2 Sniper Holoscope', - name = 'sniper_holoscope', - }, - suppressor_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A suppressor for a weapon', - image = 'suppressor_attachment.png', - shouldClose = true, - label = 'Suppressor', - name = 'suppressor_attachment', - }, - weapon_throwingshoered = { - useable = true, - weight = 100, - type = 'weapon', - unique = true, - description = '', - image = 'weapon_throwingshoered.png', - shouldClose = true, - label = 'Schuh rot', - name = 'weapon_throwingshoered', - }, - air_filter = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'sollte das Baby wieder nach Luft schreien, einmal wechseln', - image = 'air_filter.png', - shouldClose = true, - label = 'Premium Luftfilter', - name = 'air_filter', - }, - bellend_muzzle_brake = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A muzzle brake for a weapon', - image = 'bellend_muzzle_brake.png', - shouldClose = true, - label = 'Bellend Muzzle Brake', - name = 'bellend_muzzle_brake', - }, - erz = { - useable = false, - weight = 2000, - type = 'item', - unique = false, - description = '', - image = 'erz.png', - shouldClose = false, - label = 'Metallerz', - name = 'erz', - }, - gardensicorr = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '', - image = 'gardensicorr.png', - shouldClose = false, - label = 'Gartenschere', - name = 'gardensicorr', - }, - clip_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A clip for a weapon', - image = 'clip_attachment.png', - shouldClose = true, - label = 'Clip', - name = 'clip_attachment', - }, - weapon_vintagepistol = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'An antique firearm designed to be held in one hand', - image = 'weapon_vintagepistol.png', - label = 'Vintage Pistol', - ammotype = 'AMMO_PISTOL', - name = 'weapon_vintagepistol', - }, - chemical_set = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = 'Dein persönliches Labor für Experimente, die besser nicht in der Küche stattfinden.', - image = 'lab.png', - shouldClose = false, - label = 'Chemikalien-Set', - name = 'chemical_set', - }, - gg_rabbit_pelt_03 = { - useable = false, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'gg_rabbit_pelt_03.png', - shouldClose = true, - label = 'Makelloses Kaninchenfell', - name = 'gg_rabbit_pelt_03', - }, - brushcamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A brushstroke camo for a weapon', - image = 'brushcamo_attachment.png', - shouldClose = true, - label = 'Brushstroke Camo', - name = 'brushcamo_attachment', - }, - grapejuice = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Grape juice is said to be healthy', - image = 'traubensaft.png', - shouldClose = false, - label = 'Flasche Traubensaft', - name = 'grapejuice', - }, - vapejuice = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'vapejuice.png', - shouldClose = false, - label = 'E-Liquid', - name = 'vapejuice', - }, - lokis_trickster_punch = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'LokisTricksterPunch.png', - shouldClose = true, - label = 'Lokis Trickster Punch', - name = 'lokis_trickster_punch', - }, - stonedrill = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'stonedrill.png', - shouldClose = false, - label = 'Steinbohrer', - name = 'stonedrill', - }, - weapon_license = { - useable = true, - weight = 10, - type = 'item', - unique = true, - description = '', - image = 'weapon_license.png', - shouldClose = true, - label = 'Waffenschein', - name = 'weapon_license', - }, - waffle_ice = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'waffle_ice.png', - shouldClose = true, - label = 'Waffel mit Erdbeereis', - name = 'waffle_ice', - }, - marshmallows = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Marshmallows sind wie kleine Wolken, die versehentlich in Zucker gefallen und dann beschlossen haben, für immer süß zu bleiben.', - image = 'marshmallows.png', - shouldClose = true, - label = 'Packung Marshmallows', - name = 'marshmallows', - }, - trojan_usb = { - useable = false, - weight = 0, - type = 'item', - unique = false, - description = 'Handy software to shut down some systems', - image = 'usb_device.png', - shouldClose = true, - label = 'Trojan USB', - name = 'trojan_usb', - }, - skullcamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A skull camo for a weapon', - image = 'skullcamo_attachment.png', - shouldClose = true, - label = 'Skull Camo', - name = 'skullcamo_attachment', - }, - cappuccino = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '„Cappucioni – halb Schaum, halb Koffein, 100 % Attitüde. Gebrüht wie ein Drive-By: schnell, heiß und mit ordentlich Einschlag.“', - image = 'cappuccino.png', - shouldClose = true, - label = 'Tasse Cappuccino', - name = 'cappuccino', - }, - flood_light = { - useable = true, - weight = 600, - type = 'item', - unique = false, - description = '', - image = 'flood_light.png', - shouldClose = true, - label = 'Outdoor Lampe', - name = 'flood_light', - }, - baklava = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'baklava.png', - shouldClose = true, - label = 'Baklava', - name = 'baklava', - }, - firework4 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Fireworks', - image = 'firework4.png', - shouldClose = true, - label = 'Sky Vortex', - name = 'firework4', - }, - tuna = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'tuna.png', - shouldClose = false, - label = 'Tunfisch', - name = 'tuna', - }, - lighter = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'Flamme an oder so ....', - image = 'lighter.png', - shouldClose = true, - label = 'Feuerzeug', - name = 'lighter', - }, - cooked_pork_joint = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_pork_joint.png', - shouldClose = true, - label = 'gegrillter Schweinebraten', - name = 'cooked_pork_joint', - }, - lolli = { - useable = true, - weight = 4, - type = 'item', - unique = false, - description = 'Du Lutscher ^^', - image = 'lolli.png', - shouldClose = true, - label = 'Lolli', - name = 'lolli', - }, - emptybottle = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'emptybottle.png', - shouldClose = false, - label = 'leere Flasche', - name = 'emptybottle', - }, - blue_phone = { - useable = false, - weight = 0.09999999999999432, - type = 'item', - unique = true, - description = '„Ein Akku, der genau so lange hält wie deine Aufmerksamkeitsspanne.“', - image = 'blue_phone.png', - shouldClose = false, - label = 'iFruit 12XR Blau', - name = 'blue_phone', - }, - electronickit = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = 'If you\'ve always wanted to build a robot you can maybe start here. Maybe you\'ll be the new Elon Musk?', - image = 'electronickit.png', - shouldClose = true, - label = 'Electronic Kit', - name = 'electronickit', - }, - ecola_light = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '"Weil dein Körper Zucker liebt – du aber nicht deinen Körper."', - image = 'ecola_light.png', - shouldClose = true, - label = 'E-Cola Light Softdrink', - name = 'ecola_light', - }, - tuch = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = '', - shouldClose = true, - label = 'Stofftuch', - name = 'tuch', - }, - rohmilk = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'rohmilk.png', - shouldClose = false, - label = 'Eimer mit Rohmilch', - name = 'rohmilk', - }, - goldchain = { - useable = false, - weight = 1500, - type = 'item', - unique = false, - description = 'A golden chain seems like the jackpot to me!', - image = 'goldchain.png', - shouldClose = true, - label = 'Golden Chain', - name = 'goldchain', - }, - tourniquet = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = '81khEr+-vcL._AC_SX450_-removebg-preview.png', - shouldClose = true, - label = 'Tourniquet', - name = 'tourniquet', - }, - newsbmic = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = 'A Useable BoomMic', - image = 'newsbmic.png', - shouldClose = true, - label = 'Boom Microphone', - name = 'newsbmic', - }, - weapontint_3 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Pink Weapon Tint', - image = 'weapontint_pink.png', - shouldClose = true, - label = 'Pink Tint', - name = 'weapontint_3', - }, - ornageo = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '"Weil dein Körper Zucker liebt – du aber nicht deinen Körper."', - image = 'ornageo.png', - shouldClose = true, - label = 'Orange O Tang Softdrink', - name = 'ornageo', - }, - spark_plug = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'spark_plug.png', - shouldClose = true, - label = 'Premium Zündkerzen', - name = 'spark_plug', - }, - advscope_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'An advanced scope for a weapon', - image = 'advscope_attachment.png', - shouldClose = true, - label = 'Advanced Scope', - name = 'advscope_attachment', - }, - trigger_unit = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = 'Der Schalter für Action – einmal drücken, und die Welt verändert sich', - image = 'snspistol_part_2.png', - shouldClose = false, - label = 'Abzugseinheit', - name = 'trigger_unit', - }, - skadis_hunt = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'So erfrischend und eisig wie Skadis frostige Heimat.', - image = 'SkadisHunt.png', - shouldClose = true, - label = 'Skadi\'s Hunt', - name = 'skadis_hunt', - }, - amarid = { - useable = false, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'screenshot_918-removebg-preview.png', - shouldClose = false, - label = 'Amarid Fasern', - name = 'amarid', - }, - empty_cup = { - useable = true, - weight = 6, - type = 'item', - unique = false, - description = '', - image = 'empty_cup.png', - shouldClose = true, - label = 'leerer Becher', - name = 'empty_cup', - }, - bandage = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A bandage works every time', - image = 'bandage.png', - shouldClose = true, - label = 'Bandage', - name = 'bandage', - }, - tosti = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Schmeckt fast wie selbst gemacht – wenn man sich selbst keine Mühe gibt.', - image = 'tosti.png', - shouldClose = true, - label = 'Grilled Cheese Sandwich', - name = 'tosti', - }, - weapon_raycarbine = { - useable = true, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Weapon Raycarbine', - image = 'weapon_raycarbine.png', - label = 'Unholy Hellbringer', - ammotype = 'AMMO_SMG', - name = 'weapon_raycarbine', - }, - artificial_lure = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'pb.png', - shouldClose = false, - label = 'Kunstköder', - name = 'artificial_lure', - }, - orange = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'orange.png', - shouldClose = false, - label = 'Orange', - name = 'orange', - }, - weapon_specialcarbine = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Wenn die Ar 15 nicht mehr reicht.', - image = 'weapon_specialcarbine.png', - label = 'KH 450', - ammotype = 'AMMO_RIFLE', - name = 'weapon_specialcarbine', - }, - gg_pug_bait_02 = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'gg_pug_bait_02.png', - shouldClose = true, - label = 'Illegaler Raubtierköder 2', - name = 'gg_pug_bait_02', - }, - trout = { - useable = true, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'trout.png', - shouldClose = false, - label = 'Forelle', - name = 'trout', - }, - beer = { - useable = true, - weight = 500, - type = 'item', - unique = false, - description = 'Nothing like a good cold beer!', - image = 'beer.png', - shouldClose = true, - label = 'Pißwasser Bier', - name = 'beer', - }, - potato = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = '', - image = 'potato.png', - shouldClose = false, - label = 'Kartoffel', - name = 'potato', - }, - extras_kit = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = '', - image = 'extras_kit.png', - shouldClose = true, - label = 'Fahrzeug Extras', - name = 'extras_kit', - }, - akrinor = { - useable = true, - weight = 20, - type = 'item', - unique = false, - description = '', - image = 'akrinor.png', - shouldClose = true, - label = 'Akrinor', - name = 'akrinor', - }, - cooked_kebab = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_kebab.png', - shouldClose = true, - label = 'gegrilltes Schaschlick', - name = 'cooked_kebab', - }, - woodcoal = { - useable = false, - weight = 1000, - type = 'item', - unique = false, - description = '', - image = 'woodcoal.png', - shouldClose = false, - label = 'Sack Holzkohle', - name = 'woodcoal', - }, - veh_toolbox = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Check vehicle status', - image = 'veh_toolbox.png', - shouldClose = true, - label = 'Toolbox', - name = 'veh_toolbox', - }, - coffeemug = { - useable = true, - weight = 100, - type = 'item', - unique = true, - description = '„Kaffee? Nein, das ist flüssiger Wahnsinn in \'ner Keramikgranate. Perfekt zum Durchziehen von Überfällen, Steuererklärungen oder Montagen.“', - image = 'coffeemug.png', - shouldClose = true, - label = 'Tasse Kaffee', - name = 'coffeemug', - }, - woodcamo_attachment = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'A woodland camo for a weapon', - image = 'woodcamo_attachment.png', - shouldClose = true, - label = 'Woodland Camo', - name = 'woodcamo_attachment', - }, - weapontint_0 = { - useable = true, - weight = 1000, - type = 'item', - unique = false, - description = 'Default/Black Weapon Tint', - image = 'weapontint_black.png', - shouldClose = true, - label = 'Default Tint', - name = 'weapontint_0', - }, - weed_amnesia_seed = { - useable = true, - weight = 0, - type = 'item', - unique = false, - description = 'A weed seed of Amnesia', - image = 'weed_seed.png', - shouldClose = true, - label = 'Amnesia Seed', - name = 'weed_amnesia_seed', - }, - lokum = { - useable = true, - weight = 10, - type = 'item', - unique = false, - description = '', - image = 'lokum.png', - shouldClose = true, - label = 'Lokum', - name = 'lokum', - }, - odins_mead = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = 'Ein weises Getränk, so alt wie die Geschichten von Asgard selbst.', - image = 'OdinsMead.png', - shouldClose = true, - label = ' Odin\'s Mead', - name = 'odins_mead', - }, - bikerack = { - useable = true, - weight = 1000, - type = 'item', - unique = true, - description = '', - image = 'bikerack.png', - shouldClose = true, - label = 'Fahrradträger', - name = 'bikerack', - }, - weapon_pistolxm3 = { - useable = false, - weight = 1000, - type = 'weapon', - unique = true, - description = 'Pistol XM3', - image = 'highteampistol.png', - label = 'Pistol XM3', - ammotype = 'AMMO_PISTOL', - name = 'weapon_pistolxm3', - }, - cooked_lamb_chop = { - useable = true, - weight = 200, - type = 'item', - unique = false, - description = '', - image = 'cooked_lamb_chops.png', - shouldClose = true, - label = 'gegrillte Lamkeule', - name = 'cooked_lamb_chop', - }, - lockpick = { - useable = true, - weight = 300, - type = 'item', - unique = false, - description = 'Very useful if you lose your keys a lot.. or if you want to use it for something else...', - image = 'lockpick.png', - shouldClose = true, - label = 'Dietrich', - name = 'lockpick', - }, - gunpowder = { - useable = false, - weight = 500, - type = 'item', - unique = false, - description = 'Schwarzes Pulver kann Schaden machen kann im Verdichten Zustand', - image = 'gunpowder.png', - shouldClose = false, - label = 'Schwarzpulver', - name = 'gunpowder', - }, - bauernsalat = { - useable = true, - weight = 200, - type = 'item', - unique = true, - description = 'Türkischer Bauernsalat', - image = 'corban.png', - shouldClose = true, - label = 'Çorban salatası ', - name = 'bauernsalat', - }, - iron = { - useable = false, - weight = 100, - type = 'item', - unique = false, - description = 'Handy piece of metal that you can probably use for something', - image = 'iron.png', - shouldClose = false, - label = 'Iron', - name = 'iron', - }, - gg_cougar_claw_02 = { - useable = false, - weight = 500, - type = 'item', - unique = true, - description = '', - image = 'gg_cougar_claw_02.png', - shouldClose = true, - label = 'Robuste Puma-Klaue', - name = 'gg_cougar_claw_02', - }, - fontain4 = { - shouldClose = true, - type = 'item', - description = '', - weight = 100, - label = 'Neon Fountain', - unique = false, - useable = true, - image = 'fontain4.png', - name = 'fontain4', - }, - car_wax = { - shouldClose = true, - type = 'item', - description = '', - weight = 500, - label = 'Autowachs', - unique = false, - useable = true, - image = 'car_wax.png', - name = 'car_wax', - }, - hose_reel = { - shouldClose = true, - type = 'item', - description = '', - weight = 2000, - label = 'Schlauchtrommel', - unique = false, - useable = true, - image = 'hose_reel.png', - name = 'hose_reel', - }, - hose_reel2 = { - shouldClose = true, - type = 'item', - description = '', - weight = 1000, - label = 'kleine Schlauchtrommel', - unique = false, - useable = true, - image = 'hose_reel2.png', - name = 'hose_reel2', - }, - bucket_sponge = { - shouldClose = true, - type = 'item', - description = '', - weight = 700, - label = 'Autowäsche Set Staionär', - unique = false, - useable = true, - image = 'bucket_sponge.png', - name = 'bucket_sponge', - }, - bucket_sponge2 = { - shouldClose = true, - type = 'item', - description = '', - weight = 700, - label = 'Autowäsche Set Mobil', - unique = false, - useable = true, - image = 'bucket_sponge2.png', - name = 'bucket_sponge2', - }, - stungun_ammo = { - shouldClose = true, - type = 'item', - description = '', - weight = 100, - label = 'Taser Cardridge', - unique = false, - useable = true, - image = 'stungun_ammo.png', - name = 'stungun_ammo', - }, - pdbag = { - shouldClose = true, - type = 'item', - description = '', - weight = 1000, - label = 'Ausrüstungs Tasche', - unique = true, - useable = true, - image = 'pdbag.png', - name = 'pdbag', - }, - pack_ecola = { - shouldClose = true, - type = 'item', - description = '', - weight = 1000, - label = 'Packung E-Cola', - unique = true, - useable = true, - image = 'pack_ecola.png', - name = 'pack_ecola', - }, - food_bag = { - shouldClose = true, - type = 'item', - description = 'Transportiert dein Essen und deinen Alc, egal in welcher Form ^^', - weight = 1000, - label = 'Papiertüte', - unique = true, - useable = true, - image = 'food_bag.png', - name = 'food_bag', - }, + -- Handguns + weapon_pistol = { name = 'weapon_pistol', label = 'Walther P99', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_pistol.png', unique = true, useable = false, description = 'A small firearm designed to be held in one hand' }, + weapon_pistol_mk2 = { name = 'weapon_pistol_mk2', label = 'Pistol Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_pistol_mk2.png', unique = true, useable = false, description = 'An upgraded small firearm designed to be held in one hand' }, + weapon_combatpistol = { name = 'weapon_combatpistol', label = 'Combat Pistol', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_combatpistol.png', unique = true, useable = false, description = 'A combat version small firearm designed to be held in one hand' }, + weapon_appistol = { name = 'weapon_appistol', label = 'AP Pistol', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_appistol.png', unique = true, useable = false, description = 'A small firearm designed to be held in one hand that is automatic' }, + weapon_stungun = { name = 'weapon_stungun', label = 'Taser', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_stungun.png', unique = true, useable = false, description = 'A weapon firing barbs attached by wires to batteries, causing temporary paralysis' }, + weapon_pistol50 = { name = 'weapon_pistol50', label = 'Pistol .50', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_pistol50.png', unique = true, useable = false, description = 'A .50 caliber firearm designed to be held with both hands' }, + weapon_snspistol = { name = 'weapon_snspistol', label = 'SNS Pistol', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_snspistol.png', unique = true, useable = false, description = 'A very small firearm designed to be easily concealed' }, + weapon_heavypistol = { name = 'weapon_heavypistol', label = 'Heavy Pistol', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_heavypistol.png', unique = true, useable = false, description = 'A hefty firearm designed to be held in one hand (or attempted)' }, + weapon_vintagepistol = { name = 'weapon_vintagepistol', label = 'Vintage Pistol', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_vintagepistol.png', unique = true, useable = false, description = 'An antique firearm designed to be held in one hand' }, + weapon_flaregun = { name = 'weapon_flaregun', label = 'Flare Gun', weight = 1000, type = 'weapon', ammotype = 'AMMO_FLARE', image = 'weapon_flaregun.png', unique = true, useable = false, description = 'A handgun for firing signal rockets' }, + weapon_marksmanpistol = { name = 'weapon_marksmanpistol', label = 'Marksman Pistol', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_marksmanpistol.png', unique = true, useable = false, description = 'A very accurate small firearm designed to be held in one hand' }, + weapon_revolver = { name = 'weapon_revolver', label = 'Revolver', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_revolver.png', unique = true, useable = false, description = 'A pistol with revolving chambers enabling several shots to be fired without reloading' }, + weapon_revolver_mk2 = { name = 'weapon_revolver_mk2', label = 'Violence', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_revolver_mk2.png', unique = true, useable = true, description = 'da Violence' }, + weapon_doubleaction = { name = 'weapon_doubleaction', label = 'Double Action Revolver', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_doubleaction.png', unique = true, useable = true, description = 'Double Action Revolver' }, + weapon_snspistol_mk2 = { name = 'weapon_snspistol_mk2', label = 'SNS Pistol Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_snspistol_mk2.png', unique = true, useable = true, description = 'SNS Pistol MK2' }, + weapon_raypistol = { name = 'weapon_raypistol', label = 'Up-n-Atomizer', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_raypistol.png', unique = true, useable = true, description = 'Weapon Raypistol' }, + weapon_ceramicpistol = { name = 'weapon_ceramicpistol', label = 'Ceramic Pistol', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_ceramicpistol.png', unique = true, useable = true, description = 'Weapon Ceramicpistol' }, + weapon_navyrevolver = { name = 'weapon_navyrevolver', label = 'Navy Revolver', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_navyrevolver.png', unique = true, useable = true, description = 'Weapon Navyrevolver' }, + weapon_gadgetpistol = { name = 'weapon_gadgetpistol', label = 'Perico Pistol', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_gadgetpistol.png', unique = true, useable = true, description = 'Weapon Gadgetpistol' }, + weapon_pistolxm3 = { name = 'weapon_pistolxm3', label = 'Pistol XM3', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_pistolxm3.png', unique = true, useable = true, description = 'Pistol XM3' }, + -- Submachine Guns + weapon_microsmg = { name = 'weapon_microsmg', label = 'Micro SMG', weight = 1000, type = 'weapon', ammotype = 'AMMO_SMG', image = 'weapon_microsmg.png', unique = true, useable = false, description = 'A handheld light weight machine gun' }, + weapon_smg = { name = 'weapon_smg', label = 'SMG', weight = 1000, type = 'weapon', ammotype = 'AMMO_SMG', image = 'weapon_smg.png', unique = true, useable = false, description = 'A handheld light weight machine gun' }, + weapon_smg_mk2 = { name = 'weapon_smg_mk2', label = 'SMG Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_SMG', image = 'weapon_smg_mk2.png', unique = true, useable = true, description = 'SMG MK2' }, + weapon_assaultsmg = { name = 'weapon_assaultsmg', label = 'Assault SMG', weight = 1000, type = 'weapon', ammotype = 'AMMO_SMG', image = 'weapon_assaultsmg.png', unique = true, useable = false, description = 'An assault version of a handheld light weight machine gun' }, + weapon_combatpdw = { name = 'weapon_combatpdw', label = 'Combat PDW', weight = 1000, type = 'weapon', ammotype = 'AMMO_SMG', image = 'weapon_combatpdw.png', unique = true, useable = false, description = 'A combat version of a handheld light weight machine gun' }, + weapon_machinepistol = { name = 'weapon_machinepistol', label = 'Tec-9', weight = 1000, type = 'weapon', ammotype = 'AMMO_PISTOL', image = 'weapon_machinepistol.png', unique = true, useable = false, description = 'A self-loading pistol capable of burst or fully automatic fire' }, + weapon_minismg = { name = 'weapon_minismg', label = 'Mini SMG', weight = 1000, type = 'weapon', ammotype = 'AMMO_SMG', image = 'weapon_minismg.png', unique = true, useable = false, description = 'A mini handheld light weight machine gun' }, + weapon_raycarbine = { name = 'weapon_raycarbine', label = 'Unholy Hellbringer', weight = 1000, type = 'weapon', ammotype = 'AMMO_SMG', image = 'weapon_raycarbine.png', unique = true, useable = true, description = 'Weapon Raycarbine' }, -} -TriggerEvent("__cfx_export_tgiann-inventory_Items", function(ref) - if not ref then return end - QBShared.Items = ref() -end) + -- Shotguns + weapon_pumpshotgun = { name = 'weapon_pumpshotgun', label = 'Pump Shotgun', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_pumpshotgun.png', unique = true, useable = false, description = 'A pump-action smoothbore gun for firing small shot at short range' }, + weapon_sawnoffshotgun = { name = 'weapon_sawnoffshotgun', label = 'Sawn-off Shotgun', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_sawnoffshotgun.png', unique = true, useable = false, description = 'A sawn-off smoothbore gun for firing small shot at short range' }, + weapon_assaultshotgun = { name = 'weapon_assaultshotgun', label = 'Assault Shotgun', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_assaultshotgun.png', unique = true, useable = false, description = 'An assault version of asmoothbore gun for firing small shot at short range' }, + weapon_bullpupshotgun = { name = 'weapon_bullpupshotgun', label = 'Bullpup Shotgun', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_bullpupshotgun.png', unique = true, useable = false, description = 'A compact smoothbore gun for firing small shot at short range' }, + weapon_musket = { name = 'weapon_musket', label = 'Musket', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_musket.png', unique = true, useable = false, description = 'An infantryman\'s light gun with a long barrel, typically smooth-bored, muzzleloading, and fired from the shoulder' }, + weapon_heavyshotgun = { name = 'weapon_heavyshotgun', label = 'Heavy Shotgun', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_heavyshotgun.png', unique = true, useable = false, description = 'A large smoothbore gun for firing small shot at short range' }, + weapon_dbshotgun = { name = 'weapon_dbshotgun', label = 'Double-barrel Shotgun', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_dbshotgun.png', unique = true, useable = false, description = 'A shotgun with two parallel barrels, allowing two single shots to be fired in quick succession' }, + weapon_autoshotgun = { name = 'weapon_autoshotgun', label = 'Auto Shotgun', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_autoshotgun.png', unique = true, useable = false, description = 'A shotgun capable of rapid continous fire' }, + weapon_pumpshotgun_mk2 = { name = 'weapon_pumpshotgun_mk2', label = 'Pumpshotgun Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_pumpshotgun_mk2.png', unique = true, useable = true, description = 'Pumpshotgun MK2' }, + weapon_combatshotgun = { name = 'weapon_combatshotgun', label = 'Combat Shotgun', weight = 1000, type = 'weapon', ammotype = 'AMMO_SHOTGUN', image = 'weapon_combatshotgun.png', unique = true, useable = true, description = 'Weapon Combatshotgun' }, -AddEventHandler("tgiann-inventory:itemList", function(items) - QBShared.Items = items -end) \ No newline at end of file + -- Assault Rifles + weapon_assaultrifle = { name = 'weapon_assaultrifle', label = 'Assault Rifle', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_assaultrifle.png', unique = true, useable = false, description = 'A rapid-fire, magazine-fed automatic rifle designed for infantry use' }, + weapon_assaultrifle_mk2 = { name = 'weapon_assaultrifle_mk2', label = 'Assault Rifle Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_assaultrifle_mk2.png', unique = true, useable = true, description = 'Assault Rifle MK2' }, + weapon_carbinerifle = { name = 'weapon_carbinerifle', label = 'Carbine Rifle', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_carbinerifle.png', unique = true, useable = false, description = 'A light weight automatic rifle' }, + weapon_carbinerifle_mk2 = { name = 'weapon_carbinerifle_mk2', label = 'Carbine Rifle Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_carbinerifle_mk2.png', unique = true, useable = true, description = 'Carbine Rifle MK2' }, + weapon_advancedrifle = { name = 'weapon_advancedrifle', label = 'Advanced Rifle', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_advancedrifle.png', unique = true, useable = false, description = 'An assault version of a rapid-fire, magazine-fed automatic rifle designed for infantry use' }, + weapon_specialcarbine = { name = 'weapon_specialcarbine', label = 'Special Carbine', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_specialcarbine.png', unique = true, useable = false, description = 'An extremely versatile assault rifle for any combat situation' }, + weapon_bullpuprifle = { name = 'weapon_bullpuprifle', label = 'Bullpup Rifle', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_bullpuprifle.png', unique = true, useable = false, description = 'A compact automatic assault rifle' }, + weapon_compactrifle = { name = 'weapon_compactrifle', label = 'Compact Rifle', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_compactrifle.png', unique = true, useable = false, description = 'A compact version of an assault rifle' }, + weapon_specialcarbine_mk2 = { name = 'weapon_specialcarbine_mk2', label = 'Special Carbine Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_specialcarbine_mk2.png', unique = true, useable = true, description = 'Weapon Wpecialcarbine MK2' }, + weapon_bullpuprifle_mk2 = { name = 'weapon_bullpuprifle_mk2', label = 'Bullpup Rifle Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_bullpuprifle_mk2.png', unique = true, useable = true, description = 'Bull Puprifle MK2' }, + weapon_militaryrifle = { name = 'weapon_militaryrifle', label = 'Military Rifle', weight = 1000, type = 'weapon', ammotype = 'AMMO_RIFLE', image = 'weapon_militaryrifle.png', unique = true, useable = true, description = 'Weapon Militaryrifle' }, + + -- Light Machine Guns + weapon_mg = { name = 'weapon_mg', label = 'Machinegun', weight = 1000, type = 'weapon', ammotype = 'AMMO_MG', image = 'weapon_mg.png', unique = true, useable = false, description = 'An automatic gun that fires bullets in rapid succession for as long as the trigger is pressed' }, + weapon_combatmg = { name = 'weapon_combatmg', label = 'Combat MG', weight = 1000, type = 'weapon', ammotype = 'AMMO_MG', image = 'weapon_combatmg.png', unique = true, useable = false, description = 'A combat version of an automatic gun that fires bullets in rapid succession for as long as the trigger is pressed' }, + weapon_gusenberg = { name = 'weapon_gusenberg', label = 'Thompson SMG', weight = 1000, type = 'weapon', ammotype = 'AMMO_MG', image = 'weapon_gusenberg.png', unique = true, useable = false, description = 'An automatic rifle commonly referred to as a tommy gun' }, + weapon_combatmg_mk2 = { name = 'weapon_combatmg_mk2', label = 'Combat MG Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_MG', image = 'weapon_combatmg_mk2.png', unique = true, useable = true, description = 'Weapon Combatmg MK2' }, + + -- Sniper Rifles + weapon_sniperrifle = { name = 'weapon_sniperrifle', label = 'Sniper Rifle', weight = 1000, type = 'weapon', ammotype = 'AMMO_SNIPER', image = 'weapon_sniperrifle.png', unique = true, useable = false, description = 'A high-precision, long-range rifle' }, + weapon_heavysniper = { name = 'weapon_heavysniper', label = 'Heavy Sniper', weight = 1000, type = 'weapon', ammotype = 'AMMO_SNIPER', image = 'weapon_heavysniper.png', unique = true, useable = false, description = 'An upgraded high-precision, long-range rifle' }, + weapon_marksmanrifle = { name = 'weapon_marksmanrifle', label = 'Marksman Rifle', weight = 1000, type = 'weapon', ammotype = 'AMMO_SNIPER', image = 'weapon_marksmanrifle.png', unique = true, useable = false, description = 'A very accurate single-fire rifle' }, + weapon_remotesniper = { name = 'weapon_remotesniper', label = 'Remote Sniper', weight = 1000, type = 'weapon', ammotype = 'AMMO_SNIPER_REMOTE', image = 'weapon_remotesniper.png', unique = true, useable = false, description = 'A portable high-precision, long-range rifle' }, + weapon_heavysniper_mk2 = { name = 'weapon_heavysniper_mk2', label = 'Heavy Sniper Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_SNIPER', image = 'weapon_heavysniper_mk2.png', unique = true, useable = true, description = 'Weapon Heavysniper MK2' }, + weapon_marksmanrifle_mk2 = { name = 'weapon_marksmanrifle_mk2', label = 'Marksman Rifle Mk II', weight = 1000, type = 'weapon', ammotype = 'AMMO_SNIPER', image = 'weapon_marksmanrifle_mk2.png', unique = true, useable = true, description = 'Weapon Marksmanrifle MK2' }, + + -- Heavy Weapons + weapon_rpg = { name = 'weapon_rpg', label = 'RPG', weight = 1000, type = 'weapon', ammotype = 'AMMO_RPG', image = 'weapon_rpg.png', unique = true, useable = false, description = 'A rocket-propelled grenade launcher' }, + weapon_grenadelauncher = { name = 'weapon_grenadelauncher', label = 'Grenade Launcher', weight = 1000, type = 'weapon', ammotype = 'AMMO_GRENADELAUNCHER', image = 'weapon_grenadelauncher.png', unique = true, useable = false, description = 'A weapon that fires a specially-designed large-caliber projectile, often with an explosive, smoke or gas warhead' }, + weapon_grenadelauncher_smoke = { name = 'weapon_grenadelauncher_smoke', label = 'Smoke Grenade Launcher', weight = 1000, type = 'weapon', ammotype = 'AMMO_GRENADELAUNCHER', image = 'weapon_smokegrenade.png', unique = true, useable = false, description = 'A bomb that produces a lot of smoke when it explodes' }, + weapon_minigun = { name = 'weapon_minigun', label = 'Minigun', weight = 1000, type = 'weapon', ammotype = 'AMMO_MINIGUN', image = 'weapon_minigun.png', unique = true, useable = false, description = 'A portable machine gun consisting of a rotating cluster of six barrels and capable of variable rates of fire of up to 6,000 rounds per minute' }, + weapon_firework = { name = 'weapon_firework', label = 'Firework Launcher', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_firework.png', unique = true, useable = false, description = 'A device containing gunpowder and other combustible chemicals that causes a spectacular explosion when ignited' }, + weapon_railgun = { name = 'weapon_railgun', label = 'Railgun', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_railgun.png', unique = true, useable = false, description = 'A weapon that uses electromagnetic force to launch high velocity projectiles' }, + weapon_railgunxm3 = { name = 'weapon_railgunxm3', label = 'Railgun XM3', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_railgunxm3.png', unique = true, useable = false, description = 'A weapon that uses electromagnetic force to launch high velocity projectiles' }, + weapon_hominglauncher = { name = 'weapon_hominglauncher', label = 'Homing Launcher', weight = 1000, type = 'weapon', ammotype = 'AMMO_STINGER', image = 'weapon_hominglauncher.png', unique = true, useable = false, description = 'A weapon fitted with an electronic device that enables it to find and hit a target' }, + weapon_compactlauncher = { name = 'weapon_compactlauncher', label = 'Compact Launcher', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_compactlauncher.png', unique = true, useable = false, description = 'A compact grenade launcher' }, + weapon_rayminigun = { name = 'weapon_rayminigun', label = 'Widowmaker', weight = 1000, type = 'weapon', ammotype = 'AMMO_MINIGUN', image = 'weapon_rayminigun.png', unique = true, useable = true, description = 'Weapon Rayminigun' }, + + -- Throwables + weapon_grenade = { name = 'weapon_grenade', label = 'Grenade', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_grenade.png', unique = true, useable = false, description = 'A handheld throwable bomb' }, + weapon_bzgas = { name = 'weapon_bzgas', label = 'BZ Gas', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_bzgas.png', unique = true, useable = false, description = 'A cannister of gas that causes extreme pain' }, + weapon_molotov = { name = 'weapon_molotov', label = 'Molotov', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_molotov.png', unique = true, useable = false, description = 'A crude bomb made of a bottle filled with a flammable liquid and fitted with a wick for lighting' }, + weapon_stickybomb = { name = 'weapon_stickybomb', label = 'C4', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_stickybomb.png', unique = true, useable = false, description = 'An explosive charge covered with an adhesive that when thrown against an object sticks until it explodes' }, + weapon_proxmine = { name = 'weapon_proxmine', label = 'Proxmine Grenade', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_proximitymine.png', unique = true, useable = false, description = 'A bomb placed on the ground that detonates when going within its proximity' }, + weapon_snowball = { name = 'weapon_snowball', label = 'Snowball', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_snowball.png', unique = true, useable = false, description = 'A ball of packed snow, especially one made for throwing at other people for fun' }, + weapon_pipebomb = { name = 'weapon_pipebomb', label = 'Pipe Bomb', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_pipebomb.png', unique = true, useable = false, description = 'A homemade bomb, the components of which are contained in a pipe' }, + weapon_ball = { name = 'weapon_ball', label = 'Ball', weight = 1000, type = 'weapon', ammotype = 'AMMO_BALL', image = 'weapon_ball.png', unique = true, useable = false, description = 'A solid or hollow spherical or egg-shaped object that is kicked, thrown, or hit in a game' }, + weapon_smokegrenade = { name = 'weapon_smokegrenade', label = 'Smoke Grenade', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_c4.png', unique = true, useable = false, description = 'An explosive charge that can be remotely detonated' }, + weapon_flare = { name = 'weapon_flare', label = 'Flare pistol', weight = 1000, type = 'weapon', ammotype = 'AMMO_FLARE', image = 'weapon_flare.png', unique = true, useable = false, description = 'A small pyrotechnic devices used for illumination and signalling' }, + + -- Miscellaneous + weapon_petrolcan = { name = 'weapon_petrolcan', label = 'Petrol Can', weight = 1000, type = 'weapon', ammotype = 'AMMO_PETROLCAN', image = 'weapon_petrolcan.png', unique = true, useable = false, description = 'A robust liquid container made from pressed steel' }, + weapon_fireextinguisher = { name = 'weapon_fireextinguisher', label = 'Fire Extinguisher', weight = 1000, type = 'weapon', ammotype = nil, image = 'weapon_fireextinguisher.png', unique = true, useable = false, description = 'A portable device that discharges a jet of water, foam, gas, or other material to extinguish a fire' }, + weapon_hazardcan = { name = 'weapon_hazardcan', label = 'Hazardous Jerry Can', weight = 1000, type = 'weapon', ammotype = 'AMMO_PETROLCAN', image = 'weapon_hazardcan.png', unique = true, useable = true, description = 'Weapon Hazardcan' }, + + -- Weapon Attachments + clip_attachment = { name = 'clip_attachment', label = 'Clip', weight = 1000, type = 'item', image = 'clip_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A clip for a weapon' }, + drum_attachment = { name = 'drum_attachment', label = 'Drum', weight = 1000, type = 'item', image = 'drum_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A drum for a weapon' }, + flashlight_attachment = { name = 'flashlight_attachment', label = 'Flashlight', weight = 1000, type = 'item', image = 'flashlight_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A flashlight for a weapon' }, + suppressor_attachment = { name = 'suppressor_attachment', label = 'Suppressor', weight = 1000, type = 'item', image = 'suppressor_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A suppressor for a weapon' }, + smallscope_attachment = { name = 'smallscope_attachment', label = 'Small Scope', weight = 1000, type = 'item', image = 'smallscope_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A small scope for a weapon' }, + medscope_attachment = { name = 'medscope_attachment', label = 'Medium Scope', weight = 1000, type = 'item', image = 'medscope_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A medium scope for a weapon' }, + largescope_attachment = { name = 'largescope_attachment', label = 'Large Scope', weight = 1000, type = 'item', image = 'largescope_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A large scope for a weapon' }, + holoscope_attachment = { name = 'holoscope_attachment', label = 'Holo Scope', weight = 1000, type = 'item', image = 'holoscope_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A holo scope for a weapon' }, + advscope_attachment = { name = 'advscope_attachment', label = 'Advanced Scope', weight = 1000, type = 'item', image = 'advscope_attachment.png', unique = false, useable = true, shouldClose = true, description = 'An advanced scope for a weapon' }, + nvscope_attachment = { name = 'nvscope_attachment', label = 'Night Vision Scope', weight = 1000, type = 'item', image = 'nvscope_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A night vision scope for a weapon' }, + thermalscope_attachment = { name = 'thermalscope_attachment', label = 'Thermal Scope', weight = 1000, type = 'item', image = 'thermalscope_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A thermal scope for a weapon' }, + flat_muzzle_brake = { name = 'flat_muzzle_brake', label = 'Flat Muzzle Brake', weight = 1000, type = 'item', image = 'flat_muzzle_brake.png', unique = false, useable = true, shouldClose = true, description = 'A muzzle brake for a weapon' }, + tactical_muzzle_brake = { name = 'tactical_muzzle_brake', label = 'Tactical Muzzle Brake', weight = 1000, type = 'item', image = 'tactical_muzzle_brake.png', unique = false, useable = true, shouldClose = true, description = 'A muzzle brakee for a weapon' }, + fat_end_muzzle_brake = { name = 'fat_end_muzzle_brake', label = 'Fat End Muzzle Brake', weight = 1000, type = 'item', image = 'fat_end_muzzle_brake.png', unique = false, useable = true, shouldClose = true, description = 'A muzzle brake for a weapon' }, + precision_muzzle_brake = { name = 'precision_muzzle_brake', label = 'Precision Muzzle Brake', weight = 1000, type = 'item', image = 'precision_muzzle_brake.png', unique = false, useable = true, shouldClose = true, description = 'A muzzle brake for a weapon' }, + heavy_duty_muzzle_brake = { name = 'heavy_duty_muzzle_brake', label = 'HD Muzzle Brake', weight = 1000, type = 'item', image = 'heavy_duty_muzzle_brake.png', unique = false, useable = true, shouldClose = true, description = 'A muzzle brake for a weapon' }, + slanted_muzzle_brake = { name = 'slanted_muzzle_brake', label = 'Slanted Muzzle Brake', weight = 1000, type = 'item', image = 'slanted_muzzle_brake.png', unique = false, useable = true, shouldClose = true, description = 'A muzzle brake for a weapon' }, + split_end_muzzle_brake = { name = 'split_end_muzzle_brake', label = 'Split End Muzzle Brake', weight = 1000, type = 'item', image = 'split_end_muzzle_brake.png', unique = false, useable = true, shouldClose = true, description = 'A muzzle brake for a weapon' }, + squared_muzzle_brake = { name = 'squared_muzzle_brake', label = 'Squared Muzzle Brake', weight = 1000, type = 'item', image = 'squared_muzzle_brake.png', unique = false, useable = true, shouldClose = true, description = 'A muzzle brake for a weapon' }, + bellend_muzzle_brake = { name = 'bellend_muzzle_brake', label = 'Bellend Muzzle Brake', weight = 1000, type = 'item', image = 'bellend_muzzle_brake.png', unique = false, useable = true, shouldClose = true, description = 'A muzzle brake for a weapon' }, + barrel_attachment = { name = 'barrel_attachment', label = 'Barrel', weight = 1000, type = 'item', image = 'barrel_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A barrel for a weapon' }, + grip_attachment = { name = 'grip_attachment', label = 'Grip', weight = 1000, type = 'item', image = 'grip_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A grip for a weapon' }, + comp_attachment = { name = 'comp_attachment', label = 'Compensator', weight = 1000, type = 'item', image = 'comp_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A compensator for a weapon' }, + luxuryfinish_attachment = { name = 'luxuryfinish_attachment', label = 'Luxury Finish', weight = 1000, type = 'item', image = 'luxuryfinish_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A luxury finish for a weapon' }, + digicamo_attachment = { name = 'digicamo_attachment', label = 'Digital Camo', weight = 1000, type = 'item', image = 'digicamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A digital camo for a weapon' }, + brushcamo_attachment = { name = 'brushcamo_attachment', label = 'Brushstroke Camo', weight = 1000, type = 'item', image = 'brushcamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A brushstroke camo for a weapon' }, + woodcamo_attachment = { name = 'woodcamo_attachment', label = 'Woodland Camo', weight = 1000, type = 'item', image = 'woodcamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A woodland camo for a weapon' }, + skullcamo_attachment = { name = 'skullcamo_attachment', label = 'Skull Camo', weight = 1000, type = 'item', image = 'skullcamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A skull camo for a weapon' }, + sessantacamo_attachment = { name = 'sessantacamo_attachment', label = 'Sessanta Nove Camo', weight = 1000, type = 'item', image = 'sessantacamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A sessanta nove camo for a weapon' }, + perseuscamo_attachment = { name = 'perseuscamo_attachment', label = 'Perseus Camo', weight = 1000, type = 'item', image = 'perseuscamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A perseus camo for a weapon' }, + leopardcamo_attachment = { name = 'leopardcamo_attachment', label = 'Leopard Camo', weight = 1000, type = 'item', image = 'leopardcamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A leopard camo for a weapon' }, + zebracamo_attachment = { name = 'zebracamo_attachment', label = 'Zebra Camo', weight = 1000, type = 'item', image = 'zebracamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A zebra camo for a weapon' }, + geocamo_attachment = { name = 'geocamo_attachment', label = 'Geometric Camo', weight = 1000, type = 'item', image = 'geocamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A geometric camo for a weapon' }, + boomcamo_attachment = { name = 'boomcamo_attachment', label = 'Boom Camo', weight = 1000, type = 'item', image = 'boomcamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A boom camo for a weapon' }, + patriotcamo_attachment = { name = 'patriotcamo_attachment', label = 'Patriot Camo', weight = 1000, type = 'item', image = 'patriotcamo_attachment.png', unique = false, useable = true, shouldClose = true, description = 'A patriot camo for a weapon' }, + + -- Weapon Tints + weapontint_0 = { name = 'weapontint_0', label = 'Default Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Default/Black Weapon Tint' }, + weapontint_1 = { name = 'weapontint_1', label = 'Green Tint', weight = 1000, type = 'item', image = 'weapontint_green.png', unique = false, useable = true, shouldClose = true, description = 'Green Weapon Tint' }, + weapontint_2 = { name = 'weapontint_2', label = 'Gold Tint', weight = 1000, type = 'item', image = 'weapontint_gold.png', unique = false, useable = true, shouldClose = true, description = 'Gold Weapon Tint' }, + weapontint_3 = { name = 'weapontint_3', label = 'Pink Tint', weight = 1000, type = 'item', image = 'weapontint_pink.png', unique = false, useable = true, shouldClose = true, description = 'Pink Weapon Tint' }, + weapontint_4 = { name = 'weapontint_4', label = 'Army Tint', weight = 1000, type = 'item', image = 'weapontint_army.png', unique = false, useable = true, shouldClose = true, description = 'Army Weapon Tint' }, + weapontint_5 = { name = 'weapontint_5', label = 'LSPD Tint', weight = 1000, type = 'item', image = 'weapontint_lspd.png', unique = false, useable = true, shouldClose = true, description = 'LSPD Weapon Tint' }, + weapontint_6 = { name = 'weapontint_6', label = 'Orange Tint', weight = 1000, type = 'item', image = 'weapontint_orange.png', unique = false, useable = true, shouldClose = true, description = 'Orange Weapon Tint' }, + weapontint_7 = { name = 'weapontint_7', label = 'Platinum Tint', weight = 1000, type = 'item', image = 'weapontint_plat.png', unique = false, useable = true, shouldClose = true, description = 'Platinum Weapon Tint' }, + weapontint_mk2_0 = { name = 'weapontint_mk2_0', label = 'Classic Black Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Classic Black Weapon Tint for MK2 Weapons' }, + weapontint_mk2_1 = { name = 'weapontint_mk2_1', label = 'Classic Gray Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Classic Gray Weapon Tint for MK2 Weapons' }, + weapontint_mk2_2 = { name = 'weapontint_mk2_2', label = 'Classic Two-Tone Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Classic Two-Tone Weapon Tint for MK2 Weapons' }, + weapontint_mk2_3 = { name = 'weapontint_mk2_3', label = 'Classic White Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Classic White Weapon Tint for MK2 Weapons' }, + weapontint_mk2_4 = { name = 'weapontint_mk2_4', label = 'Classic Beige Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Classic Beige Weapon Tint for MK2 Weapons' }, + weapontint_mk2_5 = { name = 'weapontint_mk2_5', label = 'Classic Green Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Classic Green Weapon Tint for MK2 Weapons' }, + weapontint_mk2_6 = { name = 'weapontint_mk2_6', label = 'Classic Blue Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Classic Blue Weapon Tint for MK2 Weapons' }, + weapontint_mk2_7 = { name = 'weapontint_mk2_7', label = 'Classic Earth Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Classic Earth Weapon Tint for MK2 Weapons' }, + weapontint_mk2_8 = { name = 'weapontint_mk2_8', label = 'Classic Brown & Black Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Classic Brown & Black Weapon Tint for MK2 Weapons' }, + weapontint_mk2_9 = { name = 'weapontint_mk2_9', label = 'Red Contrast Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Red Contrast Weapon Tint for MK2 Weapons' }, + weapontint_mk2_10 = { name = 'weapontint_mk2_10', label = 'Blue Contrast Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Blue Contrast Weapon Tint for MK2 Weapons' }, + weapontint_mk2_11 = { name = 'weapontint_mk2_11', label = 'Yellow Contrast Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Yellow Contrast Weapon Tint for MK2 Weapons' }, + weapontint_mk2_12 = { name = 'weapontint_mk2_12', label = 'Orange Contrast Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Orange Contrast Weapon Tint for MK2 Weapons' }, + weapontint_mk2_13 = { name = 'weapontint_mk2_13', label = 'Bold Pink Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Pink Weapon Tint for MK2 Weapons' }, + weapontint_mk2_14 = { name = 'weapontint_mk2_14', label = 'Bold Purple & Yellow Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Purple & Yellow Weapon Tint for MK2 Weapons' }, + weapontint_mk2_15 = { name = 'weapontint_mk2_15', label = 'Bold Orange Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Orange Weapon Tint for MK2 Weapons' }, + weapontint_mk2_16 = { name = 'weapontint_mk2_16', label = 'Bold Green & Purple Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Green & Purple Weapon Tint for MK2 Weapons' }, + weapontint_mk2_17 = { name = 'weapontint_mk2_17', label = 'Bold Red Features Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Red Features Weapon Tint for MK2 Weapons' }, + weapontint_mk2_18 = { name = 'weapontint_mk2_18', label = 'Bold Green Features Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Green Features Weapon Tint for MK2 Weapons' }, + weapontint_mk2_19 = { name = 'weapontint_mk2_19', label = 'Bold Cyan Features Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Cyan Features Weapon Tint for MK2 Weapons' }, + weapontint_mk2_20 = { name = 'weapontint_mk2_20', label = 'Bold Yellow Features Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Yellow Features Weapon Tint for MK2 Weapons' }, + weapontint_mk2_21 = { name = 'weapontint_mk2_21', label = 'Bold Red & White Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Red & White Weapon Tint for MK2 Weapons' }, + weapontint_mk2_22 = { name = 'weapontint_mk2_22', label = 'Bold Blue & White Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Bold Blue & White Weapon Tint for MK2 Weapons' }, + weapontint_mk2_23 = { name = 'weapontint_mk2_23', label = 'Metallic Gold Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic Gold Weapon Tint for MK2 Weapons' }, + weapontint_mk2_24 = { name = 'weapontint_mk2_24', label = 'Metallic Platinum Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic Platinum Weapon Tint for MK2 Weapons' }, + weapontint_mk2_25 = { name = 'weapontint_mk2_25', label = 'Metallic Gray & Lilac Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic Gray & Lilac Weapon Tint for MK2 Weapons' }, + weapontint_mk2_26 = { name = 'weapontint_mk2_26', label = 'Metallic Purple & Lime Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic Purple & Lime Weapon Tint for MK2 Weapons' }, + weapontint_mk2_27 = { name = 'weapontint_mk2_27', label = 'Metallic Red Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic Red Weapon Tint for MK2 Weapons' }, + weapontint_mk2_28 = { name = 'weapontint_mk2_28', label = 'Metallic Green Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic Green Weapon Tint for MK2 Weapons' }, + weapontint_mk2_29 = { name = 'weapontint_mk2_29', label = 'Metallic Blue Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic Blue Weapon Tint for MK2 Weapons' }, + weapontint_mk2_30 = { name = 'weapontint_mk2_30', label = 'Metallic White & Aqua Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic White & Aqua Weapon Tint for MK2 Weapons' }, + weapontint_mk2_31 = { name = 'weapontint_mk2_31', label = 'Metallic Orange & Yellow Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic Orange & Yellow Weapon Tint for MK2 Weapons' }, + weapontint_mk2_32 = { name = 'weapontint_mk2_32', label = 'Metallic Red and Yellow Tint', weight = 1000, type = 'item', image = 'weapontint_black.png', unique = false, useable = true, shouldClose = true, description = 'Metallic Red and Yellow Weapon Tint for MK2 Weapons' }, + -- ITEMS + + -- Ammo ITEMS + pistol_ammo = { name = 'pistol_ammo', label = 'Pistol ammo', weight = 200, type = 'item', image = 'pistol_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Pistols' }, + rifle_ammo = { name = 'rifle_ammo', label = 'Rifle ammo', weight = 1000, type = 'item', image = 'rifle_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Rifles' }, + smg_ammo = { name = 'smg_ammo', label = 'SMG ammo', weight = 500, type = 'item', image = 'smg_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Sub Machine Guns' }, + shotgun_ammo = { name = 'shotgun_ammo', label = 'Shotgun ammo', weight = 500, type = 'item', image = 'shotgun_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Shotguns' }, + mg_ammo = { name = 'mg_ammo', label = 'MG ammo', weight = 1000, type = 'item', image = 'mg_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Machine Guns' }, + snp_ammo = { name = 'snp_ammo', label = 'Sniper ammo', weight = 1000, type = 'item', image = 'rifle_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for Sniper Rifles' }, + emp_ammo = { name = 'emp_ammo', label = 'EMP Ammo', weight = 200, type = 'item', image = 'emp_ammo.png', unique = false, useable = true, shouldClose = true, description = 'Ammo for EMP Launcher' }, + + -- Card ITEMS + id_card = { name = 'id_card', label = 'ID Card', weight = 0, type = 'item', image = 'id_card.png', unique = true, useable = true, shouldClose = false, description = 'A card containing all your information to identify yourself' }, + driver_license = { name = 'driver_license', label = 'Drivers License', weight = 0, type = 'item', image = 'driver_license.png', unique = true, useable = true, shouldClose = false, description = 'Permit to show you can drive a vehicle' }, + lawyerpass = { name = 'lawyerpass', label = 'Lawyer Pass', weight = 0, type = 'item', image = 'lawyerpass.png', unique = true, useable = true, shouldClose = false, description = 'Pass exclusive to lawyers to show they can represent a suspect' }, + weaponlicense = { name = 'weaponlicense', label = 'Weapon License', weight = 0, type = 'item', image = 'weapon_license.png', unique = true, useable = true, shouldClose = true, description = 'Weapon License' }, + bank_card = { name = 'bank_card', label = 'Bank Card', weight = 0, type = 'item', image = 'bank_card.png', unique = true, useable = true, shouldClose = true, description = 'Used to access ATM' }, + security_card_01 = { name = 'security_card_01', label = 'Security Card A', weight = 0, type = 'item', image = 'security_card_01.png', unique = false, useable = true, shouldClose = true, description = 'A security card... I wonder what it goes to' }, + security_card_02 = { name = 'security_card_02', label = 'Security Card B', weight = 0, type = 'item', image = 'security_card_02.png', unique = false, useable = true, shouldClose = true, description = 'A security card... I wonder what it goes to' }, + + -- Eat ITEMS + tosti = { name = 'tosti', label = 'Grilled Cheese Sandwich', weight = 200, type = 'item', image = 'tosti.png', unique = false, useable = true, shouldClose = true, description = 'Nice to eat' }, + twerks_candy = { name = 'twerks_candy', label = 'Twerks', weight = 100, type = 'item', image = 'twerks_candy.png', unique = false, useable = true, shouldClose = true, description = 'Some delicious candy :O' }, + snikkel_candy = { name = 'snikkel_candy', label = 'Snikkel', weight = 100, type = 'item', image = 'snikkel_candy.png', unique = false, useable = true, shouldClose = true, description = 'Some delicious candy :O' }, + sandwich = { name = 'sandwich', label = 'Sandwich', weight = 200, type = 'item', image = 'sandwich.png', unique = false, useable = true, shouldClose = true, description = 'Nice bread for your stomach' }, + + -- Drink ITEMS + water_bottle = { name = 'water_bottle', label = 'Bottle of Water', weight = 500, type = 'item', image = 'water_bottle.png', unique = false, useable = true, shouldClose = true, description = 'For all the thirsty out there' }, + coffee = { name = 'coffee', label = 'Coffee', weight = 200, type = 'item', image = 'coffee.png', unique = false, useable = true, shouldClose = true, description = 'Pump 4 Caffeine' }, + kurkakola = { name = 'kurkakola', label = 'Cola', weight = 500, type = 'item', image = 'cola.png', unique = false, useable = true, shouldClose = true, description = 'For all the thirsty out there' }, + + -- Alcohol + beer = { name = 'beer', label = 'Beer', weight = 500, type = 'item', image = 'beer.png', unique = false, useable = true, shouldClose = true, description = 'Nothing like a good cold beer!' }, + whiskey = { name = 'whiskey', label = 'Whiskey', weight = 500, type = 'item', image = 'whiskey.png', unique = false, useable = true, shouldClose = true, description = 'For all the thirsty out there' }, + vodka = { name = 'vodka', label = 'Vodka', weight = 500, type = 'item', image = 'vodka.png', unique = false, useable = true, shouldClose = true, description = 'For all the thirsty out there' }, + grape = { name = 'grape', label = 'Grape', weight = 100, type = 'item', image = 'grape.png', unique = false, useable = true, shouldClose = false, description = 'Mmmmh yummie, grapes' }, + wine = { name = 'wine', label = 'Wine', weight = 300, type = 'item', image = 'wine.png', unique = false, useable = true, shouldClose = false, description = 'Some good wine to drink on a fine evening' }, + grapejuice = { name = 'grapejuice', label = 'Grape Juice', weight = 200, type = 'item', image = 'grapejuice.png', unique = false, useable = true, shouldClose = false, description = 'Grape juice is said to be healthy' }, + + -- Drugs + joint = { name = 'joint', label = 'Joint', weight = 0, type = 'item', image = 'joint.png', unique = false, useable = true, shouldClose = true, description = 'Sidney would be very proud at you' }, + cokebaggy = { name = 'cokebaggy', label = 'Bag of Coke', weight = 0, type = 'item', image = 'cocaine_baggy.png', unique = false, useable = true, shouldClose = true, description = 'To get happy real quick' }, + crack_baggy = { name = 'crack_baggy', label = 'Bag of Crack', weight = 0, type = 'item', image = 'crack_baggy.png', unique = false, useable = true, shouldClose = true, description = 'To get happy faster' }, + xtcbaggy = { name = 'xtcbaggy', label = 'Bag of XTC', weight = 0, type = 'item', image = 'xtc_baggy.png', unique = false, useable = true, shouldClose = true, description = 'Pop those pills baby' }, + coke_brick = { name = 'coke_brick', label = 'Coke Brick', weight = 1000, type = 'item', image = 'coke_brick.png', unique = true, useable = false, shouldClose = true, description = 'Heavy package of cocaine, mostly used for deals and takes a lot of space' }, + weed_brick = { name = 'weed_brick', label = 'Weed Brick', weight = 1000, type = 'item', image = 'weed_brick.png', unique = false, useable = false, shouldClose = true, description = '1KG Weed Brick to sell to large customers.' }, + coke_small_brick = { name = 'coke_small_brick', label = 'Coke Package', weight = 350, type = 'item', image = 'coke_small_brick.png', unique = true, useable = false, shouldClose = true, description = 'Small package of cocaine, mostly used for deals and takes a lot of space' }, + oxy = { name = 'oxy', label = 'Prescription Oxy', weight = 0, type = 'item', image = 'oxy.png', unique = false, useable = true, shouldClose = true, description = 'The Label Has Been Ripped Off' }, + meth = { name = 'meth', label = 'Meth', weight = 100, type = 'item', image = 'meth_baggy.png', unique = false, useable = true, shouldClose = true, description = 'A baggie of Meth' }, + rolling_paper = { name = 'rolling_paper', label = 'Rolling Paper', weight = 0, type = 'item', image = 'rolling_paper.png', unique = false, useable = false, shouldClose = true, description = 'Paper made specifically for encasing and smoking tobacco or cannabis.' }, + + -- Seed And Weed + weed_whitewidow = { name = 'weed_whitewidow', label = 'White Widow 2g', weight = 200, type = 'item', image = 'weed_baggy.png', unique = false, useable = true, shouldClose = false, description = 'A weed bag with 2g White Widow' }, + weed_skunk = { name = 'weed_skunk', label = 'Skunk 2g', weight = 200, type = 'item', image = 'weed_baggy.png', unique = false, useable = true, shouldClose = false, description = 'A weed bag with 2g Skunk' }, + weed_purplehaze = { name = 'weed_purplehaze', label = 'Purple Haze 2g', weight = 200, type = 'item', image = 'weed_baggy.png', unique = false, useable = true, shouldClose = false, description = 'A weed bag with 2g Purple Haze' }, + weed_ogkush = { name = 'weed_ogkush', label = 'OGKush 2g', weight = 200, type = 'item', image = 'weed_baggy.png', unique = false, useable = true, shouldClose = false, description = 'A weed bag with 2g OG Kush' }, + weed_amnesia = { name = 'weed_amnesia', label = 'Amnesia 2g', weight = 200, type = 'item', image = 'weed_baggy.png', unique = false, useable = true, shouldClose = false, description = 'A weed bag with 2g Amnesia' }, + weed_ak47 = { name = 'weed_ak47', label = 'AK47 2g', weight = 200, type = 'item', image = 'weed_baggy.png', unique = false, useable = true, shouldClose = false, description = 'A weed bag with 2g AK47' }, + weed_whitewidow_seed = { name = 'weed_whitewidow_seed', label = 'White Widow Seed', weight = 0, type = 'item', image = 'weed_seed.png', unique = false, useable = true, shouldClose = false, description = 'A weed seed of White Widow' }, + weed_skunk_seed = { name = 'weed_skunk_seed', label = 'Skunk Seed', weight = 0, type = 'item', image = 'weed_seed.png', unique = false, useable = true, shouldClose = true, description = 'A weed seed of Skunk' }, + weed_purplehaze_seed = { name = 'weed_purplehaze_seed', label = 'Purple Haze Seed', weight = 0, type = 'item', image = 'weed_seed.png', unique = false, useable = true, shouldClose = true, description = 'A weed seed of Purple Haze' }, + weed_ogkush_seed = { name = 'weed_ogkush_seed', label = 'OGKush Seed', weight = 0, type = 'item', image = 'weed_seed.png', unique = false, useable = true, shouldClose = true, description = 'A weed seed of OG Kush' }, + weed_amnesia_seed = { name = 'weed_amnesia_seed', label = 'Amnesia Seed', weight = 0, type = 'item', image = 'weed_seed.png', unique = false, useable = true, shouldClose = true, description = 'A weed seed of Amnesia' }, + weed_ak47_seed = { name = 'weed_ak47_seed', label = 'AK47 Seed', weight = 0, type = 'item', image = 'weed_seed.png', unique = false, useable = true, shouldClose = true, description = 'A weed seed of AK47' }, + empty_weed_bag = { name = 'empty_weed_bag', label = 'Empty Weed Bag', weight = 0, type = 'item', image = 'weed_baggy_empty.png', unique = false, useable = true, shouldClose = true, description = 'A small empty bag' }, + weed_nutrition = { name = 'weed_nutrition', label = 'Plant Fertilizer', weight = 2000, type = 'item', image = 'weed_nutrition.png', unique = false, useable = true, shouldClose = true, description = 'Plant nutrition' }, + + -- Material + plastic = { name = 'plastic', label = 'Plastic', weight = 100, type = 'item', image = 'plastic.png', unique = false, useable = false, shouldClose = false, description = 'RECYCLE! - Greta Thunberg 2019' }, + metalscrap = { name = 'metalscrap', label = 'Metal Scrap', weight = 100, type = 'item', image = 'metalscrap.png', unique = false, useable = false, shouldClose = false, description = 'You can probably make something nice out of this' }, + copper = { name = 'copper', label = 'Copper', weight = 100, type = 'item', image = 'copper.png', unique = false, useable = false, shouldClose = false, description = 'Nice piece of metal that you can probably use for something' }, + aluminum = { name = 'aluminum', label = 'Aluminium', weight = 100, type = 'item', image = 'aluminum.png', unique = false, useable = false, shouldClose = false, description = 'Nice piece of metal that you can probably use for something' }, + aluminumoxide = { name = 'aluminumoxide', label = 'Aluminium Powder', weight = 100, type = 'item', image = 'aluminumoxide.png', unique = false, useable = false, shouldClose = false, description = 'Some powder to mix with' }, + iron = { name = 'iron', label = 'Iron', weight = 100, type = 'item', image = 'iron.png', unique = false, useable = false, shouldClose = false, description = 'Handy piece of metal that you can probably use for something' }, + ironoxide = { name = 'ironoxide', label = 'Iron Powder', weight = 100, type = 'item', image = 'ironoxide.png', unique = false, useable = false, shouldClose = false, description = 'Some powder to mix with.' }, + steel = { name = 'steel', label = 'Steel', weight = 100, type = 'item', image = 'steel.png', unique = false, useable = false, shouldClose = false, description = 'Nice piece of metal that you can probably use for something' }, + rubber = { name = 'rubber', label = 'Rubber', weight = 100, type = 'item', image = 'rubber.png', unique = false, useable = false, shouldClose = false, description = 'Rubber, I believe you can make your own rubber ducky with it :D' }, + glass = { name = 'glass', label = 'Glass', weight = 100, type = 'item', image = 'glass.png', unique = false, useable = false, shouldClose = false, description = 'It is very fragile, watch out' }, + + -- Tools + lockpick = { name = 'lockpick', label = 'Lockpick', weight = 300, type = 'item', image = 'lockpick.png', unique = false, useable = true, shouldClose = true, description = 'Very useful if you lose your keys a lot.. or if you want to use it for something else...' }, + advancedlockpick = { name = 'advancedlockpick', label = 'Advanced Lockpick', weight = 500, type = 'item', image = 'advancedlockpick.png', unique = false, useable = true, shouldClose = true, description = 'If you lose your keys a lot this is very useful... Also useful to open your beers' }, + electronickit = { name = 'electronickit', label = 'Electronic Kit', weight = 100, type = 'item', image = 'electronickit.png', unique = false, useable = true, shouldClose = true, description = 'If you\'ve always wanted to build a robot you can maybe start here. Maybe you\'ll be the new Elon Musk?' }, + gatecrack = { name = 'gatecrack', label = 'Gatecrack', weight = 0, type = 'item', image = 'usb_device.png', unique = false, useable = false, shouldClose = true, description = 'Handy software to tear down some fences' }, + thermite = { name = 'thermite', label = 'Thermite', weight = 1000, type = 'item', image = 'thermite.png', unique = false, useable = true, shouldClose = true, description = 'Sometimes you\'d wish for everything to burn' }, + trojan_usb = { name = 'trojan_usb', label = 'Trojan USB', weight = 0, type = 'item', image = 'usb_device.png', unique = false, useable = false, shouldClose = true, description = 'Handy software to shut down some systems' }, + screwdriverset = { name = 'screwdriverset', label = 'Toolkit', weight = 1000, type = 'item', image = 'screwdriverset.png', unique = false, useable = false, shouldClose = false, description = 'Very useful to screw... screws...' }, + drill = { name = 'drill', label = 'Drill', weight = 20000, type = 'item', image = 'drill.png', unique = false, useable = false, shouldClose = false, description = 'The real deal...' }, + + -- Vehicle Tools + nitrous = { name = 'nitrous', label = 'Nitrous', weight = 1000, type = 'item', image = 'nitrous.png', unique = false, useable = true, shouldClose = true, description = 'Speed up, gas pedal! :D' }, + repairkit = { name = 'repairkit', label = 'Repairkit', weight = 2500, type = 'item', image = 'repairkit.png', unique = false, useable = true, shouldClose = true, description = 'A nice toolbox with stuff to repair your vehicle' }, + advancedrepairkit = { name = 'advancedrepairkit', label = 'Advanced Repairkit', weight = 4000, type = 'item', image = 'advancedkit.png', unique = false, useable = true, shouldClose = true, description = 'A nice toolbox with stuff to repair your vehicle' }, + cleaningkit = { name = 'cleaningkit', label = 'Cleaning Kit', weight = 250, type = 'item', image = 'cleaningkit.png', unique = false, useable = true, shouldClose = true, description = 'A microfiber cloth with some soap will let your car sparkle again!' }, + tunerlaptop = { name = 'tunerlaptop', label = 'Tunerchip', weight = 2000, type = 'item', image = 'tunerchip.png', unique = true, useable = true, shouldClose = true, description = 'With this tunerchip you can get your car on steroids... If you know what you\'re doing' }, + harness = { name = 'harness', label = 'Race Harness', weight = 1000, type = 'item', image = 'harness.png', unique = true, useable = true, shouldClose = true, description = 'Racing Harness so no matter what you stay in the car' }, + jerry_can = { name = 'jerry_can', label = 'Jerrycan 20L', weight = 20000, type = 'item', image = 'jerry_can.png', unique = false, useable = true, shouldClose = true, description = 'A can full of Fuel' }, + tirerepairkit = { name = 'tirerepairkit', label = 'Tire Repair Kit', weight = 1000, type = 'item', image = 'tirerepairkit.png', unique = false, useable = true, shouldClose = true, description = 'A kit to repair your tires' }, + + -- Mechanic Parts + veh_toolbox = { name = 'veh_toolbox', label = 'Toolbox', weight = 1000, type = 'item', image = 'veh_toolbox.png', unique = false, useable = true, shouldClose = true, description = 'Check vehicle status' }, + veh_armor = { name = 'veh_armor', label = 'Armor', weight = 1000, type = 'item', image = 'veh_armor.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle armor' }, + veh_brakes = { name = 'veh_brakes', label = 'Brakes', weight = 1000, type = 'item', image = 'veh_brakes.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle brakes' }, + veh_engine = { name = 'veh_engine', label = 'Engine', weight = 1000, type = 'item', image = 'veh_engine.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle engine' }, + veh_suspension = { name = 'veh_suspension', label = 'Suspension', weight = 1000, type = 'item', image = 'veh_suspension.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle suspension' }, + veh_transmission = { name = 'veh_transmission', label = 'Transmission', weight = 1000, type = 'item', image = 'veh_transmission.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle transmission' }, + veh_turbo = { name = 'veh_turbo', label = 'Turbo', weight = 1000, type = 'item', image = 'veh_turbo.png', unique = false, useable = true, shouldClose = true, description = 'Install vehicle turbo' }, + veh_interior = { name = 'veh_interior', label = 'Interior', weight = 1000, type = 'item', image = 'veh_interior.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle interior' }, + veh_exterior = { name = 'veh_exterior', label = 'Exterior', weight = 1000, type = 'item', image = 'veh_exterior.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle exterior' }, + veh_wheels = { name = 'veh_wheels', label = 'Wheels', weight = 1000, type = 'item', image = 'veh_wheels.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle wheels' }, + veh_neons = { name = 'veh_neons', label = 'Neons', weight = 1000, type = 'item', image = 'veh_neons.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle neons' }, + veh_xenons = { name = 'veh_xenons', label = 'Xenons', weight = 1000, type = 'item', image = 'veh_xenons.png', unique = false, useable = true, shouldClose = true, description = 'Upgrade vehicle xenons' }, + veh_tint = { name = 'veh_tint', label = 'Tints', weight = 1000, type = 'item', image = 'veh_tint.png', unique = false, useable = true, shouldClose = true, description = 'Install vehicle tint' }, + veh_plates = { name = 'veh_plates', label = 'Plates', weight = 1000, type = 'item', image = 'veh_plates.png', unique = false, useable = true, shouldClose = true, description = 'Install vehicle plates' }, + + -- Medication + firstaid = { name = 'firstaid', label = 'First Aid', weight = 2500, type = 'item', image = 'firstaid.png', unique = false, useable = true, shouldClose = true, description = 'You can use this First Aid kit to get people back on their feet' }, + bandage = { name = 'bandage', label = 'Bandage', weight = 0, type = 'item', image = 'bandage.png', unique = false, useable = true, shouldClose = true, description = 'A bandage works every time' }, + ifaks = { name = 'ifaks', label = 'ifaks', weight = 200, type = 'item', image = 'ifaks.png', unique = false, useable = true, shouldClose = true, description = 'ifaks for healing and a complete stress remover.' }, + painkillers = { name = 'painkillers', label = 'Painkillers', weight = 0, type = 'item', image = 'painkillers.png', unique = false, useable = true, shouldClose = true, description = 'For pain you can\'t stand anymore, take this pill that\'d make you feel great again' }, + walkstick = { name = 'walkstick', label = 'Walking Stick', weight = 1000, type = 'item', image = 'walkstick.png', unique = false, useable = true, shouldClose = true, description = 'Walking stick for ya\'ll grannies out there.. HAHA' }, + + -- Communication + phone = { name = 'phone', label = 'Phone', weight = 700, type = 'item', image = 'phone.png', unique = true, useable = false, shouldClose = false, description = 'Neat phone ya got there' }, + radio = { name = 'radio', label = 'Radio', weight = 2000, type = 'item', image = 'radio.png', unique = true, useable = true, shouldClose = true, description = 'You can communicate with this through a signal' }, + iphone = { name = 'iphone', label = 'iPhone', weight = 1000, type = 'item', image = 'iphone.png', unique = false, useable = false, shouldClose = true, description = 'Very expensive phone' }, + samsungphone = { name = 'samsungphone', label = 'Samsung S10', weight = 1000, type = 'item', image = 'samsungphone.png', unique = false, useable = false, shouldClose = true, description = 'Very expensive phone' }, + laptop = { name = 'laptop', label = 'Laptop', weight = 4000, type = 'item', image = 'laptop.png', unique = false, useable = false, shouldClose = true, description = 'Expensive laptop' }, + tablet = { name = 'tablet', label = 'Tablet', weight = 2000, type = 'item', image = 'tablet.png', unique = false, useable = false, shouldClose = true, description = 'Expensive tablet' }, + fitbit = { name = 'fitbit', label = 'Fitbit', weight = 500, type = 'item', image = 'fitbit.png', unique = true, useable = true, shouldClose = true, description = 'I like fitbit' }, + radioscanner = { name = 'radioscanner', label = 'Radio Scanner', weight = 1000, type = 'item', image = 'radioscanner.png', unique = false, useable = false, shouldClose = true, description = 'With this you can get some police alerts. Not 100% effective however' }, + pinger = { name = 'pinger', label = 'Pinger', weight = 1000, type = 'item', image = 'pinger.png', unique = false, useable = false, shouldClose = true, description = 'With a pinger and your phone you can send out your location' }, + cryptostick = { name = 'cryptostick', label = 'Crypto Stick', weight = 200, type = 'item', image = 'cryptostick.png', unique = true, useable = true, shouldClose = true, description = 'Why would someone ever buy money that doesn\'t exist.. How many would it contain..?' }, + + -- Theft and Jewelry + rolex = { name = 'rolex', label = 'Golden Watch', weight = 1500, type = 'item', image = 'rolex.png', unique = false, useable = false, shouldClose = true, description = 'A golden watch seems like the jackpot to me!' }, + diamond_ring = { name = 'diamond_ring', label = 'Diamond Ring', weight = 1500, type = 'item', image = 'diamond_ring.png', unique = false, useable = false, shouldClose = true, description = 'A diamond ring seems like the jackpot to me!' }, + diamond = { name = 'diamond', label = 'Diamond', weight = 1000, type = 'item', image = 'diamond.png', unique = false, useable = false, shouldClose = true, description = 'A diamond seems like the jackpot to me!' }, + goldchain = { name = 'goldchain', label = 'Golden Chain', weight = 1500, type = 'item', image = 'goldchain.png', unique = false, useable = false, shouldClose = true, description = 'A golden chain seems like the jackpot to me!' }, + tenkgoldchain = { name = 'tenkgoldchain', label = '10k Gold Chain', weight = 2000, type = 'item', image = '10kgoldchain.png', unique = false, useable = false, shouldClose = true, description = '10 carat golden chain' }, + goldbar = { name = 'goldbar', label = 'Gold Bar', weight = 7000, type = 'item', image = 'goldbar.png', unique = false, useable = false, shouldClose = true, description = 'Looks pretty expensive to me' }, + + -- Cops Tools + armor = { name = 'armor', label = 'Armor', weight = 5000, type = 'item', image = 'armor.png', unique = false, useable = true, shouldClose = true, description = 'Some protection won\'t hurt... right?' }, + heavyarmor = { name = 'heavyarmor', label = 'Heavy Armor', weight = 5000, type = 'item', image = 'armor.png', unique = false, useable = true, shouldClose = true, description = 'Some protection won\'t hurt... right?' }, + handcuffs = { name = 'handcuffs', label = 'Handcuffs', weight = 100, type = 'item', image = 'handcuffs.png', unique = false, useable = true, shouldClose = true, description = 'Comes in handy when people misbehave. Maybe it can be used for something else?' }, + police_stormram = { name = 'police_stormram', label = 'Stormram', weight = 18000, type = 'item', image = 'police_stormram.png', unique = false, useable = true, shouldClose = true, description = 'A nice tool to break into doors' }, + empty_evidence_bag = { name = 'empty_evidence_bag', label = 'Empty Evidence Bag', weight = 0, type = 'item', image = 'evidence.png', unique = false, useable = false, shouldClose = false, description = 'Used a lot to keep DNA from blood, bullet shells and more' }, + filled_evidence_bag = { name = 'filled_evidence_bag', label = 'Evidence Bag', weight = 200, type = 'item', image = 'evidence.png', unique = true, useable = false, shouldClose = false, description = 'A filled evidence bag to see who committed the crime >:(' }, + + -- Firework Tools + firework1 = { name = 'firework1', label = '2Brothers', weight = 1000, type = 'item', image = 'firework1.png', unique = false, useable = true, shouldClose = true, description = 'Fireworks' }, + firework2 = { name = 'firework2', label = 'Poppelers', weight = 1000, type = 'item', image = 'firework2.png', unique = false, useable = true, shouldClose = true, description = 'Fireworks' }, + firework3 = { name = 'firework3', label = 'WipeOut', weight = 1000, type = 'item', image = 'firework3.png', unique = false, useable = true, shouldClose = true, description = 'Fireworks' }, + firework4 = { name = 'firework4', label = 'Weeping Willow', weight = 1000, type = 'item', image = 'firework4.png', unique = false, useable = true, shouldClose = true, description = 'Fireworks' }, + + -- Sea Tools + dendrogyra_coral = { name = 'dendrogyra_coral', label = 'Dendrogyra', weight = 1000, type = 'item', image = 'dendrogyra_coral.png', unique = false, useable = false, shouldClose = true, description = 'Its also known as pillar coral' }, + antipatharia_coral = { name = 'antipatharia_coral', label = 'Antipatharia', weight = 1000, type = 'item', image = 'antipatharia_coral.png', unique = false, useable = false, shouldClose = true, description = 'Its also known as black corals or thorn corals' }, + diving_gear = { name = 'diving_gear', label = 'Diving Gear', weight = 30000, type = 'item', image = 'diving_gear.png', unique = true, useable = true, shouldClose = true, description = 'An oxygen tank and a rebreather' }, + diving_fill = { name = 'diving_fill', label = 'Diving Tube', weight = 3000, type = 'item', image = 'diving_tube.png', unique = true, useable = true, shouldClose = true, description = 'An oxygen tube and a rebreather' }, + + -- Other Tools + casinochips = { name = 'casinochips', label = 'Casino Chips', weight = 0, type = 'item', image = 'casinochips.png', unique = false, useable = false, shouldClose = false, description = 'Chips For Casino Gambling' }, + stickynote = { name = 'stickynote', label = 'Sticky note', weight = 0, type = 'item', image = 'stickynote.png', unique = true, useable = false, shouldClose = false, description = 'Sometimes handy to remember something :)' }, + moneybag = { name = 'moneybag', label = 'Money Bag', weight = 0, type = 'item', image = 'moneybag.png', unique = true, useable = true, shouldClose = true, description = 'A bag with cash' }, + parachute = { name = 'parachute', label = 'Parachute', weight = 30000, type = 'item', image = 'parachute.png', unique = true, useable = true, shouldClose = true, description = 'The sky is the limit! Woohoo!' }, + binoculars = { name = 'binoculars', label = 'Binoculars', weight = 600, type = 'item', image = 'binoculars.png', unique = false, useable = true, shouldClose = true, description = 'Sneaky Breaky...' }, + lighter = { name = 'lighter', label = 'Lighter', weight = 0, type = 'item', image = 'lighter.png', unique = false, useable = false, shouldClose = true, description = 'On new years eve a nice fire to stand next to' }, + certificate = { name = 'certificate', label = 'Certificate', weight = 0, type = 'item', image = 'certificate.png', unique = false, useable = false, shouldClose = true, description = 'Certificate that proves you own certain stuff' }, + markedbills = { name = 'markedbills', label = 'Marked Money', weight = 1000, type = 'item', image = 'markedbills.png', unique = true, useable = false, shouldClose = true, description = 'Money?' }, + labkey = { name = 'labkey', label = 'Key', weight = 500, type = 'item', image = 'labkey.png', unique = true, useable = true, shouldClose = true, description = 'Key for a lock...?' }, + printerdocument = { name = 'printerdocument', label = 'Document', weight = 500, type = 'item', image = 'printerdocument.png', unique = true, useable = true, shouldClose = true, description = 'A nice document' }, + newscam = { name = 'newscam', label = 'News Camera', weight = 100, type = 'item', image = 'newscam.png', unique = true, useable = true, shouldClose = true, description = 'A camera for the news' }, + newsmic = { name = 'newsmic', label = 'News Microphone', weight = 100, type = 'item', image = 'newsmic.png', unique = true, useable = true, shouldClose = true, description = 'A microphone for the news' }, + newsbmic = { name = 'newsbmic', label = 'Boom Microphone', weight = 100, type = 'item', image = 'newsbmic.png', unique = true, useable = true, shouldClose = true, description = 'A Useable BoomMic' }, + + -- Crafting table's + item_bench = {name = "item_bench", label = "Workbench", weight = 15000, type = "item", image = "workbench.png", unique = true, useable = true, shouldClose = false, combinable = nil, description = "A workbench to craft items."}, + attachment_bench = {name = "attachment_bench", label = "Attachment Workbench", weight = 15000, type = "item", image = "attworkbench.png", unique = true, useable = true, shouldClose = false, combinable = nil, description = "A workbench for crafting attachments."}, + +} \ No newline at end of file diff --git a/resources/[qb]/qb-core/shared/jobs.lua b/resources/[qb]/qb-core/shared/jobs.lua index 798227c55..8575b046a 100644 --- a/resources/[qb]/qb-core/shared/jobs.lua +++ b/resources/[qb]/qb-core/shared/jobs.lua @@ -1,11 +1,142 @@ QBShared = QBShared or {} QBShared.ForceJobDefaultDutyAtLogin = true -- true: Force duty state to jobdefaultDuty | false: set duty state from database last saved +QBShared.Jobs = { + unemployed = { label = 'Civilian', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Freelancer', payment = 10 } } }, + bus = { label = 'Bus', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Driver', payment = 50 } } }, + judge = { label = 'Honorary', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Judge', payment = 100 } } }, + lawyer = { label = 'Law Firm', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Associate', payment = 50 } } }, + reporter = { label = 'Reporter', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Journalist', payment = 50 } } }, + trucker = { label = 'Trucker', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Driver', payment = 50 } } }, + tow = { label = 'Towing', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Driver', payment = 50 } } }, + garbage = { label = 'Garbage', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Collector', payment = 50 } } }, + vineyard = { label = 'Vineyard', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Picker', payment = 50 } } }, + hotdog = { label = 'Hotdog', defaultDuty = true, offDutyPay = false, grades = { ['0'] = { name = 'Sales', payment = 50 } } }, -QBShared.Jobs = {} - - -- Jobs Creator integration (jobs_creator) - RegisterNetEvent("jobs_creator:injectJobs", function(jobs) - if IsDuplicityVersion() and type(source) == "number" and source > 0 then return end - QBShared.Jobs = jobs - end) - \ No newline at end of file + police = { + label = 'Law Enforcement', + type = 'leo', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'Officer', payment = 75 }, + ['2'] = { name = 'Sergeant', payment = 100 }, + ['3'] = { name = 'Lieutenant', payment = 125 }, + ['4'] = { name = 'Chief', isboss = true, payment = 150 }, + }, + }, + ambulance = { + label = 'EMS', + type = 'ems', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'Paramedic', payment = 75 }, + ['2'] = { name = 'Doctor', payment = 100 }, + ['3'] = { name = 'Surgeon', payment = 125 }, + ['4'] = { name = 'Chief', isboss = true, payment = 150 }, + }, + }, + realestate = { + label = 'Real Estate', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'House Sales', payment = 75 }, + ['2'] = { name = 'Business Sales', payment = 100 }, + ['3'] = { name = 'Broker', payment = 125 }, + ['4'] = { name = 'Manager', isboss = true, payment = 150 }, + }, + }, + taxi = { + label = 'Taxi', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'Driver', payment = 75 }, + ['2'] = { name = 'Event Driver', payment = 100 }, + ['3'] = { name = 'Sales', payment = 125 }, + ['4'] = { name = 'Manager', isboss = true, payment = 150 }, + }, + }, + cardealer = { + label = 'Vehicle Dealer', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'Showroom Sales', payment = 75 }, + ['2'] = { name = 'Business Sales', payment = 100 }, + ['3'] = { name = 'Finance', payment = 125 }, + ['4'] = { name = 'Manager', isboss = true, payment = 150 }, + }, + }, + mechanic = { + label = 'LS Customs', + type = 'mechanic', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'Novice', payment = 75 }, + ['2'] = { name = 'Experienced', payment = 100 }, + ['3'] = { name = 'Advanced', payment = 125 }, + ['4'] = { name = 'Manager', isboss = true, payment = 150 }, + }, + }, + mechanic2 = { + label = 'LS Customs', + type = 'mechanic', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'Novice', payment = 75 }, + ['2'] = { name = 'Experienced', payment = 100 }, + ['3'] = { name = 'Advanced', payment = 125 }, + ['4'] = { name = 'Manager', isboss = true, payment = 150 }, + }, + }, + mechanic3 = { + label = 'LS Customs', + type = 'mechanic', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'Novice', payment = 75 }, + ['2'] = { name = 'Experienced', payment = 100 }, + ['3'] = { name = 'Advanced', payment = 125 }, + ['4'] = { name = 'Manager', isboss = true, payment = 150 }, + }, + }, + beeker = { + label = 'Beeker\'s Garage', + type = 'mechanic', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'Novice', payment = 75 }, + ['2'] = { name = 'Experienced', payment = 100 }, + ['3'] = { name = 'Advanced', payment = 125 }, + ['4'] = { name = 'Manager', isboss = true, payment = 150 }, + }, + }, + bennys = { + label = 'Benny\'s Original Motor Works', + type = 'mechanic', + defaultDuty = true, + offDutyPay = false, + grades = { + ['0'] = { name = 'Recruit', payment = 50 }, + ['1'] = { name = 'Novice', payment = 75 }, + ['2'] = { name = 'Experienced', payment = 100 }, + ['3'] = { name = 'Advanced', payment = 125 }, + ['4'] = { name = 'Manager', isboss = true, payment = 150 }, + }, + }, +} diff --git a/resources/[qb]/qb-core/shared/vehicles.lua b/resources/[qb]/qb-core/shared/vehicles.lua index 35bbe72e0..b745c09ee 100644 --- a/resources/[qb]/qb-core/shared/vehicles.lua +++ b/resources/[qb]/qb-core/shared/vehicles.lua @@ -741,14 +741,14 @@ local Vehicles = { { model = 'barracks3', name = 'Barracks', brand = 'HVY', price = 100000, category = 'military', type = 'automobile', shop = 'none' }, --- Commercial (20) { model = 'cerberus', name = 'Apocalypse Cerberus', brand = 'MTL', price = 100000, category = 'commercial', type = 'automobile', shop = 'none' }, - { model = 'pounder2', name = 'Pounder Custom', brand = 'Jobuilt', price = 55000, category = 'commercial', type = 'automobile', shop = 'truck' }, + { model = 'pounder2', name = 'Pounder Custom', brand = 'MTL', price = 55000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'mule4', name = 'Mule Custom', brand = 'Maibatsu', price = 40000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'phantom3', name = 'Phantom Custom', brand = 'Jobuilt', price = 110000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'hauler2', name = 'Hauler Custom', brand = 'Jobuilt', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'phantom2', name = 'Phantom Wedge', brand = 'Jobuilt', price = 100000, category = 'commercial', type = 'automobile', shop = 'none' }, { model = 'mule5', name = 'Mule (Heist)', brand = 'Maibatsu', price = 40000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'stockade', name = 'Stockade', brand = 'Brute', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, - { model = 'pounder', name = 'Pounder', brand = 'Jobuilt', price = 55000, category = 'commercial', type = 'automobile', shop = 'truck' }, + { model = 'pounder', name = 'Pounder', brand = 'MTL', price = 55000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'phantom', name = 'Phantom', brand = 'Jobuilt', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'packer', name = 'Packer', brand = 'MTL', price = 100000, category = 'commercial', type = 'automobile', shop = 'truck' }, { model = 'mule', name = 'Mule', brand = 'Maibatsu', price = 40000, category = 'commercial', type = 'automobile', shop = 'truck' }, diff --git a/resources/[qb]/qb-core/shared/weapons.lua b/resources/[qb]/qb-core/shared/weapons.lua index c02bda2ae..823dda814 100644 --- a/resources/[qb]/qb-core/shared/weapons.lua +++ b/resources/[qb]/qb-core/shared/weapons.lua @@ -26,10 +26,7 @@ QBShared.Weapons = { [`weapon_bread`] = { name = 'weapon_bread', label = 'Baquette', weapontype = 'Melee', ammotype = nil, damagereason = 'Melee killed / Whacked / Executed / Beat down / Murdered / Battered' }, [`weapon_stone_hatchet`] = { name = 'weapon_stone_hatchet', label = 'Stone Hatchet', weapontype = 'Melee', ammotype = nil, damagereason = 'Knifed / Stabbed / Eviscerated' }, [`weapon_candycane`] = { name = 'weapon_candycane', label = 'Candy Cane', weapontype = 'Melee', ammotype = nil, damagereason = 'Melee Killed / Whacked / Executed / Beat down / Musrdered / Battered / Candy Caned' }, - [`weapon_colbaton`] = { name = 'weapon_colbaton', label = 'Teleskopschlagstock', weapontype = 'Melee', ammotype = nil, damagereason = 'Melee killed / Whacked / Executed / Beat down / Murdered / Battered' }, - [`weapon_pocketlight`] = { name = 'weapon_pocketlight', label = 'kleine Taschenlampe', weapontype = 'Melee', ammotype = nil, damagereason = 'Melee killed / Whacked / Executed / Beat down / Murdered / Battered' }, - - + -- Handguns [`weapon_pistol`] = { name = 'weapon_pistol', label = 'Pistol', weapontype = 'Pistol', ammotype = 'AMMO_PISTOL', damagereason = 'Pistoled / Blasted / Plugged / Bust a cap in' }, [`weapon_pistol_mk2`] = { name = 'weapon_pistol_mk2', label = 'Pistol Mk2', weapontype = 'Pistol', ammotype = 'AMMO_PISTOL', damagereason = 'Pistoled / Blasted / Plugged / Bust a cap in' }, @@ -102,8 +99,6 @@ QBShared.Weapons = { [`weapon_marksmanrifle`] = { name = 'weapon_marksmanrifle', label = 'Marksman Rifle', weapontype = 'Sniper Rifle', ammotype = 'AMMO_SNIPER', damagereason = 'Sniped / Picked off / Scoped' }, [`weapon_marksmanrifle_mk2`] = { name = 'weapon_marksmanrifle_mk2', label = 'Marksman Rifle MK2', weapontype = 'Sniper Rifle', ammotype = 'AMMO_SNIPER', damagereason = 'Sniped / Picked off / Scoped' }, [`weapon_remotesniper`] = { name = 'weapon_remotesniper', label = 'Remote Sniper', weapontype = 'Sniper Rifle', ammotype = 'AMMO_SNIPER_REMOTE', damagereason = 'Sniped / Picked off / Scoped' }, - [`weapon_huntingrifle`] = { name = 'weapon_huntingrifle', label = 'Hunting Rifle', weapontype = 'Sniper Rifle', ammotype = 'AMMO_SNIPER', damagereason = 'Sniped / Picked off / Scoped' }, -- GG Hunting - [`weapon_crossbow`] = { name = 'weapon_crossbow', label = 'Hunting Crossbow', weapontype = 'Sniper Rifle', ammotype = 'AMMO_SNIPER', damagereason = 'Sniped / Picked off / Scoped' }, -- GG Hunting -- Heavy Weapons [`weapon_rpg`] = { name = 'weapon_rpg', label = 'RPG', weapontype = 'Heavy Weapons', ammotype = 'AMMO_RPG', damagereason = 'Killed / Exploded / Obliterated / Destroyed / Erased / Annihilated' }, @@ -129,8 +124,7 @@ QBShared.Weapons = { [`weapon_ball`] = { name = 'weapon_ball', label = 'Ball', weapontype = 'Throwable', ammotype = 'AMMO_BALL', damagereason = 'Died' }, [`weapon_smokegrenade`] = { name = 'weapon_smokegrenade', label = 'Smoke Grenade', weapontype = 'Throwable', ammotype = nil, damagereason = 'Died' }, [`weapon_flare`] = { name = 'weapon_flare', label = 'Flare pistol', weapontype = 'Throwable', ammotype = 'AMMO_FLARE', damagereason = 'Died' }, - [`weapon_throwingshoered`] = { name = 'weapon_throwingshoered', label = 'Schuh rot', weapontype = 'Throwable', ammotype = 'AMMO_BALL', damagereason = 'Died' }, - + -- Miscellaneous [`weapon_petrolcan`] = { name = 'weapon_petrolcan', label = 'Petrol Can', weapontype = 'Miscellaneous', ammotype = 'AMMO_PETROLCAN', damagereason = 'Died' }, [`gadget_parachute`] = { name = 'gadget_parachute', label = 'Parachute', weapontype = 'Miscellaneous', ammotype = nil, damagereason = 'Died' },