3DMGAME 3DM首页 新闻中心 前瞻 | 评测 游戏库 热门 | 最新 攻略中心 攻略 | 秘籍 下载中心 游戏 | 汉化 购买正版 论坛

注册 登录

QQ登录

只需一步,快速开始

楼主: lyldmsn7
打印 上一主题 下一主题

[分享] 实验室去除种族限制的修改方法

  [复制链接]

8

主题

2264

帖子

1802

积分

游戏狂人

Rank: 6Rank: 6

贡献度
8
金元
17698
积分
1802
精华
0
注册时间
2012-7-22
跳转到指定楼层
主题
发表于 2014-5-31 01:37 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 lyldmsn7 于 2016-8-3 19:24 编辑

2015-08-03:到目前为止没有观测到sslActorLibrary库有明显变化,既然CanAnimate方法都开源到psc里那么总是有办法绕开的,直到LoversLab开发组决定使用闭源SKSE插件为止
图文教程见最下,这里先行补充纯文字教程,因为观测到3DM论坛图片载入异常(至少我这里就是这样的←_←),对CK和Payrus脚本有基本了解的童鞋可凭文字教程快速开始操作。
声明:本帖没有可供下载的内容

Step 1,修改脚本源代码
       SL负责Character种族检查的功能位于sslActorLibrary库中,源文件路径Data\Scripts\Source\sslActorLibrary.psc,psc文件可以用任何文本编辑器打开,用记事本也行,这里顺便给VS Code打个广告
打开之后,使用查找,查找内容为CanAnimate,一直定位到如下内容:
bool function CanAnimate(Actor ActorRef)
        Race ActorRace  = ActorRef.GetLeveledActorBase().GetRace()
        string RaceName = ActorRace.GetName()+MiscUtil.GetRaceEditorID(ActorRace)
        return !(ActorRace.IsRaceFlagSet(0x00000004) || StringUtil.Find(RaceName, "Child") != -1  || StringUtil.Find(RaceName, "Little") != -1 || StringUtil.Find(RaceName, "117") != -1 || StringUtil.Find(RaceName, "Enfant") != -1 || (StringUtil.Find(RaceName, "Elin") != -1 && ActorRef.GetScale() < 0.92) ||  (StringUtil.Find(RaceName, "Monli") != -1 && ActorRef.GetScale() < 0.92))
endFunction

     此为CanAnimate方法的定义,其中所有种族检查的条件就在return的返回值表达式中,可以看出,SL默认禁止的条件是:游戏默认的Child种族;种族名含“Little”字样;种族名含“117”字样(是不是很熟悉,4代就有名的x117美化);种族名含“Enfant"字样;“种族名含Elin或者Monli”字样且身高小于0.92(不过这里用的是GetScale方法,如果使用ECE将Scale设置为1,再通过骨骼缩放控制身高这条限制就绕过了←_←)
    完全解除的方法很简单,将return返回的表达式直接设置为1即可,这样CanAnimate方法对于任何参数都将返回true,也就是全部放行。
即修改为下列字样:
bool function CanAnimate(Actor ActorRef)
        Race ActorRace  = ActorRef.GetLeveledActorBase().GetRace()
        string RaceName = ActorRace.GetName()+MiscUtil.GetRaceEditorID(ActorRace)
        return 1
endFunction

      注意:感叹号!需删除,因为其代表“非”运算,逻辑反转的意思
      第一步骤完成,下面使用CK携带的Payrus编译器将修改后的psc编译为pex即可生效
Step 2,编译脚本
      首选,我们需要使用到CK,打开CK后不需要加载任何档案,打开GamePlay菜单下的PayrusManager(中文版是“游戏相关”->“Payrus管理器”)
      然后通过filter也就是过滤功能,输入查找的字符串,sslActorLibrary,窗口中表格里右键选择该项,选择“编译”(Compile),此后会弹出一个编译状态窗口,编译成功的话窗口会自动关闭,如果出现编译错误,则在该窗口下会显示出编译器提交的编译错误,可能是链接错误(例如依赖的其他库编译错误),也可能是语法错误,可根据编译错误清单慢慢解决本帖的回复也包含很多童鞋的尝试,经验可供参考。
