RU/giveWeapon: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: {{Server function}} giveWeapon gives a specified weapon to a certain player or ped. There is an optional argument to specify ammunition. For example, a melee weapon doesn't need an ammo ar...)
 
m (Reverted edits by Bonzo (talk) to last revision by Strix)
 
(31 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Server function}}
__NOTOC__
giveWeapon gives a specified weapon to a certain player or ped. There is an optional argument to specify ammunition. For example, a melee weapon doesn't need an ammo argument.
{{RU/Server function}}
 
С помощью этой функции можно выдать оружие игроку, педу.
==Syntax==  
==Синтаксис==  
<syntaxhighlight lang="lua">bool giveWeapon ( player thePlayer, int weapon [, int ammo=30, bool setAsCurrent=false ] )</syntaxhighlight>  
<syntaxhighlight lang="lua">bool giveWeapon ( player thePlayer, int weapon [, int ammo=30, bool setAsCurrent=false ] )</syntaxhighlight>  
==Обязательные аргументы==
*'''thePlayer:''' [[element/Player|игрок]] или [[Element/Ped|пед]] которому выдаётся оружие.
*'''weapon:''' [[Weapon|Модель]] выдаваемого оружия.


===Required Arguments===  
===Необязательные аргументы===  
*'''thePlayer:''' A [[player]] object referencing the specified player 
*'''ammo:''' Количество патронов которое будет даваться к оружию.
*'''weapon:''' A whole number integer that refers to a [[Weapon]] ID. Click [[Weapon|here]] for a list of possible weapon IDs.
Для оружия, которые не требуют боеприпасов, такие, как ближний бой, патронов будет 1.
 
*'''setAsCurrent:''' Логическое значение будет ли оружие в руках после выдачи
===Optional Arguments===
{{OptionalArg}}
*'''ammo:''' A whole number integer serving as the ammo amount for the given weapon.  For weapons that do not require ammo, such as melee, this should be at least 1.
*'''setAsCurrent:''' A boolean value determining whether or not the weapon will be set as the players current.


===Returns===  
==Возвращает==  
Returns ''true'' if weapon was successfully acquired, ''false'' otherwise.
Возвращает ''true'' Если оружие успешно выдано, ''false'' если иначе.


==Example==  
==Пример==
'''Example 1:''' This example gives a player an M4 with 200 ammo whenever they spawn.
В этом примере при появлении игроку выдаётся M4 в руки
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function giveWeaponsOnSpawn ( theSpawnpont, theTeam )
function giveWeaponsOnSpawn ( theSpawnpont, theTeam )
     giveWeapon ( source, 31, 200 ) -- Gives the M4 weapon with 200 ammo
     giveWeapon ( source, 31, 200, true) -- Дадим M4 с 200 патронами
end
end
addEventHandler ( "onPlayerSpawn", getRootElement(), giveWeaponsOnSpawn ) -- attach the event handler
addEventHandler ( "onPlayerSpawn", getRootElement(), giveWeaponsOnSpawn )
</syntaxhighlight>
</syntaxhighlight>
 
==Смотрите так же==
 
'''Example 2:''' This example adds a "give" command in console which allows giving of any weapon by entering "give <id> <amount>".
<syntaxhighlight lang="lua">
function consoleGive ( thePlayer, commandName, weaponID, ammo )
local status = giveWeapon ( thePlayer, weaponID, ammo, true )  -- attempt to give the weapon, forcing it as selected weapon
if ( not status ) then                                          -- if it was unsuccessful
outputConsole ( "Failed to give weapon.", thePlayer )  -- tell the player
end
end
addCommandHandler ( "give", consoleGive )
</syntaxhighlight>
 
 
'''Example 3:''' This example creates a ped in certain coordinates. You can give him a weapon with "give <weaponID> <amount>" command in console.
<syntaxhighlight lang="lua">
ped = createPed( 19, -1634.5775, 1203.85, 7.1796 );
 
addCommandHandler( "give",
  function ( player, command, id, amount )
    if not id then return end
    giveWeapon( ped, id, amount, true )
  end
)
</syntaxhighlight>
 
==See Also==
{{RU/Weapon functions}}
{{RU/Weapon functions}}
[[EN:giveWeapon]]

Latest revision as of 03:05, 1 April 2016

С помощью этой функции можно выдать оружие игроку, педу.

Синтаксис

bool giveWeapon ( player thePlayer, int weapon [, int ammo=30, bool setAsCurrent=false ] )

Обязательные аргументы

  • thePlayer: игрок или пед которому выдаётся оружие.
  • weapon: Модель выдаваемого оружия.

Необязательные аргументы

  • ammo: Количество патронов которое будет даваться к оружию.

Для оружия, которые не требуют боеприпасов, такие, как ближний бой, патронов будет 1.

  • setAsCurrent: Логическое значение будет ли оружие в руках после выдачи

Возвращает

Возвращает true Если оружие успешно выдано, false если иначе.

Пример

В этом примере при появлении игроку выдаётся M4 в руки

function giveWeaponsOnSpawn ( theSpawnpont, theTeam )
    giveWeapon ( source, 31, 200, true) -- Дадим M4 с 200 патронами
end
addEventHandler ( "onPlayerSpawn", getRootElement(), giveWeaponsOnSpawn )

Смотрите так же

Серверные функции

  • giveWeapon - дает указанное оружие игроку или пешеходу
  • takeAllWeapons - удаляет всё оружие с указанного игрока или пешехода
  • takeWeapon - удаляет указанное оружие или боеприпасы с игрока или пешехода
ДО ВЕРСИИ 1.3.1 :
  • takeWeaponAmmo - удаляет определённое кол-во боеприпасов у игрока для указанного оружия
  • giveWeaponAmmo - даёт определённое кол-во боеприпасов игроку для указанного оружия

Клиентские функции

Общие функции

  • getOriginalWeaponProperty - получает исходное свойство указанного типа оружия
  • getPickupWeapon - получает ID оружия из указанного пикапа
  • getSlotFromWeapon - получает слот к которому принадлежит оружие
  • getWeaponIDFromName - получает ID оружия из его названия
  • getWeaponNameFromID - получает название оружия или причину смерти из его ID
  • getWeaponProperty - получает свойство указанного оружия
  • setWeaponAmmo - устанавливает определенное кол-во боеприпасов для указанного оружия
  • setWeaponProperty - устанавливает свойство указанного типа оружия