Jass:CreateUnitAtLocSaveLast
Aus Mappedia
| Funktion: CreateUnitAtLocSaveLast | |
|---|---|
| Parameter: | player integer location real |
| Rückgabewert: | unit |
| Autor: | Blizzard |
| Quelle: | Blizzard.j |
| Synchron: | Unbekannt |
Code
function CreateUnitAtLocSaveLast takes player id, integer unitid, location loc, real face returns unit if (unitid == 'ugol') then set bj_lastCreatedUnit = CreateBlightedGoldmine(id, GetLocationX(loc), GetLocationY(loc), face) else set bj_lastCreatedUnit = CreateUnitAtLoc(id, unitid, loc, face) endif return bj_lastCreatedUnit endfunction
Parameter
| Typ | Name | Beschreibung |
|---|---|---|
| player | id | |
| integer | unitid | |
| location | loc | |
| real | face |