Step 3,调试
   进入游戏,首先打开SL的调试功能,这里需要使用到SL的调试技能和控制台输出,然后使用SL的调试技能去调试,观察控制台的输出是否正常,如果一切无误的话,就会像普通NPC一样开始输出目标Actor信息,以及调用的动画信息。如果控制台提示该种族被禁用,不支持动画,则有可能是编译失败,或者其它原因造成的脚本执行文件(.pex)未被正确覆盖;如果控制台显示该Actor被列入Forbidden Faction是因为该NPC在脚本修改前被SL检测过,SL会在初次检测时自动记录非法NPC,以便以后加快检测速度,这样的话换个NPC进行调试就行。(PS:被列入Forbidden Faction的NPC就会被禁止执行SL,用控制台将其解除Faction就可以了)



2015-02-14:教程无变动,从159到159c到160到161b hotfix1的各个版本sslActorLibrary基本无变动,修改方法是一致的,但是不推荐使用低版本的修改pex进行覆盖因为我并没有实际对比过各个版本的update,但是换句话说如果确定sslActorLibrary无变动,那么用另一个版本的pex当然是可以的。
貌似有很多人修改失败,稍微说下可能的情况:
  • 编译失败的,先看编译器警告,有可能:1、当前编译目标中有语法错误,这个嘛解除种族检查只涉及CanAnimate()这一个函数,只要把这个函数函数体直接注为return 1就行,记得要把原来的删掉,或者用;注释掉。由于是bool返回类型,必须要返回一个值。2、依赖的psc编译错误,这个比较少见,只要你的SKSE和SL文件没有损坏就不会出现这种情况,编译sslActorLibrary.psc直接依赖于SL的基础API,SL当然又要依赖于SKSE的API,试试用SKSE的最新版(目前是1.7.32)重新覆盖下,再安装对应版本的SL脚本(只要重新覆盖scripts目录就行了),然后试试编译。
  • 打开CK不加载Sexlab.esm也是可以的,直接调用脚本管理器就行了,其实和esm加不加载没什么关系,但是小心不要点成下面的Compile Papyrus Scripts,有些源码是没法本地编译的(比如现在SKYUI默认不给脚本源码了←_←)
  • Papyrus脚本源代码文件是.psc ,默认放在Data\Scripts\source下;而编译生成之后的是.pex,默认放在Data\Scripts下,游戏程序直接调用.pex,所以只修改.psc不编译是不会生效的,哪怕你把全部psc文件都删了也不影响游戏运行
  • 如#19这样的可能需要依次重新安装CK和SKSE,感觉是编译器坏掉了←_←,
  • 各个版本SL的脚本肯定是有变动的,但是在sslActorLibrary这一个类上似乎变动不大,CanAnimate()函数基本没有修改过,所以根据自己的版本自行调整,其他函数不要乱动
  • sslActorLibrary里要修改的只是CanAnimate(Actor ActorRef)这个函数,不是所有调用到CanAnimate的地方
  • 改成return 1的意思是完全解除SL默认的所有种族限制,对所有种族都会放行,如果只需要改部分种族的限制那么修改部分表达式就行了
  • 修改了无效的,有可能是你测试的对方NPC已经被加入Forbidden Faction中因为触发了sslActorLibrary中的另一条检查这时候换另外一个相同种族的npc试试,如果可以通过的话就用控制台去除之前把那个npc从Forbidden Faction中去除掉



嘛,论坛里各种大绅士不少,又恰逢敏感时期,各种求LOLI使能补丁的,也算是3DM一大奇观了.........


授人以鱼不如授人以渔,虽然http://bbs.3dmgame.com/thread-4282354-1-1.html这位童鞋以及另外一位童鞋都在持之以恒地更新修正后的pex
不过在这个各种度盘链接不存在的时代还能说什么呢


所以本帖不提供任何下载,纯伸手党或者没耐心可以先撤了,但是认真看完的童鞋之后也不用再求补丁了,只要有CK,以后的SL无论怎么升级都可以自己改

我知道需要看这种帖子的童鞋大部分都是没接触过编程的,所以还是多上图好了,请先自备CK,不会用也没关系,只要求会最简单的单击双击就可以了......

Step 1:修改源psc
在你的Data\scripts\source下找到sslActorLibrary.psc,请用记事本打开该文件
使用查找功能找到"Can Animate"字样如下:

