Всем доброго времени суток.
решил сделать постройку, где ИИ мог сам построить палатку и зажечь огонь, а потом уйти куда то (отдохнуть)
Автор:voin64
Ссылка на скачивание:http://files.webfile.ru/cfae67dcc3076625262e96e6ed007f35
делал не скриптом, а триггерами.Добавлено (18.02.2015, 08:44)
---------------------------------------------
а сам скрипт вот
Автор:voin64s
soor.sqs
;[имя постройки, сила строителя, имя строителя, позиция x, позиция y] exec "soor.sqs"
_postr = _this select 0
_sila = _this select 1
_stroit = _this select 2
_x = _this select 3
_y = _this select 4
#loop
?(getpos _postr select 2) > -0.55:exit
_stroit switchMove "AinvPknlMstpSlayWrflDnon_medic"
_postr setpos [_x,_y,(getpos _postr select 2) + _sila]
~2
goto "loop"
Добавлено (18.02.2015, 13:12)
---------------------------------------------
ещё можно добавить если инженер мёртв то выход из скрипта
soor.sqs
_postr = _this select 0
_sila = _this select 1
_stroit = _this select 2
_x = _this select 3
_y = _this select 4
#loop
?not alive _stroit:exit
?(getpos _postr select 2) > -0.55:exit
_stroit switchMove "AinvPknlMstpSlayWrflDnon_medic"
_postr setpos [_x,_y,(getpos _postr select 2) + _sila]
~2
goto "loop"