JixelPatterns
  • JixelPatterns Documentation
  • Troubleshooting
    • Common Issues
    • Setting Up Locations
    • FAQ
  • Dependency
    • Jim_Bridge
      • Animal Ped Support
      • Script Helpers
      • Loader Functions
      • Callbacks
      • Cameras
      • Context Menus
      • Crafting
      • DrawText
      • Dui Functions
      • Input Creator
      • Inventories
      • Job Functions
      • Make Functions
      • Meta Handlers
      • Notifications
      • Phones
      • Player Functions
      • Poly Zones
      • Progress Bars
      • Scale Entity
      • Shops
      • Skillcheck
      • Society Banking
      • Stash Control
      • Targets
      • Vehicles
      • Wrapper Functions
      • Scaleforms
  • Paid Assets
    • Jim-Mechanic
      • Common Issues
      • Installation
      • Locations
        • Creating a Location
      • Nitrous
      • Harness + Seatbelt
      • Emergency Repair Bench
      • Odometer
      • Speedometer
      • Performance Mods
      • Preview System
      • Repair System
      • Car Lifts
      • Plate Change
      • Push Vehicle
      • Stancer Kit
      • Vehicle Seat Picker
    • Jim-Bakery
      • Installation
    • Jim-BeanMachine
      • Installation
    • Jim-BurgerShot
      • Installation
    • Jim-CatCafe
      • Installation
    • Jim-Henhouse
      • Installation
    • Jim-PizzaThis
      • Installation
    • Jim-Popsdiner
      • Installation
  • Free Assets
    • Jim-Mining
      • Installation
      • How To Use
        • Mining
        • Stone Washing
        • Gold Panning
    • Jim-Recycle
      • Installation
      • How To Use
        • Recycling
        • Dumpster Diving
        • Scrapping
    • Jim-Payments
      • Installation
      • How To Use
    • Jim-Shops
      • Installation
      • How To Use
    • Jim-Boarding
      • Installation
      • How To Use
    • Jim-Trains
      • Installation
      • How To Use
    • Jim-Consumbles
      • Installation
      • How To Use
    • Jim-DJBooth
      • Installation
      • How To Use
    • Jim-JobGarage
      • Installation
      • How To Use
    • Jim-Chairs
      • Installation
    • Jim-Notepad
      • Installation
      • How To Use
Powered by GitBook
On this page
  1. Troubleshooting

Common Issues

Failed to validate resource

This can be a number of things:

  • The files have been corrupted during upload to your VPS server

  • This can be fixed by switching to WinSCP to upload files as others like filezilla can sometimes corrupt encrypted files during transfer (like the .fxap file which is needed to validate the script in your server)

  • Another possible reason is incorrect file permissions or ownership settings on the server, which can prevent the server from accessing necessary files.

  • Additionally, outdated or incompatible server scripts and dependencies can lead to validation failures. Ensuring all dependencies are up-to-date and correctly configured can help mitigate this issue.

  • Sometimes simply restarting your server may fix the issue and allow the resources to be usable

My inventory isn't supported.

So, I've tried to add support for several major inventory systems

  • QB-Inventory (Old and New)

  • PS-Inventory (Old and New)

  • OX_Inventory

  • QS-Inventory

  • Core_Inventory

  • CodeM-Inventory

  • Origen_inventory

  • Tgiann-inventory

But there are so many out there, i keep hearing about a new one every day

You are welcome to make a fork of jim_bridge on github and add support for your inventory so others can use it, its why its open source <3

CodeM-inventory isn't compatiable with externally added shops, you need to manually add them in the inventory and trigger them another way for now

Load Order

This is a very common issue, to the point it actually concerns me 🫂

The order of the scripts loaded in your server is very important

Framework scripts need to come first, Dependencies for other scripts come second

For example heres my QBCore test server load order:

# These resources will start by default.
ensure mapmanager
ensure chat
ensure spawnmanager
ensure sessionmanager
ensure basic-gamemode
ensure hardcap
ensure baseevents

# QBCore & Extra stuff
ensure qb-core             ## Core Folder First
ensure [qb]                ## Framework files second
ensure [standalone]        ## Other scripts that need to load after core
                           ## For Example Jim_Bridge
                           
ensure [voice]             ## More "other" scripts
ensure [defaultmaps]       ## MLOs
ensure [mlos]              ## More MLOs
ensure [props]             ## Props

ensure [jimextras]         ## Start loading the rest of your scripts 
ensure [jim]               ## For example: Jim-Mining, Jim-Mechanic

As shown above

  1. qb-core first

  2. then standalone scripts

  3. then MLOs

  4. then Props

  5. then load the rest of your scripts

Scipts in a folder like [jim] when started this way will load the resrouces inside alphabetically, not randomly

So placing a dependancy in these files can make it load after the resource, which is why its recommended to place them in separate folders to load before others

Why am I getting this error?

Most likely answer, you aren’t on the most recent version.

If you have updated to the most recent version, ask in the support channels of my discord

Also, I'm sorry, but it I don’t care if you’ve “made edits to the script for my server”, that was your choice and I can’t do anything about that.

If you edit what you shouldn't and don't know what your doing, then start asking why its not working, I can't help.

Always check the changelogs, simple as.

When I add new items, files or instructions and announce it in these, if you don't read and add it, that's your fault. I don't write changelogs for fun

If you want the fixes, from the latest version, you need to update to the latest version. I’m not here to sit and fix everyone’s slightly edited scripts as well as the official one.

I want my scripts to work, yes, but when you start editing it and changing it around you should take responsibility for how it functions. Not sit and demand a refund because it broke your server.

PreviousJixelPatterns DocumentationNextSetting Up Locations

Last updated 3 days ago