0 of 0

File information

Last updated

Original upload

Created by

DPh Kraken

Uploaded by

DPhKraken

Virus scan

Safe to use

Tags for this mod

Mod articles

  • Osiris Source Code

    Version 1
    SubGoalCombiner SGC_AND
    INITSECTION
    DB_IsBodyArmor(EQUIPMENTSLOT.Breast);
    DB_OffDuty_StoredArmourSet((CHARACTER)NULL_00000000-0000-0000-0000-000000000000);
    DB_BodyArmorIsProperArmor("LightArmor");
    DB_BodyArmorIsProperArmor("MediumArmor");
    DB_BodyArmorIsProperArmor("HeavyArmor");KBSECTION
    //REGION Trigger on taking on/off breastplate
    IF
    Equipped(_Item,_Char)
    AND
    GetEquippedItem(_Char,"Breast",_Item)
    AND
    GetEquipmentSlotForItem(_Item, _ItemSlot)
    AND
    DB_IsBodyArmor(_ItemSlot)
    THEN
    PROC_Modesty_SetArmourSet(_Char, ARMOURSET.Normal);
    PROC_Modesty_StoreArmourSet(_Char, ARMOURSET.Normal);

    IF
    Unequipped(_Item,_Char)
    AND
    NOT GetEquippedItem(_Char...