Jump to content

Some Questions


Mr.ArO

Recommended Posts

Hello

I have some questions :D

1)how to make moving gates (with command like /opengate1 or something else)

2)how to make you own car plates (like GLC on car plate)

3)Is there any speedometer with tahometer?

4)Where to find scripting basics (if it possible in russian :oops: )

5)How to make like when join the server before downloading appear a screen and text then the download start

6)Is it possible to add music to game (ex a club map when enter it is playing a music exiting and it disapears

Link to comment

1) You have to script it

local marker = createMarker ( cords, "corona", 2, 255,0,0, 150 ) 
setElementData ( marker, "gatemarker", "gatemarker1" ) 
  
function markerhit ( hitPlayer, matchingDim ) 
  if ( getElementData ( source, "gatemarker" )) == "gatemarker1" then 
  moveObject ( gate1, 1000, cords ) 
  end 
end 
addEventHandler ( "onMarkerHit", getRootElement(), markerhit ) 
  

something like this

2) https://wiki.multitheftauto.com/wiki/CreateVehicle - the last argument is this

3) There is, community.multitheftauto.com , if u mean odometer then - https://community.multitheftauto.com/ind ... ils&id=559

4) wiki.multitheftauto.com is for it, and it is for russian - https://wiki.multitheftauto.com/index.ph ... /Main_Page

5)This one i don't know, is it even possible ?

6)It is, use this events

playSound 
 -- OR 
playSound3D 

Click to see info about it.

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...