上古卷轴吧 关注:1,636,049贴子:28,537,296

回复:【教程和讨论】【DAR】拟真变动作组的相关问题

取消只看楼主收藏回复

IsFemale()
Is the actor female?是女性,男性则写NOT IsFemale()
IsChild()
Is the actor a child?是儿童,非写not
IsPlayerTeammate()
Is the actor currently a teammate of the player?是否是队友,同上
IsInInterior()
Is the actor in an interior cell?在室内?
IsInFaction(Faction faction)
Is the actor in the specified faction?是否是特定派别
HasKeyword(Keyword keyword)
Does the actor have the specified keyword?是否有关键字
HasMagicEffect(MagicEffect magiceffect)
Is the actor currently being affected by the given Magic Effect?身上是否受到特定魔法效果影响
HasMagicEffectWithKeyword(Keyword keyword)
Is the actor currently being affected by a Magic Effect with the given Keyword?是否受到有特定关键字的魔法影响
HasPerk(Perk perk)
Does the actor have the given Perk?是否有指定的技能点
HasSpell(Form spell)
Does the actor have the given Spell or Shout?是否解锁了某项技能或者龙吼
IsActorValueEqualTo(GlobalVariable id, GlobalVariable value)
Is the ActorValue of the specified ID equal to the value?角色的GlobalVariable id是否等于某个值(0-1之间的小数)
IsActorValueLessThan(GlobalVariable id, GlobalVariable value)
Is the ActorValue of the specified ID less than the value?角色的GlobalVariable id是否少于某个值IsActorValueBaseEqualTo(GlobalVariable id, GlobalVariable value)
Is the base ActorValue of the specified ID equal to the value?角色的GlobalVariable id基础值是否等于特定值IsActorValueBaseLessThan(GlobalVariable id, GlobalVariable value)
Is the base ActorValue of the specified ID less than the value? 给定角色的GlobalVariable id最大值是否等于特定值。
下面的这些是受到特定的debuff之后的减损,比如变成吸血鬼了在白天最大体力值和生命值会减少。
IsActorValueMaxEqualTo(GlobalVariable id, GlobalVariable value)
Is the max ActorValue of the specified ID equal to the value? 给定角色的特定GlobalVariable id的最大值是否低于某个值
IsActorValueMaxLessThan(GlobalVariable id, GlobalVariable value)
Is the max ActorValue of the specified ID less than the value? 给定角色的特定GlobalVariable id的最大值是否低于某个值
IsActorValuePercentageEqualTo(GlobalVariable id, GlobalVariable value)
Is the percentage ActorValue of the specified ID equal to the value?给定角色的特定GlobalVariable id是否等于特定值
IsActorValuePercentageLessThan(GlobalVariable id, GlobalVariable value)
Is the percentage ActorValue of the specified ID less than the value?给定角色的特定GlobalVariable id是否低于特定值
注:英文句子后面接中文,中文是对英文句子的翻译和补充。


IP属地:江苏23楼2022-07-27 09:46
回复
    IsAttacking()
    Is the actor currently attacking?正在进攻
    IsRunning()
    Is the actor currently running?在跑步(游戏默认的移动)
    IsSneaking()
    Is the actor currently sneaking?在潜行
    IsSprinting()
    Is the actor currently sprinting?在冲刺(按下alt的动作)
    IsInAir()
    Is the actor in the air?在空中(就是跳跃还没落地的状态)
    IsInCombat()
    Is the actor in combat?处于战斗状态,(就是响战斗音乐了)
    IsWeaponDrawn()
    Does the actor have his equipped weapon and/or magic spell drawn?弓、法杖等蓄力
    IsInLocation(Location location)
    Is the actor in the specified location or a child of that location?在特定地点(这个我没用过所以不知道括号里面的地点怎么填
    IsParentCell(Cell cell)
    Is the actor in the specified cell?(没有查到这个cell怎么填)
    IsWorldSpace(WorldSpace worldSpace)
    Is the actor in the specified WorldSpace?
    IsFactionRankEqualTo(GlobalVariable rank, Faction faction)
    Is the actor's rank in the specified faction equal to the specified rank?
    IsFactionRankLessThan(GlobalVariable rank, Faction faction)
    Is the actor's rank in the specified faction less than the specified rank?
    IsMovementDirection(GlobalVariable direction)
    Is the actor moving in the specified direction?是否朝特定方向移动,
    GlobalVariable direction填写数字
    0=Standing Still
    1=Forward
    2=Right
    3=Back
    4=Left


    IP属地:江苏24楼2022-07-27 10:02
    回复
      2025-07-01 09:47:55
      广告
      那现在我们写一个男性在室内生命值低于百分之三十非战斗状态的_conditions.txt:
      NOT IsFemale() AND
      IsInInterior() AND
      IsActorValuePercentageLessThan(24, 0.30) AND
      NOT IsInCombat()


      IP属地:江苏28楼2022-07-27 10:16
      回复
        貌似楼不在了:
        ActorValue id:
        https://www.creationkit.com/index.php?title=ActorValueInfo_Script


        IP属地:江苏30楼2022-07-27 10:18
        回复
          还是希望大佬们能多在贴吧这种地方来发帖子,毕竟9dm之类的论坛太封闭了,不是既得利益者的话,还是建议在开放的平台,这样子才能吸引更多的血液来丰富这个社区,要不然给新人造成的信息差和中间商,很容易破坏模组作者的热情。


          IP属地:江苏32楼2022-07-27 10:23
          回复
            DAR的加载:
            进游戏打开第一个存档,加载数量越少,时间越短。打开游戏之后不会二次加载。
            DAR与fnis和nemesis怎么用:
            无脑一起用就行。
            DAR的生物动作:
            按照路径建文件夹和写conditions就行。
            DAR的战斗动作:
            不建议放太多,除非单纯想秀动作,要不然战斗会很奇怪。


            IP属地:江苏来自Android客户端34楼2022-07-27 10:50
            回复
              在这里推荐@壹杆我的纸 大佬,他的教程都很详细,希望大家多多支持,这种好帖子应该被更多人看见,一个好的社区需要共同努力


              IP属地:江苏来自Android客户端39楼2022-08-02 16:37
              回复