The search keyword must be a single word (no spaces).
Function SetCameraQuickPositionForPlayer
- Line
- 1599
- Location
- blizzard.j
- Constant?
- no
- Type
- function
- Arguments
- player whichPlayer, real x, real y
- Returns
- nothing
| 1599 | function SetCameraQuickPositionForPlayer takes player whichPlayer, real x, real y returns nothing |
| 1600 | if (GetLocalPlayer() == whichPlayer) then |
| 1601 | // Use only local code (no net traffic) within this block to avoid desyncs.
|
| 1602 | call SetCameraQuickPosition(x, y) |
| 1603 | endif
|
| 1604 | endfunction
|