По адресу обратился! Сам долго допереть не мог как вуши скрешивать! А теперь в этом смысле Про
! Вообше то легче через Jass (работы меньше), но и через обычные тригеры мона!
-----------------------------------------------------------------------------
Допустим у нас есть 2 вещи - Х и Y. Вот так будет выглядеть триггер для объеденения вещи X и Y в вещь Z
Event - Unit Acquries an Item
Condition - Or - Any (Condition) are True
Condition:
(Item-type of(Item Being Manipulated) Equal to X)
(Item-type of(Item Being Manipulated) Equal to Y)
Action - If (All Condition are True) then do (Then Action) else do
(Else Action)
If - Conditions:
((Hero Manipulating Item) has an item of type X)
((Hero Manipulating Item) has an item of type Y)
Then - Action:
Remove (Item carried by (Hero Manipulating Item) of type X)
Remove (Item carried by (Hero Manipulating Item) of type Y)
Create Z and give it to (Hero Manipulating Item)
Else do nothing
------------------------------------------------------------------------
Надеюсь помог!!!