AdjustPlayerStateBJ
- Parameters
-
delta integer
whichPlayer player
whichPlayerState playerstate
- comment
- patch
1.00
- Source
- Blizzard.j
- return type
nothing
- Source code
function AdjustPlayerStateBJ takes integer delta, player whichPlayer, playerstate whichPlayerState returns nothing // If the change was positive, apply the difference to the player's // gathered resources property as well. if (delta > 0) then if (whichPlayerState == PLAYER_STATE_RESOURCE_GOLD) then call AdjustPlayerStateSimpleBJ(whichPlayer, PLAYER_STATE_GOLD_GATHERED, delta) elseif (whichPlayerState == PLAYER_STATE_RESOURCE_LUMBER) then call AdjustPlayerStateSimpleBJ(whichPlayer, PLAYER_STATE_LUMBER_GATHERED, delta) endif endif call AdjustPlayerStateSimpleBJ(whichPlayer, whichPlayerState, delta) endfunction