Frozen Wiki
Website
  • Documentation
  • 🔹Scripts
    • Frozen Medic Job
      • Installation
      • Dependencies
      • Exports
      • State Bags
      • Customizations
      • Common Issues
        • QBCore
    • Frozen Crutch
    • Frozen Scratch Ticket
      • Installations
    • Frozen Police Job
      • Installation
      • Dependencies
      • Exports
      • State Bags
      • Events
      • Customizations
    • Frozen Inventory
      • Features
      • Examples
      • Dependencies
      • Installation
        • v1.2 installation
    • Helicopter Camera
      • Adding custom helicopters
      • Moving the UI above the minimap
      • Adding controller inputs
      • Exports
      • Events
    • Frozen Poker
      • Installation
      • Dependencies
    • Frozen Fishing
      • Installation
      • Dependencies
      • Shop Items
      • Fishing Equipment Strength
    • Frozen Gym
      • Installation
      • Exports
        • Client Exports
        • Server Exports
  • 🔓Authorization
    • How to get authorized with license system?
Powered by GitBook
On this page
  1. Scripts
  2. Frozen Poker

Installation

Basic installation instructions for this script

PreviousFrozen PokerNextDependencies

Last updated 1 year ago

Do not change resource name, otherwise the resource will not work!

  • Ensure are installed and running before frozen-poker

  • Place script in resources directory

  • Do the authorization inside of cred.lua file by following this

  • Add the item images from INSTALLATION directory

  • Add item to your preferred inventory style with down below.

  • Configure config.lua as you wish

ESX Inventory

INSERT INTO items (name, label, weight, rare, can_remove) VALUES ("pokertable", "Poker Table", 1, 0, 1);

QB Inventory

	['pokertable'] 			 		 = {['name'] = 'pokertable', 						['label'] = 'Poker Table', 				['weight'] = 1, 		['type'] = 'item', 		['image'] = 'pokertable.png', 			['unique'] = false, 	['useable'] = true, 	['shouldClose'] = true,	   ['combinable'] = true,   ['description'] = 'Unique poker table'},

OX Inventory

['pokertable'] = {
	label = 'Poker Table',
	weight = 100,
	stack = true,
	close = true,
},

🔹
dependencies
tutorial