|
发表于 2009-2-17 13:02:03
|
显示全部楼层
在地图开始前,这样:
[codes=jass]function Init takes nothing returns nothing
call StoreInteger( <GC>, I2S(<力量英雄ID>), "No1State", bj_HEROSTAT_STR )
call StoreInteger( <GC>, I2S(<敏捷英雄ID>), "No1State", bj_HEROSTAT_AGI )
call StoreInteger( <GC>, I2S(<智力英雄ID>), "No1State", bj_HEROSTAT_INT )
endfunction[/codes]
用这个:
[codes=jass]function GetHeroNo1State takes unit u returns integer
return GetStoredInteger( <GC>, I2S(GetUnitTypeId(u)), "No1State" )
endfunction[/codes]
为0时是力量英雄
为1时是敏捷英雄
为2时是智力英雄 |
|