[Solved] I'm Looking for a AOP, and a Priority Status hub!

I’m looking for an AOP hub and a “Priority Status” script hub.

It looks like this:
hub example
The “(U | zBat)” would be whoever put in the command for the priority to start.

If you see anything like that as a script. I would like to use that script for my own FiveM server.

I know the location script. But I can’t find a “Priority Status” script.

If you do find anything like that, please post the link in the comments, or just post something that would be very similar, or just the exact samething. I’m just trying to find the AOP and the Priority Status hub script to use for my own FiveM server!

1 Like

Just search in #development:releases if it is a public script it will be there and if not then it is a private script.

I believe this is four scripts combined or an edit of this, the four scripts are public, however, to add the person who called the cooldown, you would need to edit the script(s).

would you know the scripts combined for this?

  1. [Release] Street Label

  2. [Release] Priority Cooldown

  3. [Release] Nearest Postal Script

  4. [Release] Area of Play / Patrol (Textdraw/Server Sync)

These should be it, hope this helped! :grinning:

2 Likes

do you know what they did for the name beside the priority status hub?

Sorry for the late reply, if I have a chance I’ll try to whip something up and send it

thanks. Make sure to add everything!

Do you know how you would be able to change the color on the scripts it has? I know the scripts they use, but do you know how to change the text color? I’m a little confused…

Change the Values of the

SetTextColour(r,g,b,a)

in the client.lua files


if the script does not have a SetTextColour add it before the SetTextEntry(“STRING”)

so for example a script like this that does not have SetTextColour

Click For Code
function DrawText2(text)
        SetTextFont(0)
        SetTextProportional(1)
        SetTextScale(0.0, 0.45)
        SetTextDropshadow(1, 0, 0, 0, 255)
        SetTextEdge(1, 0, 0, 0, 255)
        SetTextDropShadow()
        SetTextOutline()
        SetTextEntry("STRING")
        AddTextComponentString(text)
        DrawText(0.40, 0.10)
    end

should look like this :

Click For Code
	function DrawText2(text)
        SetTextFont(0)
        SetTextProportional(1)
        SetTextScale(0.0, 0.45)
        SetTextDropshadow(1, 0, 0, 0, 255)
        SetTextEdge(1, 0, 0, 0, 255)
        SetTextDropShadow()
        SetTextOutline()
        SetTextColour(0,0,0,255)
        SetTextEntry("STRING")
        AddTextComponentString(text)
        DrawText(0.40, 0.10)
    end

For the SetTextColour It self, you need a RGB Combination number,
for getting the RGB numbers of your desired color you can use websites like this

and also remember that the fourth number in the SetTextColour is the Alpha, 0 is for hidden and 255 is for full opacity.

For the positioning of the Text them selves you can play around with the numbers in DrawText it self.
remember they are between 0 and 1

Yes, I have found a script very similar to PGNs priority cooldown script DOJ Priority Status Script

This GitHub - prefech/JD_Priority: FiveM Advanced Priority Resource.