Jump to content

SpawnPoint Camion + Rimorchio


Recommended Posts

Ciao a tutti! :)

Sto creando una mappa race e nello spawnpoint c'è un camion...

E' possibile fare in modo che ci sia il rimorchio insieme al camion? Cioè vorrei che sia già collegato dall'inizio della gara.

Premetto che non so niente di script .lua ma so come si mettono :)

Grazie a tutti! :D

Link to comment

Gia Testata.

Client Side :

Fai un file e chiamalo -> rimorchio.lua <- ed inserisci questo :

  
addEventHandler("onClientVehicleEnter", root, 
function(thePlayer, seat) 
 local theVehicle = source 
  if seat == 0 and thePlayer == localPlayer and  getElementModel(theVehicle) == 515 then 
   rimorchio =  createVehicle ( 450, 0, 0, 0 ) 
    attachTrailerToVehicle ( theVehicle, rimorchio)      
 end 
 end 
) 
addEventHandler("onClientVehicleExit", root, 
function(thePlayer, seat) 
 local theVehicle = source 
  if seat == 0 and thePlayer == localPlayer and getElementModel(theVehicle) == 515 then 
   destroyElement (rimorchio) 
  end 
 end 
) 
  

Nel meta.xml aggiungi :

  
 <script src="rimorchio.lua" type="client" /> 
  

Aggiungi questa stringa subito dopo

Esempio :

  
<meta> 
<script src="rimorchio.lua" type="client" /> 
  

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...