HU/getPedOccupiedVehicle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
Line 8: Line 8:


===Kötelező paraméterek===
===Kötelező paraméterek===
*'''thePed''': The [[ped]] whose vehicle you're looking up.
*'''thePed''': A [[ped]], akinek a járművét keressük.


===Visszatérési érték===
===Visszatérési érték===

Latest revision as of 18:22, 7 October 2018

Ez a function visszaadja azt a járművet, amelyben a ped benne van, vagy amibe próbál beszállni.

Szintaxis

vehicle getPedOccupiedVehicle ( ped thePed )

OOP Syntax Help! I don't understand this!

Note: Set the variable to nil to execute removePedFromVehicle
Method: ped:getOccupiedVehicle(...)
Variable: .vehicle
Counterpart: warpPedIntoVehicle


Kötelező paraméterek

  • thePed: A ped, akinek a járművét keressük.

Visszatérési érték

Visszaadja azt a járművet, amelyben a ped benne van, vagy false, ha a ped nincs benne a járműben, vagy érvénytelen a ped.

Példa

Amikor egy ped beírja a 'getcarname' parancsot, és egy járműben ül, akkor ez a példa kiírja a jármű nevét.

function showVehicleName ( thePlayer )
   local theVehicle = getPedOccupiedVehicle ( thePlayer )
   if theVehicle then
      outputChatBox ( "Name of the Vehicle: " .. getVehicleName ( theVehicle ), thePlayer )
   else
      outputChatBox ( "You do not have a Vehicle!", thePlayer, 255, 0, 0, true )
   end
end
addCommandHandler ( "getcarname", showVehicleName )

Lásd még

Fordította