getPlayerLevel: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Page creation) |
Lou Montana (talk | contribs) m (Text replacement - "↵↵+<\/sqf>" to " </sqf>") |
||
(2 intermediate revisions by the same user not shown) | |||
Line 18: | Line 18: | ||
|r1= [[Number]] - the provided player's level or -1 on error (unreachable servers, not a player, etc) | |r1= [[Number]] - the provided player's level or -1 on error (unreachable servers, not a player, etc) | ||
|x1= <sqf>player addEventHandler ["Killed", { | |x1= <sqf> | ||
if (getPlayerLevel | player addEventHandler ["Killed", { | ||
_killer = _this select 1; | |||
if (getPlayerLevel _killer < getCurrentPlayerLevel) then | |||
{ | { | ||
hint "oooooooooh!"; | hint "oooooooooh!"; |
Latest revision as of 11:35, 3 September 2024
Description
- Description:
- Return the level of the provided player.
- Multiplayer:
- Groups:
- Argo
Syntax
- Syntax:
- getPlayerLevel unit
- Parameters:
- unit: Object - a player-controlled unit
- Return Value:
- Number - the provided player's level or -1 on error (unreachable servers, not a player, etc)
Examples
- Example 1:
- player addEventHandler ["Killed", { _killer = _this select 1; if (getPlayerLevel _killer < getCurrentPlayerLevel) then { hint "oooooooooh!"; }; }];
Additional Information
- See also:
- getCurrentPlayerLevel isPlayerSupporter
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note