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 armă=255, int parte a corpului=255, bool stealth = false ] )</syntaxhighlight>
<syntaxhighlight lang="lua">bool killPed ( ped thePed, [ ped theKiller = nil, int weapon=255, int bodyPart=255, bool stealth = false ] )</syntaxhighlight>


===Argumente necesare===
===Argumente Necesare===
* '''thePed:''' Bot-ul [[ped]] care dorești să îl omori
* '''thePed:''' [[ped]] -ul pe care să îl omori


===Argumente opționale===
===Argumente opționale===
* '''theKiller:''' Bot-ul responsabil pentru ucidere
* '''theKiller:''' The ped responsible for the kill
* '''weapon:''' ID-ul armei care apare că a omorât bot-ul (nu afectează cum moare)
* '''weapon:''' The ID of the weapon that should appear to have killed the ped (doesn't affect how they die)
* '''bodyPart:''' ID-ul părții coprului care apare ca fiind lovită de armă (nu afectează cum moare)
* '''bodyPart:''' The ID of the body part that should appear to have been hit by the weapon (doesn't affect how they die)
{{BodyParts}}
{{BodyParts}}
* '''stealth:''' Boolean value, representing whether or not this a stealth kill
* '''stealth:''' Boolean value, representing whether or not this a stealth kill


===Returns===
===Returnare===
Returns ''true'' if the ped was killed, ''false'' if the ped specified could not be killed or is 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:36, 29 October 2013

Syntaxă

bool killPed ( ped thePed, [ ped theKiller = nil, int weapon=255, int bodyPart=255, bool stealth = false ] )

Argumente Necesare

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

Argumente opționale

  • theKiller: The ped responsible for the kill
  • weapon: The ID of the weapon that should appear to have killed the ped (doesn't affect how they die)
  • bodyPart: The ID of the body part that should appear to have been hit by the weapon (doesn't affect how they die)
  • 3: Torso
  • 4: Ass
  • 5: Left Arm
  • 6: Right Arm
  • 7: Left Leg
  • 8: Right Leg
  • 9: Head
  • stealth: Boolean value, representing whether or not this a stealth kill

Returnare

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