Coder Social home page Coder Social logo

angelicxs-policek9's Introduction

policeK9

Lite PoliceK9 script for FiveM Please check out other scripts by me on CFX (https://forum.cfx.re/u/angelicxs/activity/topics) or my paid stuff on Tebex (https://angelicxs.tebex.io/)

OX_Target compatability added by OfficialWoodyUK Original Fork (https://github.com/OfficialWoodyUK/angelicxs-policeK9)

For ESX or QBCore.

This is a lite Police K9 Script that provides enough functionality to get a solid K9 unit rolling. Main functionality:

  • Enter/Exit Vehicles
  • Search/Attack Players
  • Stay
  • Follow
  • Job & Rank Lock
  • Third-Eye Spawn/Despawn
  • Search player owned vehicles

Buttons for commands can easily be swapped in the config.

FOR QB-CORE Add following code in qb-inventory or ps-inventory /server.lua at bottom

-- required for k9
function getTrunkItems(plate)
	if Trunks[plate] then
		return Trunks[plate]
	else
		local result = MySQL.scalar.await('SELECT items FROM trunkitems WHERE plate = ?', {plate})
		if not result then return false end
		local data = {
			items = json.decode(result)
		}
		return data
	end
end
function getGloveboxItems(plate)
	if Gloveboxes[plate] then
		return Gloveboxes[plate]
	else
		local result = MySQL.scalar.await('SELECT items FROM gloveboxitems WHERE plate = ?', {plate})
		if not result then return false end
		local data = {
			items = json.decode(result)
		}
		return data
	end
end
exports("getGloveboxItems", getGloveboxItems)
exports("getTrunkItems", getTrunkItems)
-- required for k9

angelicxs-policek9's People

Contributors

gouveiaxs avatar suryabhaiin avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.