Hello everyone, i'm learning to model in 3D and this is my first vehicle, it's not completed but i will try it in the game, i replaced the asea model but the game while loading crash with no error, can you explain me why? (vehicle created in blender and exported in zmodeler)
Santo99
View profile on GTA5-Mods.com »
Posts made by Santo99
-
Vehicle Creation (Game Crash)
-
[C#] Long text on screen
i need to put in the screen like 8/9 lines of text like:
Press button 1 for do thing1
Press button 2 for do thing2
Press button 3 for do thing3
etc..but using tooltip in game i see 2/4 of the text.. how can i do? thanks
-
find if vehicle == a model [LUA]
hi, what's wrong in my code? why if i'm on the right car return false?
local model = GetEntityModel( veh )
if tostring( GetHashKey( model )) ~= "1878062887") then
return false
else
return true
end -
FiveM sell vehicle
I did this but it would seem not work, how can I solve?
CLIENT SIDE
#code block
if IsPedInAnyVehicle(GetPlayerPed(-1), false ) then
local veh = GetVehiclePedIsIn(GetPlayerPed(-1), false)
local veicoloProprieta = ESX.Game.GetVehicleProperties(veh)
TriggerServerEvent('esx_mafiajob:vendiauto', veicoloProprieta, player) ESX.Game.DeleteVehicle(veh)SERVER SIDE
#code block
RegisterServerEvent('esx_mafiajob:vendiauto')
AddEventHandler('esx_mafiajob:vendiauto', function(vehicleProps, target)
local _source = source
local xPlayer = ESX.GetPlayerFromId(_source)
local vehicules = getPlayerVehicles(xPlayer.getIdentifier())
local plate = vehicleProps.plate
local target = ESX.GetPlayerFromId(target)for _,v in pairs(vehicules) do if(plate == v.plate)then local idveh = v.id MySQL.Sync.execute("UPDATE owned_vehicles SET owner=@target WHERE id=@id",{['@target'] = target.getIdentifier() , ['@id'] = v.id}) break end end
end)
-
Help serach an animation
i can't find the name of the animation of the player walking with cellphone in hand , anyone can help me? thanks
-
Open another application into gta process
for open an application into a windows form i use this code
[DllImport("user32.dll")] static extern IntPtr SetParent(IntPtr h, IntPtr h1); function { Process p = Process.Start("notepad.exe"); Thread.Sleep(500); p.WaitForInputIdle(); SetParent(p.MainWindowHandle,this.Handle); }
but i can't use this.Handle in a script how i can tell to use gta process handle?
-
RE: cellphone application
@ikt in this addon there are only contact
-
cellphone application
there is a method for add an own application on cellphone? thanks
-
[C#] How spawn add-on Cars?
How i can spawn an add-on car in c#?
-
[C#] Web Browser
How i can create a box with a web browser inside, ingame? thanks