SetPlayerWeapon

From Wiki G1R-MP G1 Remake Multiplayer
Revision as of 20:14, 5 August 2026 by QCherry (talk | contribs) (Automatyczna aktualizacja dokumentacji funkcji)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

setPlayerWeapon

Equips or clears a player's authoritative weapon slot.

Syntax

bool setPlayerWeapon(int playerId, string itemKey)

Parameters

Name Type Required Description
playerId int yes The connected player identifier.
itemKey string yes A key returned by getPlayerWeaponNames, or "none" to clear the slot.

Returns

Returns true when the equipment change is accepted and replicated; otherwise returns false.

Examples

Example 1

Give an item and equip it in the weapon slot:

local itemKey = "1h_sword_01"
if givePlayerItem(playerId, itemKey) then
    setPlayerWeapon(playerId, itemKey)
end

Example 2

Clear the weapon slot:

setPlayerWeapon(playerId, "none")

Notes

  • Available only in server-side resource scripts.
  • The player must own at least one copy of a non-empty item before it can be equipped.
  • The selected appearance is reliably synchronized and included in late-join state.