[Release] [ES] AdvancedRP Server dump

yes i have this issue as well

The players do not see my chat.tem how to solve?

Hi, any idea about whitelisted cop job?

yes i am having this issue as well as not being able to utilize the commands

Hello,

Working for me :slight_smile:

https://gyazo.com/cdf7b4fcfc7fb7a514a0c03d6dd1a5c5

I seem to be having an issue with buying snacks from store too heal. I don’t see any errors, I just hear 4 dings and no money comes out and I don’t get healed.
Anyone else have this issue? I am looking at the code and can’t see what is wrong.

RegisterServerEvent('es_roleplay:buySnack')
AddEventHandler('es_roleplay:buySnack', function(s)
	if(not twentyfourseven_shops[s])then
		return
	end

	local lpos = twentyfourseven_shops[s]

	TriggerEvent('es:getPlayerFromId', source, function(user)
		local pos = user.coords
		if(get3DDistance(pos.x, pos.y, pos.z, lpos.x, lpos.y, lpos.z) < 1.0)then
			if(user.money > 250)then
				user:removeMoney(250)
				TriggerClientEvent('chatMessage', source, 'SHOP', {255, 0, 0}, "You were healed.")
				TriggerClientEvent('es_roleplay:heal', source)
			else

			end
		end
	end)
end)

Exactly same problem here

@kratos128 on es_pls line 14 --local zones = and --local directions

plaese fix miscstores

Thanks uu day_field


Ahah ur welcome :slight_smile: Good luck

1 Like

Yeah, i have the same problem.

Hello, to fix the problem of heal:
line 284 file job.lua (server)

Replace
if (groups.ems [job] or user.permission_level> 2) then
By
if (groups.ems or user.permission_level> 2) then

The script “Robberies” is really interesting, and to have tested it on a server totally “Advanced RP” it is rather not bad! Unfortunately it is very dependent on other scripts (jobs, cops, etc 
) and requires the es_roleplay.

Someone would have managed to make it stand-alone?
(I tried with my poor coding skills, but I still had bugs)

1 Like

Hello thanks for the release, i have a question, where is the file for remplace the blips “lost en dĂ©tention”. thank

Anyone else having respawn issue on latest server release? Just goes black with a spinning wheel and never respawns when you die

Apparently i must have goofed something up.

When a player goes to purchase a car from the car shop it spawns 2 cars instead of 1.

Then when the player goes to spawn an owned car they get a black loading screen.
*the loading screen will go away if they get killed - else they must taskkill FiveM.

Any advice would be greatly appreciated!

If someone find how to save es_customization to DB i will be very grateful.

Getting spawning working is more important or this is useless

Has anyone added cars into es_carshop?
I have tried to add 2 more job vehicles:

                    <div class="col-sm-4 col-lg-4 col-md-4" id="buy_ambulance">
                        <div class="thumbnail">
                            <img src="cars/ambulance.webp" alt="">
                            <div class="caption">
                                <h4 class="pull-right">$2,000</h4>
                                <h4><b>Ambulance</b>
                                </h4>
                                <p>You need one of these to heal people.</p>
                            </div>
                            <div class="ratings">
                                <p class="pull-right">9 reviews</p>
                                <p>
                                    <span class="glyphicon glyphicon-star"></span>
                                    <span class="glyphicon glyphicon-star"></span>
                                    <span class="glyphicon glyphicon-star"></span>
                                    <span class="glyphicon glyphicon-star"></span>
                                    <span class="glyphicon glyphicon-star"></span>
                                </p>
                            </div>
                        </div>
                    </div>

But this is what I get:


Any help greatly appreciated.