HU/getPedOccupiedVehicle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Shared function hu}}
This function gets the [[vehicle]] that the ped is currently in or is trying to enter, if any.
Ez a function visszaadja azt a [[vehicle|járművet]], amelyben a ped benne van, vagy amibe próbál beszállni.


==Syntax==
==Szintaxis==
<syntaxhighlight lang="lua">vehicle getPedOccupiedVehicle ( ped thePed )</syntaxhighlight>
<syntaxhighlight lang="lua">vehicle getPedOccupiedVehicle ( ped thePed )</syntaxhighlight>
{{OOP|Set the variable to nil to execute [[removePedFromVehicle]]|[[ped]]:getOccupiedVehicle|vehicle|warpPedIntoVehicle}}
{{OOP|Set the variable to nil to execute [[removePedFromVehicle]]|[[ped]]:getOccupiedVehicle|vehicle|warpPedIntoVehicle}}


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


===Returns===
===Visszatérési érték===
Returns the vehicle that the specified ped is in, or ''false'' if the ped is not in a vehicle or is an invalid ped.
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.


==Example==
==Példa==
When a ped enters the 'getcarname' command and is currently in a vehicle, this example outputs the name of the vehicle.
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.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function showVehicleName ( thePlayer )
function showVehicleName ( thePlayer )
Line 27: Line 27:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==Lásd még==
{{Client_ped_functions hu}}
{{Client_ped_functions hu}}


[[en:getPedOccupiedVehicle]]
[[en:getPedOccupiedVehicle]]
==Fordította==
* '''''[https://wiki.multitheftauto.com/wiki/User:Surge Surge]'''''

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