-
Posts
256 -
Joined
-
Last visited
-
Days Won
4
Everything posted by Zorgman
-
It's normal, the event is triggered only when you hit the colshape bounds. In your use case, you are already in the car's col, so no new hit event is detected. You can save the interaction colshapes that are 'active' for the player by using tables.
-
[Zombie Sandbox RPG] Dystopia: The Incident
Zorgman replied to Zorgman's topic in Servidores en donde jugar
There are just two easy steps you need to follow, if you can't do that then a video is not going to help you much. Put mtaserver.conf and acl.xml in server\mods\deathmatch folder. Put [Dystopia] folder in server\mods\deathmatch\resources folder. https://github.com/Zorangeorge/MTA-Dystopia-The-Incident -
https://wiki.multitheftauto.com/wiki/CreateLight
-
water createWater ( int x1, int y1, float z1, int x2, int y2, float z2, int x3, int y3, float z3 [, int x4, int y4, float z4 ] [, bool bShallow = false ] )
-
[Zombie Sandbox RPG] Dystopia: The Incident
Zorgman replied to Zorgman's topic in Servidores en donde jugar
You can't play this outside MTA, however you can play single player on your local server. -
[Zombie Sandbox RPG] Dystopia: The Incident
Zorgman replied to Zorgman's topic in Servidores en donde jugar
Hola! Gamemode was released, you can download the resources from Github: https://github.com/Zorangeorge/MTA-Dystopia-The-Incident -
https://wiki.multitheftauto.com/wiki/CloneElement Also, wrong section..
-
[Action-RPG Zombie Sandbox] Dystopia: The Incident [EN]
Zorgman replied to Zorgman's topic in Servers to play on
-
Assuming the ped is really a ped, and not a player: peds cannot enter/exit vehicles the normal way. You'll have to either warp him in the vehicle or script the animations sequence yourself and then warp him in the vehicle.
-
It means that argument has a value assigned and that the value is different from false. What you are looking for is: if not argument or type(argument)~= "number" then argument = getPlayerDimension(player) end
-
if not argument then -- Do something end ^ This could also mean that argument == false. Irrelevant difference for OP's specific use case, but still
-
Show the code you use for cycling weather types.
-
That's a harder one, I remember I looked for ways to delete it from my map for quite a while. I'll check in my files and get back to you. IDs are 9100 and 9101 cheers
-
Use getDistanceBetweenPoints3D or set up a colshape and listen to the onClientColShapeHit and onClientColShapeLeave events.
- 1 reply
-
- 1
-
Why is this just telling me one coordinate?
Zorgman replied to Hugo_Almeidowski's topic in Scripting
local x,y,z = getElementPosition(player) outputChatBox("Estás nas coordenadas "..x..", "..y..", "..z, player) -
https://dev.prineside.com/en/gtasa_samp_model_id/search/?q=pyramid
-
For #2, there is a rifle crouch reload animation you could use.
-
try now, I updated the links
-
Yeah, looks like you also need the dff. Both files here: https://www28.zippyshare.com/v/fKBauVpH/file.html https://www28.zippyshare.com/v/y0pCncdK/file.html
-
Invisible txd here: https://www120.zippyshare.com/v/7cmCyqPa/file.html
-
You can add the original AK skin just like you add the custom new one.
-
Line 34: if button=="mouse2" and press and button =="mouse1" and press then This will never work, "button" cannot be both mouse2 and mouse1 at the same time.
-
You were attaching the player to the weapon object. Cheers!