RO/killPed: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 1: Line 1:
==Syntaxă==
==Syntaxă==
<syntaxhighlight lang="lua">bool killPed ( ped thePed, [ ped theKiller = nil, int weapon=255, int bodyPart=255, bool stealth = false ] )</syntaxhighlight>
<syntaxhighlight lang="lua">bool killPed ( ped bot, [ ped ucigas = nil, int arma=255, int parteaCorpului=255, bool stealth = false ] )</syntaxhighlight>


===Argumente Necesare===
===Argumente Necesare===
* '''thePed:'''  [[ped]] -ul pe care să îl omori
* '''bot:'''  [[ped]]-ul pe care să îl omori


===Argumente opționale===
===Argumente opționale===
* '''theKiller:''' The ped responsible for the kill
* '''ucigas:''' [[ped]]-ul responsabil pentru ucidere
* '''weapon:''' The ID of the weapon that should appear to have killed the ped (doesn't affect how they die)
* '''arma:''' ID-ul armei care l-a ucis pe ped (nu afectează modul în care a fost ucis)
* '''bodyPart:''' The ID of the body part that should appear to have been hit by the weapon (doesn't affect how they die)
* '''parteaCorpului:''' ID-ul părții a corpului unde a fost lovit [[ped]]-ul (nu afectează modul în care a fost ucis)
{{BodyParts}}
{{BodyParts}}
* '''stealth:''' Boolean value, representing whether or not this a stealth kill
* '''stealth:''' "true" (da) sau "false" (nu) dacă este o ucidere de tip stealth


===Returnare===
===Returnare===
Returnează ''true'' dacă ped-ul a fost ucis sau ''false'' dacă ped-ul specificat nu a putut fii ucis sau este invalid.
Returnează ''true'' dacă ped-ul a fost ucis sau ''false'' dacă ped-ul specificat nu a putut fii ucis sau este invalid.

Revision as of 12:40, 29 October 2013

Syntaxă

bool killPed ( ped bot, [ ped ucigas = nil, int arma=255, int parteaCorpului=255, bool stealth = false ] )

Argumente Necesare

  • bot: ped-ul pe care să îl omori

Argumente opționale

  • ucigas: ped-ul responsabil pentru ucidere
  • arma: ID-ul armei care l-a ucis pe ped (nu afectează modul în care a fost ucis)
  • parteaCorpului: ID-ul părții a corpului unde a fost lovit ped-ul (nu afectează modul în care a fost ucis)
  • 3: Torso
  • 4: Ass
  • 5: Left Arm
  • 6: Right Arm
  • 7: Left Leg
  • 8: Right Leg
  • 9: Head
  • stealth: "true" (da) sau "false" (nu) dacă este o ucidere de tip stealth

Returnare

Returnează true dacă ped-ul a fost ucis sau false dacă ped-ul specificat nu a putut fii ucis sau este invalid.