Jass:EnableCreepSleepBJ
Aus Mappedia
| Funktion: EnableCreepSleepBJ | |
|---|---|
| Parameter: | boolean |
| Rückgabewert: | nothing |
| Autor: | Blizzard |
| Quelle: | Blizzard.j |
| Synchron: | Unbekannt |
Code
function EnableCreepSleepBJ takes boolean enable returns nothing call SetPlayerState(Player(PLAYER_NEUTRAL_AGGRESSIVE), PLAYER_STATE_NO_CREEP_SLEEP, IntegerTertiaryOp(enable, 0, 1)) // If we're disabling, attempt to wake any already-sleeping creeps. if (not enable) then call WakePlayerUnits(Player(PLAYER_NEUTRAL_AGGRESSIVE)) endif endfunction
Parameter
| Typ | Name | Beschreibung |
|---|---|---|
| boolean | enable |
