HU/getPedFightingStyle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Server function hu}}
{{Server function hu}}
__NOTOC__
__NOTOC__
Retrieves the fighting style a player/ped is currently using.
Visszaadja a player/ped jelenleg használt harci stílusát.


==Szintaxis==  
==Szintaxis==  
Line 11: Line 11:


===Kötelező paraméterek===  
===Kötelező paraméterek===  
*'''thePed:''' the ped whose current fighting style ID you wish to retrieve.
*'''thePed:''' a ped, kinek az aktuális harci stílusának az ID-jét szeretné megkapni.


===Visszatérési érték===
===Visszatérési érték===
Returns the ped's current fighting style as an integer ID, ''false'' if it fails to retrieve a value.
Visszaadja a ped jelenleg használt harci stílusát integer ID-ként, ''false'' ha nem sikerült lekérni egy értéket.


{{Fighting Styles}}
{{Fighting Styles}}


==Példa==  
==Példa==  
This will allow any player to check what fighting style they are currently using, by typing the 'getfightingstyle' command.
Ez a példa lehetővé teszi az összes játékosnak, hogy ellenőrizzék milyen harci stílust használnak épp, a 'getfightingstyle' parancs használatvával.


<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">

Latest revision as of 14:23, 7 October 2018

Visszaadja a player/ped jelenleg használt harci stílusát.

Szintaxis

int getPedFightingStyle ( ped thePed ) 


OOP Syntax Help! I don't understand this!

Method: ped:getFightingStyle(...)
Variable: .fightingStyle
Counterpart: setPedFightingStyle


Kötelező paraméterek

  • thePed: a ped, kinek az aktuális harci stílusának az ID-jét szeretné megkapni.

Visszatérési érték

Visszaadja a ped jelenleg használt harci stílusát integer ID-ként, false ha nem sikerült lekérni egy értéket.

Fighting Styles:

Fighting Style ID
STYLE_STANDARD 4
STYLE_BOXING 5
STYLE_KUNG_FU 6
STYLE_KNEE_HEAD 7
STYLE_GRAB_KICK 15
STYLE_ELBOWS 16

Példa

Ez a példa lehetővé teszi az összes játékosnak, hogy ellenőrizzék milyen harci stílust használnak épp, a 'getfightingstyle' parancs használatvával.

function getPlayerFightStyle ( thePlayer, commandName )
	local playerstyle = getPedFightingStyle ( thePlayer )   -- store the fighting style in a variable
	outputChatBox ( tostring(playerstyle), thePlayer )         -- output it to the player
end
addCommandHandler ( "getfightingstyle", getPlayerFightStyle )

Lásd még

Fordította