-
Content Count
126 -
Joined
-
Last visited
Community Reputation
33 GoodAbout Hydra
-
Rank
Poot-butt
- Birthday 13/06/2003
Details
-
Gang
Vultaic
-
Location
Romania
-
Occupation
Scripting
-
Interests
-
Recent Profile Visitors
1,006 profile views
-
Ai putea fi mai explicit la partea ,,puteai incarca o masina la statiile de incarcare"?
-
Maybe if you create a corona marker and attach it to the vehicle tail lights.
-
function sf(thePlayer, command) local adminname = getAccountName ( getPlayerAccount ( thePlayer ) ) if isObjectInACLGroup ("user."..adminname, aclGetGroup ( "Admin" ) ) then setElementPosition(thePlayer, -1997.923828125, 171.4658203125, 27.6875) warpPedIntoVehicle(thePlayer, theVehicle, 0) else outputChatBox("No acces!", thePlayer, 255, 0, 0) end end addCommandHandler("gotosf", sf) This is how it should look if you want to teleport the player in a vehicle
-
Money and health are not saved when you log out of your account
Hydra replied to Egor_Varaksa's topic in Scripting
Use this example from wiki: https://wiki.multitheftauto.com/wiki/SetAccountData -
A project is already work in progress that will allow you to do the GTA:SA missions on MTA co-op. You can see more informations on the discord server Discord server: https://discord.gg/GBPZ9GvVdw
-
function b() outputChatBox("Your language changed succesfully") end addEventHandler("onClientLocalizationChange", getRootElement(), b) I'm not sure if this event helps anything because you have to disconnect from the server to change the language. But I will still leave this suggestion here
-
Feel free to use it: https://github.com/Hydra455/setPedFollow-setPedAttack
-
I don't quite understand what you said. But I guess you wanted to refer to where to put the line I gave you above. 1. Create a .lua file 2. Put setGameType ("Your gamemode name") in the .lua file 3. And in meta.xml put <script src = "filename.lua" type = "server" />
-
setGameType("Name here") I think this is what you want
-
For dxDrawImage3D you need to put faceTowardX/Y/Z argument too if you want to rotate image on the ground.
-
Mersi!
-
Momentan e doar client-side dar o sa fac si server-side
-
Nu, e totul de la 0
-
Cum scrie si in titlu am facut 2 functii custom numite: setPedAttack si setPedFollow - setPedAttack va face ca npc-ul sa urmareasca si sa atace jucatorul - setPedFollow va face ca npc-ul doar sa urmareasca jucatorul Video: https://streamable.com/8oaf0n
-
How can I show the animation to each player? (.ifp)
Hydra replied to SoManyTears's topic in Scripting
Trigger the event in server-side? Idk if will work but you can try