Giter Club home page Giter Club logo

danny3_outlawalert's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

danny3_outlawalert's Issues

Outlaw not working

When someone else does a crime it does not show, Only shows when Cops Misbehave is on AND it only shows it when your the one doing the crime. ( Blips still show just not the alert )

REQUEST: A GPS Route

Hello there,
i use your Script for a long Time now. I like it really. Is there a Way that if we get a DISCPATCH we can set automaticly a Waypoint?

EXAMPLE: https://prnt.sc/x9zapp

Love to see this

Friendly Regards
Boomatisch

multiple popups

I get 4 popups for the same even/alert. Did anyone figured out a way to modify this?

bug

great release upon further testing i realized cops actually dont get notified of anything unless a cop shoots , steals a car etc they dont get notified of players doing them actions

Not an Issue but a request - T1GER_Drugs

Hello, I am trying to integrate t1ger_drug's npc sell to alert me when they sell. I have this in my Server/main.lua

RegisterServerEvent('esx_outlawalert:drugInProgress')
AddEventHandler('esx_outlawalert:drugInProgresss', function(targetCoords, streetName, vehicleLabel, playerGender)
mytype = 'police'
data = {["code"] = '10-17', ["name"] = 'Drug sales in progress', ["loc"] = streetName}
length = 3500
TriggerClientEvent('esx_outlawalert:outlawNotify', -1, mytype, data, length)
TriggerClientEvent('esx_outlawalert:drugInProgress', -1, targetCoords)
TriggerClientEvent('esx_outlawalert:carJackInProgress', -1, targetCoords)
end, false)

This is in my client/main.lua

RegisterNetEvent('esx_outlawalert:drugInProgress')
AddEventHandler('esx_outlawalert:drugInProgress', function(targetCoords)
if isPlayerWhitelisted then
if Config.DrugSale then
local alpha = 250
local drugBlip = AddBlipForRadius(targetCoords.x, targetCoords.y, targetCoords.z, Config.DrugSaleRadius)

SetBlipHighDetail(drugBlip, true)
SetBlipColour(drugBlip, 1)
SetBlipAlpha(drugBlip, alpha)
SetBlipAsShortRange(drugBlip, true)

		while alpha ~= 0 do
			Citizen.Wait(Config.DrugSaleTime * 4)
			alpha = alpha - 1
			SetBlipAlpha(drugBlip, alpha)

			if alpha == 0 then
				RemoveBlip(drugBlip)
				return
			end
		end

	end
end

end)

It is not working, any ideas??

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.