Moderator
M
Moderator
12th Dec 2015
IcemanBo: For too long time as NeedsFix. Rejected.
23th Jul 2011
Bribe:
Unnacceptable JASS names, these need to be prefixed.
This also should not be custom script as there is nothing
special about it:
IcemanBo: For too long time as NeedsFix. Rejected.
23th Jul 2011
Bribe:
Unnacceptable JASS names, these need to be prefixed.
This also should not be custom script as there is nothing
special about it:
JASS:
function Trig_Make_a_Hero_Actions takes nothing returns nothing
set udg_Hero[0] = CreateUnit(Player(0),'Hpal',GetRectCenterX(gg_rct_Spawn),GetRectCenterY(gg_rct_Spawn), 260.)
call SetPlayerState(Player(0), PLAYER_STATE_RESOURCE_GOLD, 1000)
endfunction
//===========================================================================
function InitTrig_Make_a_Hero takes nothing returns nothing
local trigger t = CreateTrigger()
call TriggerRegisterTimerEventSingle(t, 0.00)
call TriggerAddAction( t, function Trig_Make_a_Hero_Actions )
set t = null
endfunction