GetConvertedPlayerId
- Parameters
whichPlayer playerTarget player
- comment
returns WorldEdit-type player ID for player (these start with 1; e.g. player red is 1).
- note
For zero-based IDs see:
GetPlayerId,Player- patch
1.00
- Source
- Blizzard.j (suggest an edit or discuss on Github)
- return type
integer- Source code
function GetConvertedPlayerId takes player whichPlayer returns integer return GetPlayerId(whichPlayer) + 1 endfunction