将图中 被选中的部分改成酱紫~~~~~~

之后保存即可


Step2:编译pex
之前请先备份Data\scripts\sslActorLibrary.pex到其他目录,将scripts目录下的该文件删除~
打开你滴CK......这样来.......


首先需要加载Sexlab.esm
关于如何加载........

之后点确定,慢慢等,中途如果有Warning点取消即可



之后是这样滴........在过滤中输入sslActorLibrary,然后右键点下面那一栏,在右键菜单里点"编译",之后等待即可


如果编译对话框自动关闭则编译成功,可以检查scripts目录下是否有sslActorLibrary.pex
如果编译不成功,根据提示查找错误,也有可能是SKSE安装不完整,请尝试重新安装SKSE
警告:新安装CK的童鞋务必在安装完CK后重装SKSE以便覆盖基本API的源代码,否则依赖SKSE的脚本都将编译失败







评分

3

查看全部评分

回复

使用道具 举报

0

主题

43

帖子

109

积分

中级玩家

Rank: 3Rank: 3

贡献度
0
金元
1094
积分
109
精华
0
注册时间
2016-12-22
舒服的沙发
发表于 2021-2-25 21:04 | 只看该作者
大佬,这边在编码环节出现下面的情况,重新覆盖了SKSE和CK后都是这样,请问这是目前能解决的吗?
Starting 1 compile threads for 1 files...
Compiling "sslActorLibrary"...
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(135,25): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(135,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(153,16): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(153,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(158,17): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(158,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(172,25): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(172,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(190,17): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(190,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(201,17): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(201,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(204,25): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(204,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(220,16): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(220,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(223,16): CreateIntArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(223,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(226,16): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(226,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(229,16): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(229,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(232,16): CreateFormArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(232,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(235,16): CreateAliasArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(235,16): cannot call the member function CreateAliasArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(239,16): ResizeFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(239,16): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(242,16): ResizeIntArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(242,16): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(245,16): ResizeStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(245,16): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(248,16): ResizeFormArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(248,16): cannot call the member function ResizeFormArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(251,16): ResizeAliasArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\PapyrusUtil.psc(251,16): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseObject.psc(168,17): ResizeStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseObject.psc(168,17): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(68,26): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(68,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(82,26): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(82,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(129,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(129,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(411,26): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(411,26): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,29): GetDisplayName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,87): GetDisplayName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorStats.psc(194,38): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorStats.psc(197,38): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorStats.psc(461,47): GetType is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorStats.psc(461,29): type mismatch on parameter 1 (did you forget a cast?)
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorStats.psc(461,58): cannot compare a none to a int (cast missing or types unrelated)
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorStats.psc(769,79): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorStats.psc(875,100): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorStats.psc(898,61): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorStats.psc(1051,49): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseVoice.psc(81,44): GetCameraState is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseVoice.psc(81,44): cannot call the member function GetCameraState alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseVoice.psc(81,61): cannot compare a none to a int (cast missing or types unrelated)
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseVoice.psc(152,20): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseVoice.psc(152,20): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(441,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(441,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(442,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(442,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(443,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(443,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(444,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(444,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(445,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(445,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(446,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(446,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(447,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(447,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(448,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(448,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(449,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(449,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(450,19): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(450,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(115,22): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(175,23): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(25,24): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(25,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(37,24): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(37,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(75,24): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(75,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(95,24): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(95,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(118,32): GetAliasByName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(118,59): cannot cast a none to a sslbasevoice, types are incompatible
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(147,61): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(74,24): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(74,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(105,17): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(105,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(108,25): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(108,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(191,26): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(191,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(287,16): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(287,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(291,16): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(291,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(295,16): CreateIntArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(295,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(299,16): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(299,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(303,16): CreateFormArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(303,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(405,16): CreateIntArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(405,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(445,16): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(445,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(470,16): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(470,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(495,16): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(495,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(520,16): CreateFormArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslUtility.psc(520,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(201,26): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(201,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(301,27): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(301,27): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,2): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(44,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(359,21): ResizeStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(359,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(360,50): GetNthAlias is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(360,21): ResizeAliasArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(360,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(370,15): GetNthAlias is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(81,24): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(81,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(121,17): GetNthAlias is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(121,32): cannot cast a none to a sslbaseanimation, types are incompatible
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(243,24): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(243,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(283,13): GetNthAlias is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(283,28): cannot cast a none to a sslbasevoice, types are incompatible
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(398,24): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(398,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(437,18): GetNthAlias is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(437,33): cannot cast a none to a sslbaseexpression, types are incompatible
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(42,24): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(42,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(99,26): CreateStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(99,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(34,2): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(45,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(222,21): ResizeStringArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(222,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,50): GetNthAlias is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,21): ResizeAliasArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(233,15): GetNthAlias is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(548,15): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(551,16): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(558,15): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(561,16): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(304,54): GetWornForm is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(306,31): variable NiOverride is undefined
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(306,42): none is not a known user-defined type
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(307,19): variable NiOverride is undefined
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(307,30): none is not a known user-defined type
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(312,5): variable NiOverride is undefined
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(312,16): none is not a known user-defined type
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(313,5): variable NiOverride is undefined
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(313,16): none is not a known user-defined type
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(657,23): GetCameraState is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(657,23): cannot call the member function GetCameraState alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(657,40): cannot compare a none to a int (cast missing or types unrelated)
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(657,40): cannot relatively compare variables to None
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(718,32): GetWornForm is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(722,31): variable NiOverride is undefined
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(722,42): none is not a known user-defined type
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(723,5): variable NiOverride is undefined
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(723,16): none is not a known user-defined type
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(778,79): GetCameraState is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(778,79): cannot call the member function GetCameraState alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(778,96): cannot compare a none to a int (cast missing or types unrelated)
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(807,10): GetCameraState is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(807,10): cannot call the member function GetCameraState alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(807,27): cannot compare a none to a int (cast missing or types unrelated)
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1106,20): GetEquippedObject is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1109,11): UnequipItemEX is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1113,20): GetEquippedObject is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1116,11): UnequipItemEX is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1123,39): GetMaskForSlot is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1123,39): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1123,21): GetWornForm is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1125,12): UnequipItemEX is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1161,13): EquipItemEx is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1247,10): GetCameraState is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1247,10): cannot call the member function GetCameraState alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1247,27): cannot compare a none to a int (cast missing or types unrelated)
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1255,11): SheatheWeapon is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1272,1): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1273,1): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1274,1): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1276,1): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1277,1): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1278,1): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1279,1): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1280,1): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1287,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1288,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1289,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1291,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1292,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1293,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1294,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1295,1): UnregisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1348,26): CreateBoolArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1348,26): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1349,26): CreateFormArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslActorAlias.psc(1349,26): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadModel.psc(262,2): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadModel.psc(263,2): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadModel.psc(264,2): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadModel.psc(265,2): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadModel.psc(266,2): RegisterForModEvent is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadModel.psc(275,109): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadModel.psc(278,52): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslThreadModel.psc(278,180): GetName is not a function or does not exist

CreateIntArray is not a function or does not exist
cannot call the member function CreateIntArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1103,21): CreateFloatArray is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1103,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\SexLabUtil.psc(65,39): GetName is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\SexLabUtil.psc(129,21): GetType is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\SexLabUtil.psc(129,6): type mismatch while assigning to a int (cast missing or types unrelated)
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\fnis.psc(42,51): Getname is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\fnis.psc(70,139): Getname is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(294,41): GetCameraState is not a function or does not exist
E:\ESV\3DMGAME_Elder_Scrolls_V_Skyrim.CHS.Green.v6.0\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(467,80): GetName is not a function or does not exist
): SheatheWeapon is not a function or does not exist
: GetCameraState is not a function or does not exist
cannot call the member function GetCameraState alone or on a type, must call it on a variable
E:\ESV\3
回复 支持 反对

使用道具 举报

0

主题

87

帖子

103

积分

中级玩家

Rank: 3Rank: 3

贡献度
0
金元
1025
积分
103
精华
0
注册时间
2019-6-27
硬硬的板凳
发表于 2021-11-2 00:35 | 只看该作者
怎么用控制台移除标记啊
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|3DMGAME ( 京ICP备14006952号-1  沪公网安备 31011202006753号

GMT+8, 2026-3-31 16:11 , Processed in 0.032382 second(s), 19 queries , Memcached On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表