[This has been removed]
I Wonder if michael trevor franklin, and chop are still invisible?
Some Animals are. Micheal, Trevor and Franklin are visible but bugged. The Ped looks like it froze for other players, even when the player moves away.
What do you mean by bugged? Also, it says it couldn’t connect, some timeout with ip 192.168.0.52 as far as i know, now IP in my network is like that. so… and it only happens with your trainer
is there a car save option ?
Currently not.
I wrote what I meant. The Ped looks like it froze for other players, even when the player moves away.
Weird, I never had this error. Did you try restarting the server and the client?
Yes i did, i’ll write down the exact message in a couple of minutes
Okay, so before the error it stays about 30 seconds in connecting, then times out with the message “Failed handshake to server 192.168.0.52:30120 - WinHttpReceiveResponse failed with error code ERROR_WIN_HTTP_TIMEOUT” Also, i have no internet when i run fivem, so… that may be it?
Yeah, this could be the problem.
Well, that really ruins my day. Since i kinda dont use internet
I will try something and txt you back
Edit: @Yosef Try it with Internet again
lol what…
if you dont, be carfull with it… we all need it.
First off, thanks for the sharing, good job
Could you explain where is situated the streaming part? Like how do you call the WelcomeMessage.ytd to print it?
Thanks in advance
Do you mean how I draw it?
If so, here it is:
Citizen.CreateThread(function() --Draws The Welcome Message
local Alpha = 0; Up = true
while true do
Citizen.Wait(0)
if drawWelcomeMessage then
if not HasStreamedTextureDictLoaded("WelcomeMessage") then
RequestStreamedTextureDict("WelcomeMessage", true)
while not HasStreamedTextureDictLoaded("WelcomeMessage") do
Citizen.Wait(0)
end
end
_DrawRect(0.5, 0.85, 0.55, 0.1, 0, 51, 0, Alpha, 6)
DrawSprite("WelcomeMessage", "Message", 0.5, 0.85,0.5, 0.05, 0.0, 255,255,255, Alpha)
if Alpha < 255 and Up then
Alpha = Alpha + 3
elseif Alpha == 255 and Up then
Up = false
end
if Alpha > 0 and not Up then
Alpha = Alpha - 3
elseif Alpha == 0 and not Up then
SetStreamedTextureDictAsNoLongerNeeded("WelcomeMessage")
drawWelcomeMessage = false
end
end
end
end)
Wow! Thanks you very much
You are welcome
…
message?
ok I stop it now
Ill try it soon, And i’ll report back. edit: by soon i mean about 6-7 hours, not more than 1 day though (unless i forget)