[Release] [PHP] Quick Text Entry for your cars/whatever

Basically all this does is convert your model names to car names in about a second lol.

Using this for my server to save me a few hours from opening each vehicles.meta file.

This should work for all cars, however, if it does not work for some cars you’ll need to fix the car manually.

AddTextEntryByHash(GetHashKey(‘zx10r’), ‘ZX10R’)

Off topic but a few upcoming releases within the next year (hopefully)
I will also be releasing an admin panel (Very outdated pics can be found here. But so far I got, Steam API integration, IPB integration, show list of users online, show accounts that are possibly cheating, show accounts with VAC records, show top 10 active members, and a lot more has been already done)

I will also be releasing a website dashboard ([Linked to GCPhone] Live example can be found here) sometime in the future. If you got any suggestions let me know what you’d like to see.

Oh and a Boss Panel (for faction/job leaders) You’ll be able to manage your employees profiles, see on duty/off duty times, set salaries, fire people, etc, etc.

If you don’t want to run this on a website use @ElGammaYT LUA scripted version:

2 Likes

Nice job, its a cool idea but it could maybe be a bit easier and less dependent on external utilities.
For those who don’t understand SQL, it could be a bit tricky formatting a database, or for those who don’t have access to a webserver, it’s redundant for them.

Instead you could use a lua table and append it to your liking instead of having to create a database and insert all the values into it.
For example:

local vehlist = {
    {"MODEL NAME", "VEHICLE NAME"},
    {"zx10r", "ZX10R"},
    {"police6", "Police Car"}
}

for l, veh in pairs(vehlist) do
    AddTextEntryByHash(GetHashKey(veh[1]), veh[2])
end

Other than that I think this will help lots of people save time.
Good work!

1 Like

Well its mostly for people who have ESX or something similar that they already have stored in a DB. Otherwise it is useless for them.

1 Like

Hey ! I liked your idea and I wanted to make it easier to use. I just made a script with the same function that can just be run has any other and where the vehicle names gets upgraded every restart, there is the GitHub repo link.

3 Likes