Divinity: Original Sin 2

Divinity: Original Sin 2

Create Mods. Have Fun.
Because no one has as many friends as the man with many mods!
了解更多
赛马郎 2022 年 4 月 21 日 下午 10:47
I need help.About giving extra properties to weapons
I want to add QUEST_DEFLECTION_AURA to a shield.
But it can only last a few rounds,not like the enemy's.
How can I make it permanent
< >
正在显示第 1 - 3 条,共 3 条留言
Doctor Beetus 7 2022 年 4 月 22 日 下午 10:39 
In the ExtraProperties field, you can use Self:OnEquip:QUEST_DEFLECTION_AURA, but it will be permanent.

If you want to make it last a few turns then you can instead make a skill that grants the aura for a few turns and add that skill to your shield.
< blank > 9 2022 年 4 月 29 日 下午 12:38 
IF ObjectEnteredCombat((CHARACTERGUID)_Char,_)
AND HasActiveStatus(_Char,"YourStatus",1)
THEN
ApplyStatus(_Char,"QUEST_DEFLECTION_AURA",12.0);

Here is an Osisris Script that will apply the aura for 2 turns, 1 turn make the last number 6.0, 3 turns 18.0

You need to make a status, "YourStatus", and add Self:OnEquip:YourStatus to the extraproperties for the gear

One issue with this is that the aura will come back if the character dies and is revived
赛马郎 2022 年 4 月 30 日 上午 12:17 
OK
already solved
thanks
:)
< >
正在显示第 1 - 3 条,共 3 条留言
每页显示数: 1530 50