Delzaron Posted August 12, 2015 Posted August 12, 2015 Hi Between mods fixes and TID development, I wish to try to use Devious Devices by making a short mod. For now, I made a simple quest line with Vigilants of Stendarr, called Retribition. - when player meet Vigilants, Vigilants will forcegreet the player if he have Daedric artifact or Daedra summoning spells. Player can resist (fight), or sumbet (gear confiscated + main quest launch) - Main quest : player talk to a vigilant in a interior cell, get some devious devices (plugs + custom harness + gag + ZAZ magic nullify collar + ZAZ ankle irons), two swords, and receive a mission : for exmaple : kill 10 vampires and bring their ashes as a proof... If player suceed, he will be set free, and take back his gear. I saw in the object list Devious items have two reference : Inventory, and _ScriptInstance. I see for NPC outfit the scriptinstance ones must be used, or NPC dont wear it... I tried the same thing with the player, the player have the restains on him, but the inventory is empty... So, this is my question : how Devious devices works ? How to use them for player and NPC ? (in fact, I have a project : devious club. Arena catfight, races like the Quick mod, and a Girlcatch/Hunting).
Veladarius Posted August 13, 2015 Posted August 13, 2015 What the device parts do: Inventory: - Contains the scripts that equips/unequips the device as well as the menu's the player interacts with - Has no visible worn component but is the only piece visible in the inventory screen ScriptInstance: - Contains the keywords and enchantments that gives the devices their effects - Has the visible parts that appears on the player - Does not appear in the inventory screen (no name) - Is equipped/unequipped by the scripts and unless using custom devices you don't need to do anything with them. If you want npc's to use the devices the best way to equip devices is by using the script functions Min set up within Integration to handle the manipulation of the devices. There are a number of commands for manipulating the devices, if you are using the standard devices the command ManipulateDevice is what you will want to look at, the documentation is here: https://github.com/DeviousDevices/Docs/wiki. From building For the Masses I found that npc's will not equip items if you just put them into their inventory. If you intend to have npc's who wear the devices constantly you can set up a custom outfit containing the devices (Inventory part).
Delzaron Posted August 13, 2015 Author Posted August 13, 2015 What the device parts do: Inventory: - Contains the scripts that equips/unequips the device as well as the menu's the player interacts with - Has no visible worn component but is the only piece visible in the inventory screen ScriptInstance: - Contains the keywords and enchantments that gives the devices their effects - Has the visible parts that appears on the player - Does not appear in the inventory screen (no name) - Is equipped/unequipped by the scripts and unless using custom devices you don't need to do anything with them. If you want npc's to use the devices the best way to equip devices is by using the script functions Min set up within Integration to handle the manipulation of the devices. There are a number of commands for manipulating the devices, if you are using the standard devices the command ManipulateDevice is what you will want to look at, the documentation is here: https://github.com/DeviousDevices/Docs/wiki. From building For the Masses I found that npc's will not equip items if you just put them into their inventory. If you intend to have npc's who wear the devices constantly you can set up a custom outfit containing the devices (Inventory part). Some for the player qnd the NPC, I need to put the both ? For the gag, I should use the script instance and the inventory items for the NPC outfits. But, for the player ? I should equip the inventory item, and to use a command to lock it on the player ?
Veladarius Posted August 13, 2015 Posted August 13, 2015 Unless you are using a custom device you won't do anything with the scriptinstance piece, the scripts will handle equipping that. Do not try equipping the scriptinstance item yourself as it will cause issues with the devices that can 'break' the item and may make it unremovable. With the ManipulateDevice command it will equip the device on the target actor (player or npc) and add it to their inventory if necessary. You will have to use ManipulateDevice to remove the items as the removeitem and unequipitem commands will trigger the reequip function and put the item back on the actor (this is why removeall does not get rid of devices).
Delzaron Posted August 13, 2015 Author Posted August 13, 2015 So, I need q funtion to add the items to the playe ror NPC, like equipitem, and this : Function ManipulateDevice(actor akActor, armor device, bool equipOrUnequip, bool skipEvents = false) Function EquipDevice(actor akActor, armor deviceInventory, armor deviceRendered, keyword zad_DeviousDevice, bool skipEvents=false, bool skipMutex=false)Function RemoveDevice(actor akActor, armor deviceInventory, armor deviceRendered, keyword zad_DeviousDevice, bool destroyDevice=false, bool skipEvents=false, bool skipMutex=false) For example, I i want to put a gag on the player : Function restrainPlayer() Playerref.equipitem(gag, true, false) Equipdevice(Plqyerref, gag, armor deviceRendered, keyword zad_DeviousDevice, bool skipEvents=false, bool skipMutex=false) Endfunction Do I need a property for using that scripts ?
Veladarius Posted August 13, 2015 Posted August 13, 2015 So, I need q funtion to add the items to the playe ror NPC, like equipitem, and this : Function ManipulateDevice(actor akActor, armor device, bool equipOrUnequip, bool skipEvents = false) Function EquipDevice(actor akActor, armor deviceInventory, armor deviceRendered, keyword zad_DeviousDevice, bool skipEvents=false, bool skipMutex=false)Function RemoveDevice(actor akActor, armor deviceInventory, armor deviceRendered, keyword zad_DeviousDevice, bool destroyDevice=false, bool skipEvents=false, bool skipMutex=false) For example, I i want to put a gag on the player : Function restrainPlayer() Playerref.equipitem(gag, true, false) Equipdevice(Plqyerref, gag, armor deviceRendered, keyword zad_DeviousDevice, bool skipEvents=false, bool skipMutex=false) Endfunction Do I need a property for using that scripts ? You pretty much always need properties with scripts. Actor property Playerref Auto Zadlibs property libs auto ; Zadlibs script so you can use the commands and properties from that script armor property gag auto ; inventory piece of the item armor property gagrend auto ; scriptinstance piece of the item Function RestrainPlayer() libs.equipdevice(playerref, gag, gagrend, libs.zad_deviousgag, false, false) endfunction This will equip the gag you specified on the actor (playerref in this case). Unequipping the device is pretty much the same except for the extra bool for whether to destroy the item or not to remove it from their inventory. Also, you don't need the equipitem command, the equipdevice command will handle everything.
Delzaron Posted August 14, 2015 Author Posted August 14, 2015 I test that : Function SetPlayerRetributor() Playerref.equipitem(zadx_plugBlackSoulgemAnInventory, true, false) Playerref.equipitem(zadx_plugShockSoulgemVagInventory, true, false) Playerref.equipitem(zadx_harnessBlockingInventory, true, false) Playerref.equipitem(zad_gagHarnessRingInventory, true, false) Playerref.equipitem(zbfCollarIronBlack, true, false) Playerref.equipitem(zbfAnkleIron, true, false) Playerref.equipitem(zbfCuffsIronBlack, true, false) Playerref.addtofaction(aSDD_RTRetributorFaction) libs.equipdevice(playerref, zadx_plugBlackSoulgemAnInventory, zadx_plugBlackSoulgemAn_scriptInstance, libs.zad_DeviousDevice, false, false) libs.equipdevice(playerref, zadx_plugShockSoulgemVagInventory, zadx_plugShockSoulgemVag_scriptInstance, libs.zad_DeviousDevice, false, false) libs.equipdevice(playerref, zadx_harnessBlockingInventory, zadx_harnessBlocking_scriptInstance, libs.zad_DeviousDevice, false, false) libs.equipdevice(playerref, zad_gagHarnessRingInventory, zad_gagHarnessRing_scriptInstance, libs.zad_DeviousDevice, false, false)EndFunction Starting 1 compile threads for 1 files...Compiling "QF_aSDD_RT1_08000F00"...C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(9,20): unknown type slautilscrC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadBQ00.psc(62,20): unknown type slautilscrC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadArmbinderQuestScript.psc(20,16): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadBQ00.psc(232,49): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadBQ00.psc(232,1): type mismatch on parameter 3 (did you forget a cast?)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadBQ00.psc(1012,11): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadBQ00.psc(1093,23): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadBQ00.psc(1093,5): type mismatch while assigning to a int (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadEquipScript.psc(5,20): unknown type slautilscrC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(957,31): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(957,8): type mismatch while assigning to a float (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(960,26): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(960,36): none is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(960,3): type mismatch while assigning to a float (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(970,77): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(970,87): none is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(970,20): type mismatch on parameter 3 (did you forget a cast?)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(970,1): cannot return a none from getoriginalrate, the types do not match (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1026,42): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1026,69): cannot divide a none from a int (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1026,32): cannot add a int to a none (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1146,26): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1146,7): type mismatch while assigning to a float (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1158,23): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1158,8): type mismatch while assigning to a float (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1160,10): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1224,9): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1225,9): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1266,20): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1266,2): type mismatch while assigning to a int (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1320,22): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1320,3): type mismatch while assigning to a int (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1413,27): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1413,53): cannot compare a none to a int (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1413,53): cannot relatively compare variables to NoneC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1528,48): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1528,74): cannot multiply a none with a float (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1528,82): cannot cast a none to a int, types are incompatibleC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1531,48): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1531,74): cannot multiply a none with a float (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1531,82): cannot cast a none to a int, types are incompatibleC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1552,54): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1552,79): cannot compare a none to a int (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1552,79): cannot relatively compare variables to NoneC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1606,49): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1606,75): cannot multiply a none with a float (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1606,83): cannot cast a none to a int, types are incompatibleC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(1660,9): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(2007,9): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(2031,12): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(2031,38): cannot compare a none to a float (cast missing or types unrelated)C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(2031,38): cannot relatively compare variables to NoneC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(2032,10): slautilscr is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_aSDD_RT1_08000F00.psc(96,108): zad_DeviousDevice is not a property on script zadlibs or one of its parentsC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_aSDD_RT1_08000F00.psc(97,110): zad_DeviousDevice is not a property on script zadlibs or one of its parentsC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_aSDD_RT1_08000F00.psc(98,102): zad_DeviousDevice is not a property on script zadlibs or one of its parentsC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\QF_aSDD_RT1_08000F00.psc(99,98): zad_DeviousDevice is not a property on script zadlibs or one of its parentsNo output generated for QF_aSDD_RT1_08000F00, compilation failed.Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on QF_aSDD_RT1_08000F00
Veladarius Posted August 14, 2015 Posted August 14, 2015 3 things: 1- Don't use equipitem with equipdevice, it is not needed and will just try equipping 2 of the items. Just use equipdevice to equip the items as it is less likely to cause issues. 2- Any of the required mods used for Integration (including SkyUI) needs to have all the scripts extracted into the scripts folder for you to compile any scripts using Integration's commands. Most already have their scripts in place but a few either use a bsa and need extracted or need downloaded separately. 3- 'zad_deviousdevice' is not a proper keyword to use in the equipdevice commands and does not exist. These are the keywords you need to be using: ; Keywords Keyword Property zad_DeviousBelt Auto Keyword Property zad_DeviousBra Auto Keyword Property zad_DeviousCollar Auto Keyword Property zad_DeviousArmCuffs Auto Keyword Property zad_DeviousLegCuffs Auto Keyword Property zad_DeviousArmbinder Auto Keyword Property zad_DeviousYoke Auto Keyword Property zad_DeviousCorset Auto Keyword Property zad_DeviousGloves Auto Keyword Property zad_DeviousHood Auto Keyword Property zad_DeviousSuit Auto Keyword Property zad_DeviousGag Auto Keyword Property zad_DeviousPlugVaginal Auto Keyword Property zad_DeviousPlugAnal Auto Keyword Property zad_DeviousHarness Auto Keyword Property zad_DeviousBlindfold Auto Keyword Property zad_DeviousBoots Auto Keyword Property zad_DeviousPiercingsNipple Auto Keyword Property zad_DeviousPiercingsVaginal Auto
Delzaron Posted August 14, 2015 Author Posted August 14, 2015 There are no BSA in the devious archives I have... all the scripts are in the folder, but the compilation dont work either.
Veladarius Posted August 14, 2015 Posted August 14, 2015 You also need to check the other required mods like SexLab, Aroused, ZAZ Animation Pack and SkyUI. If you are going to make a script that uses resources from another mod then you need all of the scripts from those mods as it checks them all when you compile your script.
Delzaron Posted August 15, 2015 Author Posted August 15, 2015 I checked the dependancies, but it doesnt solve the problem. I still cannot compile the script... Edit : I reinstlaled sexlab aroused rdux, and now i get this : Starting 1 compile threads for 1 files...Compiling "QF_aSDD_RT1_08000F00"...C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(2189,2): variable XPMSELib is undefinedC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(2189,11): none is not a known user-defined typeC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(2191,2): variable XPMSELib is undefinedC:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\zadLibs.psc(2191,11): none is not a known user-defined typeNo output generated for QF_aSDD_RT1_08000F00, compilation failed.Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on QF_aSDD_RT1_08000F00 It's better...
Veladarius Posted August 15, 2015 Posted August 15, 2015 v2.91 of Integration uses the latest XPMSE skeleton, apparently it has some node scaling abilities that it can handle now. If you don't have the latest skeleton and don't want to upgrade then go back to v2.90 of Integration.
Delzaron Posted August 15, 2015 Author Posted August 15, 2015 Thanks. Now, compilation works... But I get another problem : the function script who equipe the devious device sont he player works, it says everything is eqquiped, but nothing appera on the player, and there are no effects (for example, I equip a custon harness, but the armor on the player was not stripped)
Veladarius Posted August 15, 2015 Posted August 15, 2015 First, do the items require a key to remove? If not then they were not equipped properly. Second, there are 2 custom harnesses in the Expansion and only one blocks armor from being equipped.
Delzaron Posted August 16, 2015 Author Posted August 16, 2015 Yes, they need the restraint or chastity key to remove. I have also problems with the plugs and the gag... I use that line for equip them : libs.equipdevice(playerref, zadx_plugBlackSoulgemAnInventory, zadx_plugBlackSoulgemAn_scriptInstance, libs.zad_DeviousPlugVaginal, false, false)
Veladarius Posted August 16, 2015 Posted August 16, 2015 Make sure the plugs are equipped before the belt, if it is on they can't be used. The script looks correct just make sure the properties are correctly set, after that the scripts from Integration will put the script instance items on. You can confirm that they are there by using 'showinventory' on them in the console, you should see a number of items with no name but show as worn. If the scripts are working properly it is likely an issue with the installation of the meshes/textures.
Delzaron Posted August 17, 2015 Author Posted August 17, 2015 In fact, ther eis an issue with CBBE meshes... a part are into the characters bodies... But it's not the only problem. I got the plugs, the gag, the harness... But the harness is diequiped, the plug go out, and there are no gag animation on player face. But, in the inventory, all objects except the plug are equiped...
Veladarius Posted August 17, 2015 Posted August 17, 2015 For the clipping I use a bodyslide version of the devices with a custom body, they are available her on LL. The blocking harness will not hold plugs in place as it was set up to be used with a belt, not sure why it would not appear on the character but you may want to check the device hider to make sure it is not being hidden by something else. As for the animations, not sure why that would not work.
Delzaron Posted August 22, 2015 Author Posted August 22, 2015 I tried, and it"s dont work. I replaced the cuton harness by a iron belt. I dont get the quest chastity belt, and the plugs dont stay in place. The gag also not work, no face animation, and I can speak freely...
Veladarius Posted August 24, 2015 Posted August 24, 2015 Post a papyrus log from when you run your script and make sure logging is turned on in Integration.
Delzaron Posted August 25, 2015 Author Posted August 25, 2015 This is the log. I get no toolbox message when player receive the plugs, the belt and the gag. Gags and Belt are not locked, and not locakble, and dont occur animations (afece for the gag), and dont retain the plugs (belt). Idem for the custom collar, but i can lock it on the player. Plugs have no effects... [08/25/2015 - 09:03:42PM] Papyrus log opened (PC)[08/25/2015 - 09:03:42PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)[08/25/2015 - 09:03:42PM] Memory page: 128 (min) 512 (max) 76800 (max total)[08/25/2015 - 09:04:02PM] Cannot open store for class "dlc1scwispwallscript", missing file?[08/25/2015 - 09:04:02PM] Cannot open store for class "DLC2BenthicLurkerFXSCRIPT", missing file?[08/25/2015 - 09:04:04PM] Cannot open store for class "follower3dnpc", missing file?[08/25/2015 - 09:04:06PM] Cannot open store for class "MercerFreyPuzzleTrigger", missing file?[08/25/2015 - 09:04:07PM] Cannot open store for class "BloodsbaneEffect", missing file?[08/25/2015 - 09:04:09PM] Cannot open store for class "jjnudebombtimer", missing file?[08/25/2015 - 09:04:10PM] Cannot open store for class "tweakfollowerscript", missing file?[08/25/2015 - 09:04:12PM] Cannot open store for class "uiwheelmenu", missing file?[08/25/2015 - 09:04:12PM] Cannot open store for class "uimenubase", missing file?[08/25/2015 - 09:04:12PM] Cannot open store for class "yarc_initquestscript", missing file?[08/25/2015 - 09:04:20PM] ERROR: Unable to bind script MercerFreyPuzzleTrigger to (1D036716) because their base types do not match[08/25/2015 - 09:04:20PM] ERROR: Unable to bind script BloodsbaneEffect to (3504D026) because their base types do not match[08/25/2015 - 09:04:51PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0301AAC8) because their base types do not match[08/25/2015 - 09:04:51PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (03016E02) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] ERROR: Unable to bind script TGKillScript to alias Brynjolf on quest TGDestroy (1D000D62) because their base types do not match[08/25/2015 - 09:04:51PM] ERROR: Unable to bind script TGDestroyNightingalesDropItemsonDeath to alias KarliahAlias on quest TGDestroyNightingales (1D0202CE) because their base types do not match[08/25/2015 - 09:04:51PM] ERROR: Unable to bind script aaxYPQ02StoreDoorScript to alias StoreDoor on quest aaxYoanaPathQuest02 (6C059FF1) because their base types do not match[08/25/2015 - 09:04:51PM] ERROR: Property zzEstrusArmaMapCore on script zzestrusquestcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzEstrusAnimEventCore on script zzestrusquestcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzEstrusSoundCore on script zzestrusquestcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzForswornCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003394) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorThievesGuildLeaderCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DED) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesCollegeRobesApprenticeVariant2 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFA) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesBeggarRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF1) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorGuardCuirassWinterhold on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD6) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorDwarvenCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC9) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesNocturnal on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1E) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorLeatherCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDD) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFarmClothes03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E01) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorImperialCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD8) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorSteelPlateCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE6) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFarmClothes03withExtras on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E02) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorOrcishCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE0) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMerchantClothesVariant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E12) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorNightingaleCuirassPlayer03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDF) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMinerClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E14) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorImperialLightCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD9) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorGuardCuirassWhiterun on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD5) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorElvenCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCB) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorDraugrCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC8) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesWenchClothes01 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338B) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorLinweCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDE) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesBlackSmithVariant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF3) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorGuardCuirassThePale on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD4) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorDragonplateCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC6) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFarmClothes01 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFF) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzDBClothesJester on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003391) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesJarl_var1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0F) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMonkRobesColorGrey on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E19) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFineClothes02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E09) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesJarl on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0B) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMerchantClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E11) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzDA05SaviorsHide on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338D) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorStormcloakBearCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE7) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorCompanionsCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC4) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesBarKeeper on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEF) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesJarl02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0C) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesCollegeRobesApprenticeVariant1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF9) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorDaedricCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC5) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesJarl_var2 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E10) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesWeddingDress on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338A) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorThievesGuildKarliahCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEC) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFarmClothesVariant02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E04) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzDA02Armor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338C) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzSheogorathOutfit on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003396) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorGuardCuirassFalkreath on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCF) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorImperialStuddedCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDA) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesPsiijicRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003383) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorHideCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD7) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorStormcloakCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE8) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorTsunCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEE) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzdunWaywardPassGhostArmor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003393) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMonkRobesColorRed on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1A) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesJarl03_var1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0E) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMGRobesArchmage on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E13) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesThalmorrobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003387) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzDBClothesRedguardClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003392) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesRobesMageNoviceTemplate on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003386) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMinerClothesVariant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E15) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorGuardCuirassMarkarth on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD1) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesRedguardClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003384) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMythicDawnRobesNoHood on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1C) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorGuardCuirassRiften on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD2) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFarmClothes02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E00) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMonkRobesColorBrown on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E17) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFarmClothesVariant04 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E06) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzDA16VaerminaRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338E) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorThievesGuildCuirassPlayer on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEB) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFarmClothesVariant03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E05) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorSteelCuirassA on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE4) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzDBArmorShortSleeve on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003390) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorIronCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDC) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFineClothes01Variant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E08) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesPrisonerTunic on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003382) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorGuardCuirassSolitude on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD3) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesCollegeRobesCommon on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFB) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesCollegeRobesCommonVariant1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFC) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorBladesCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC3) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorBanditCuirass2 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC1) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorStuddedCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEA) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesNecromancerRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1D) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesBarKeeperVariant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF0) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorEbonyCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCA) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesUlfric on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003388) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMournersClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1B) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorBanditCuirass3 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC2) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesEmperor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFD) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorGuardCuirassHjaalmarch on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD0) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFineClothes02Variant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0A) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesRobesGreybeardTunic on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003385) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesCollegeRobesApprentice on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF8) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMonkRobesColorGreen on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E18) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorStormcloakCuirassSleeves on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE9) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFarmClothes04 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E03) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesJarl03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0D) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorFalmerCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCD) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesMonkRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E16) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorIronBandedCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDB) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesChild01 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF5) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorBanditCuirass1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC0) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorGlassCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCE) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesChild03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF7) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesFineClothes01 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E07) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesPrisonerRags on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003381) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorScaledCuirassB on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE3) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorSteelCuirassB on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE5) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesChild02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF6) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorPenitusCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE1) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzDBClothesRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003397) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesWarlockRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003389) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzGeneralTulliusArmor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003395) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorElvenLightCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCC) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzDBArmor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338F) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesChef on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF4) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorDragonscaleCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC7) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorBanditCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DBF) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesExecutionerRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFE) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzArmorScaledCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE2) is not the right type[08/25/2015 - 09:04:51PM] ERROR: Property zzClothesBlackSmith on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF2) is not the right type[08/25/2015 - 09:04:51PM] warning: Property Town on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (75001D9C) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property City on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (75001D9C) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property WorkScript on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property CWSiegeDefendObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property Work2 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property WhoreMK on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property WhoreWR on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property WhoreRI on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property CWSiegeAttackObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property WhoreSO on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property Work3 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property WhoreWH on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property Work1 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] ERROR: Unable to bind script AFS2BriarDranaCompanionDeathScript to alias AFSCompanion5 on quest AFS2BriarDrana (8F066FDA) because their base types do not match[08/25/2015 - 09:04:51PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027110) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027111) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027112) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property doOnce on script HallofStoriesKeyholeScript attached to (000847D6) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:51PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027113) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027117) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property doOnce on script HallofStoriesKeyholeScript attached to (0004E2B9) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027116) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027115) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027114) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property LocationCentreMarker on script SofiaUpdateScript attached to JJSofiaScripts (5F00AA58) cannot be bound because <NULL alias> (4) on <NULL quest> (5F00AA58) is not the right type[08/25/2015 - 09:04:52PM] warning: Property myDiseaseSpell on script SF_manny_POS_QuestProstitute_01000D86 attached to (50000D86) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property myRefType on script SF_manny_POS_QuestProstitute_01000D86 attached to (50000D86) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property myActor on script SF_manny_POS_QuestProstitute_01000D86 attached to (50000D86) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property AFS5OldGods3Initiation on script afs5oldgods3arrivaltriggerscript attached to (8F0548E3) cannot be bound because <NULL form> (8F053DCC) is not the right type[08/25/2015 - 09:04:52PM] warning: Property aFTDInsmouthLurker2Spot on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property aFTDInsmouthSeeker1Spot on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property aFTDInsmouthSeeker2Spot on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property aFTDInsmouthLurker1Spot on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property aFTDLurkerInsmouth1REF on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be bound because <NULL form> (8D04BF32) is not the right type[08/25/2015 - 09:04:52PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (0302710F) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to (0301DC33) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property DelvinMalloryGhost on script tgdestroyquestscript attached to TGDestroy (1D000D62) cannot be bound because <NULL alias> (25) on <NULL quest> (1D000D62) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property JJSofiaAliasScripts on script SofiaTerminateScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F01C8CE) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property JJSofiaGiveItem on script SofiaTerminateScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F00E096) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property JJSofiaLocationDialogue on script SofiaTerminateScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F00BA81) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property JJSofiaClothing on script SofiaTerminateScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F02C23F) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property JJSofiaLocationDialogue on script SofiaResetScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F00BA81) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property JJSofiaGiveItem on script SofiaResetScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F00E096) is not the right type[08/25/2015 - 09:04:52PM] warning: Property doOnce on script HallofStoriesKeyholeScript attached to (1D0361AB) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property aFTDFaraniTop on script QF_aFTD1infiltration_05022731 attached to aFTD1Infiltration (8D022731) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property Alias_aFTDFaraniAlias on script QF_aFTD1infiltration_05022731 attached to aFTD1Infiltration (8D022731) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property aFTDFaraniBoots on script QF_aFTD1infiltration_05022731 attached to aFTD1Infiltration (8D022731) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property aFTDFaraniREF on script QF_aFTD1infiltration_05022731 attached to aFTD1Infiltration (8D022731) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property gate on script CdxEQ02Gates attached to (890EF613) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (03017E85) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property SLSW_Twig on script slsw_mcmconfig attached to SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property SLSW_Brothel on script slsw_mcmconfig attached to SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property SLSW_Lilly on script slsw_mcmconfig attached to SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property SLSW_DrugBrothel on script slsw_mcmconfig attached to SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property SecretDoor on script dunLostEchoCaveBurnMushrooms attached to (92063DB7) cannot be bound because <NULL form> (92063C52) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property SexLabActorStats on script SLAttractionMainScript attached to SLAttraction_Main (0B0012C7) cannot be bound because <NULL form> (0803CE6B) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property Gears04 on script blackreachElevatorButtonScript attached to (920062B7) cannot be bound because <NULL form> (920062B4) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property Gears05 on script blackreachElevatorButtonScript attached to (920062B7) cannot be bound because <NULL form> (920062C4) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property Gears03 on script blackreachElevatorButtonScript attached to (920062B7) cannot be bound because <NULL form> (920062B3) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property collarPostureLeatherRendered on script zadlibs attached to zadQuest (1000F624) cannot be bound because <NULL form> (10047003) is not the right type[08/25/2015 - 09:04:52PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92021508) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:52PM] warning: Property doOnce on script HallofStoriesKeyholeScript attached to (000CEE2B) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property DeathContainer on script WIDeadBodyCleanupScript attached to (000198F8) cannot be bound because <NULL form> (000DEF3F) is not the right type[08/25/2015 - 09:04:52PM] warning: Property DLC1TrollRaceArmored on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC1SabreCatGlowRace on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC1TrollFrostRaceArmored on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC1SkinTrollArmored on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncDLC1SabrecatHard on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncDLC1TrollArmoredErect on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncSkinTrollArmoredNormal on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC1SkinTrollFrostArmored on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncDLC1TrollFrostArmoredErect on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property myActor on script dunPinewatchMakeHostileScript attached to (8F067646) cannot be bound because <NULL form> (8F06764E) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92021506) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92043F99) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:52PM] warning: Property MASCoreHPBar on script MASCoreScript attached to (33011E88) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property TitanMaxHealth on script MASKagrenarScript attached to MASKagrenar (33005E60) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property AFS4KoldunInitiation on script afs4kolduninitiationsannideathscript attached to (8F04669C) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property AFS4KoldunWay on script afs4loregroveinttriggerscript attached to (8F046120) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property ThisQuest on script mf_solicitprostitute attached to mf_SoliciteProstitute (7500BA71) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92021507) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:52PM] warning: Property delivery on script CDxPD_Delivery attached to alias delivery on quest CDxPackageDelivery (89117012) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property pTGDestroyNightingales09PostQuest on script TG09QuestScript attached to TG09 (00021555) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property AFS1FollowKatalia on script afs1findkalydiscript attached to (8F00A497) cannot be bound because <NULL form> (8F0035DC) is not the right type[08/25/2015 - 09:04:52PM] warning: Property MASCoreHPBar on script MASCoreScript attached to (33011E82) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property MASCoreHPBar on script MASCoreScript attached to (33011E84) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property MASRedBeam on script MASShieldTrickLeverScript attached to (330165F5) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property BadShader on script MASFirstAnswer attached to (33005E69) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property Ethrane on script sf_afs2newshaman2ethrane_03025b81 attached to (8F025B81) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92043F97) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property AFS5OldGods3Initiation on script afs5oldgods3ruinstriggerscript attached to (8F05434C) cannot be bound because <NULL form> (8F053DCC) is not the right type[08/25/2015 - 09:04:52PM] warning: Property MASRingDropScript on script MASMandynDeath attached to (3300E7FE) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2ThirskRieklingRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinRiekling01 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncSkinRieklingChief on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinThriskRiekling03 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2WerebearBeastRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncWerebearMaleNaked on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncAshmanMaleNaked on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinNakedWereBearBeast on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2RieklingRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncSkinRiekling03Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncLurkerMaleNaked on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncSkinRiekling01 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncSkinRiekling01Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinRiekling02Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncSkinThriskRiekling02 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncSkinRiekling02Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinThriskRiekling02 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinRiekling03Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncSkinThriskRiekling01 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinAshSpawn on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinRiekling01Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2AshSpawnRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinBenthicLurker on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property slncSkinThriskRiekling03 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2LurkerRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinThriskRiekling01 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] warning: Property DLC2SkinRieklingChief on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property JJSofiaLocationDialogue on script SofiaCommentScript attached to JJSofiaDialogue (5F001D8B) cannot be bound because <NULL form> (5F00BA81) is not the right type[08/25/2015 - 09:04:52PM] warning: Property Explosion1 on script MASMTSpawnScript attached to (3301AB32) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property Didsleep on script CDxEQ02Sleep attached to (890F52CC) cannot be bound because (000FB981) is not the right type[08/25/2015 - 09:04:52PM] warning: Property MiaDungeonSlaveMarker1 on script PF_MiaDungeonSlave3Chained_06054A3F attached to (14054A3F) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:52PM] ERROR: Property ActorRef on script slattractionconfigscript attached to SLAttraction_Config (0B002DB3) cannot be bound because <NULL form> (08000000) is not the right type[08/25/2015 - 09:04:52PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92043F98) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:52PM] warning: Property HircinesRingPower on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:53PM] VM is freezing...[08/25/2015 - 09:04:53PM] VM is frozen[08/25/2015 - 09:04:53PM] Reverting game...[08/25/2015 - 09:04:54PM] ERROR: Unable to bind script BloodsbaneEffect to (3504D026) because their base types do not match[08/25/2015 - 09:04:54PM] ERROR: Unable to bind script MercerFreyPuzzleTrigger to (1D036716) because their base types do not match[08/25/2015 - 09:04:54PM] ERROR: Unable to bind script TGDestroyNightingalesDropItemsonDeath to alias KarliahAlias on quest TGDestroyNightingales (1D0202CE) because their base types do not match[08/25/2015 - 09:04:54PM] ERROR: Unable to bind script TGKillScript to alias Brynjolf on quest TGDestroy (1D000D62) because their base types do not match[08/25/2015 - 09:04:54PM] ERROR: Unable to bind script aaxYPQ02StoreDoorScript to alias StoreDoor on quest aaxYoanaPathQuest02 (6C059FF1) because their base types do not match[08/25/2015 - 09:04:54PM] ERROR: Unable to bind script AFS2BriarDranaCompanionDeathScript to alias AFSCompanion5 on quest AFS2BriarDrana (8F066FDA) because their base types do not match[08/25/2015 - 09:04:54PM] ERROR: Unable to bind script DLC2WaterScript to alias Water on quest DLC2TTF2 (0301AAC8) because their base types do not match[08/25/2015 - 09:04:54PM] warning: Property doOnce on script HallofStoriesKeyholeScript attached to (000847D6) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property ActorRef on script slattractionconfigscript attached to SLAttraction_Config (0B002DB3) cannot be bound because <NULL form> (08000000) is not the right type[08/25/2015 - 09:04:55PM] warning: Property doOnce on script HallofStoriesKeyholeScript attached to (0004E2B9) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property Ethrane on script sf_afs2newshaman2ethrane_03025b81 attached to (8F025B81) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property WorkScript on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property CWSiegeDefendObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property Work2 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property WhoreMK on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property WhoreWR on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property WhoreRI on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property CWSiegeAttackObj on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property WhoreSO on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property Work3 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property WhoreWH on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property Work1 on script slsw_scum attached to alias PlayerAlias on quest SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property LocationCentreMarker on script SofiaUpdateScript attached to JJSofiaScripts (5F00AA58) cannot be bound because <NULL alias> (4) on <NULL quest> (5F00AA58) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property JJSofiaLocationDialogue on script SofiaCommentScript attached to JJSofiaDialogue (5F001D8B) cannot be bound because <NULL form> (5F00BA81) is not the right type[08/25/2015 - 09:04:55PM] warning: Property AFS4KoldunInitiation on script afs4kolduninitiationsannideathscript attached to (8F04669C) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property AFS5OldGods3Initiation on script afs5oldgods3arrivaltriggerscript attached to (8F0548E3) cannot be bound because <NULL form> (8F053DCC) is not the right type[08/25/2015 - 09:04:55PM] warning: Property aFTDInsmouthLurker2Spot on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property aFTDInsmouthSeeker1Spot on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property aFTDInsmouthSeeker2Spot on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property aFTDInsmouthLurker1Spot on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property aFTDLurkerInsmouth1REF on script QF_aFTDInsmouthControler_05043299 attached to aFTDInsmouthControler (8D043299) cannot be bound because <NULL form> (8D04BF32) is not the right type[08/25/2015 - 09:04:55PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (0302710F) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property Axe on script DLC2DBAncientDragonbornSCRIPT attached to (0301DC33) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property DelvinMalloryGhost on script tgdestroyquestscript attached to TGDestroy (1D000D62) cannot be bound because <NULL alias> (25) on <NULL quest> (1D000D62) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property JJSofiaAliasScripts on script SofiaTerminateScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F01C8CE) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property JJSofiaGiveItem on script SofiaTerminateScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F00E096) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property JJSofiaLocationDialogue on script SofiaTerminateScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F00BA81) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property JJSofiaClothing on script SofiaTerminateScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F02C23F) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property JJSofiaLocationDialogue on script SofiaResetScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F00BA81) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property JJSofiaGiveItem on script SofiaResetScripts attached to JJSofiaFollowerMain (5F01010A) cannot be bound because <NULL form> (5F00E096) is not the right type[08/25/2015 - 09:04:55PM] warning: Property doOnce on script HallofStoriesKeyholeScript attached to (1D0361AB) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property gate on script CdxEQ02Gates attached to (890EF613) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property Alias_LevitationTarget on script DLC2_QF_DLC2DialogueTelMithry_02017E85 attached to DLC2DialogueTelMithryn (03017E85) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property SLSW_Twig on script slsw_mcmconfig attached to SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property SLSW_Brothel on script slsw_mcmconfig attached to SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property SLSW_Lilly on script slsw_mcmconfig attached to SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property SLSW_DrugBrothel on script slsw_mcmconfig attached to SLSW (7E002863) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property SecretDoor on script dunLostEchoCaveBurnMushrooms attached to (92063DB7) cannot be bound because <NULL form> (92063C52) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property SexLabActorStats on script SLAttractionMainScript attached to SLAttraction_Main (0B0012C7) cannot be bound because <NULL form> (0803CE6B) is not the right type[08/25/2015 - 09:04:55PM] warning: Property myDiseaseSpell on script SF_manny_POS_QuestProstitute_01000D86 attached to (50000D86) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property myRefType on script SF_manny_POS_QuestProstitute_01000D86 attached to (50000D86) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property myActor on script SF_manny_POS_QuestProstitute_01000D86 attached to (50000D86) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property Gears04 on script blackreachElevatorButtonScript attached to (920062B7) cannot be bound because <NULL form> (920062B4) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property Gears05 on script blackreachElevatorButtonScript attached to (920062B7) cannot be bound because <NULL form> (920062C4) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property Gears03 on script blackreachElevatorButtonScript attached to (920062B7) cannot be bound because <NULL form> (920062B3) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzForswornCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003394) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorThievesGuildLeaderCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DED) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesCollegeRobesApprenticeVariant2 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFA) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesBeggarRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF1) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorGuardCuirassWinterhold on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD6) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorDwarvenCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC9) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesNocturnal on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1E) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorLeatherCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDD) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFarmClothes03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E01) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorImperialCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD8) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorSteelPlateCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE6) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFarmClothes03withExtras on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E02) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorOrcishCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE0) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMerchantClothesVariant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E12) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorNightingaleCuirassPlayer03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDF) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMinerClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E14) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorImperialLightCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD9) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorGuardCuirassWhiterun on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD5) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorElvenCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCB) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorDraugrCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC8) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesWenchClothes01 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338B) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorLinweCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDE) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesBlackSmithVariant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF3) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorGuardCuirassThePale on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD4) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorDragonplateCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC6) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFarmClothes01 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFF) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzDBClothesJester on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003391) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesJarl_var1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0F) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMonkRobesColorGrey on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E19) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFineClothes02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E09) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesJarl on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0B) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMerchantClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E11) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzDA05SaviorsHide on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338D) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorStormcloakBearCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE7) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorCompanionsCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC4) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesBarKeeper on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEF) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesJarl02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0C) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesCollegeRobesApprenticeVariant1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF9) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorDaedricCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC5) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesJarl_var2 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E10) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesWeddingDress on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338A) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorThievesGuildKarliahCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEC) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFarmClothesVariant02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E04) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzDA02Armor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338C) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzSheogorathOutfit on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003396) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorGuardCuirassFalkreath on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCF) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorImperialStuddedCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDA) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesPsiijicRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003383) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorHideCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD7) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorStormcloakCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE8) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorTsunCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEE) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzdunWaywardPassGhostArmor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003393) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMonkRobesColorRed on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1A) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesJarl03_var1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0E) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMGRobesArchmage on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E13) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesThalmorrobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003387) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzDBClothesRedguardClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003392) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesRobesMageNoviceTemplate on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003386) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMinerClothesVariant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E15) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorGuardCuirassMarkarth on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD1) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesRedguardClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003384) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMythicDawnRobesNoHood on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1C) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorGuardCuirassRiften on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD2) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFarmClothes02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E00) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMonkRobesColorBrown on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E17) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFarmClothesVariant04 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E06) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzDA16VaerminaRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338E) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorThievesGuildCuirassPlayer on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEB) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFarmClothesVariant03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E05) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorSteelCuirassA on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE4) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzDBArmorShortSleeve on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003390) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorIronCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDC) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFineClothes01Variant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E08) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesPrisonerTunic on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003382) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorGuardCuirassSolitude on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD3) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesCollegeRobesCommon on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFB) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesCollegeRobesCommonVariant1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFC) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorBladesCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC3) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorBanditCuirass2 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC1) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorStuddedCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DEA) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesNecromancerRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1D) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesBarKeeperVariant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF0) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorEbonyCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCA) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesUlfric on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003388) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMournersClothes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E1B) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorBanditCuirass3 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC2) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesEmperor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFD) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorGuardCuirassHjaalmarch on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DD0) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFineClothes02Variant on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0A) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesRobesGreybeardTunic on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003385) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesCollegeRobesApprentice on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF8) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMonkRobesColorGreen on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E18) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorStormcloakCuirassSleeves on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE9) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFarmClothes04 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E03) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesJarl03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E0D) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorFalmerCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCD) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesMonkRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E16) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorIronBandedCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DDB) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesChild01 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF5) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorBanditCuirass1 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC0) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorGlassCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCE) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesChild03 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF7) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesFineClothes01 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002E07) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesPrisonerRags on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003381) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorScaledCuirassB on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE3) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorSteelCuirassB on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE5) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesChild02 on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF6) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorPenitusCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE1) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzDBClothesRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003397) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesWarlockRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003389) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzGeneralTulliusArmor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F003395) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorElvenLightCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DCC) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzDBArmor on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F00338F) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesChef on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF4) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorDragonscaleCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DC7) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorBanditCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DBF) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesExecutionerRobes on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DFE) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzArmorScaledCuirass on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DE2) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property zzClothesBlackSmith on script zzcommonarmamapcorescript attached to alias zzEstrusPlayer on quest zzEstrusQuest (6F004888) cannot be bound because <NULL form> (6F002DF2) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property collarPostureLeatherRendered on script zadlibs attached to zadQuest (1000F624) cannot be bound because <NULL form> (10047003) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property AFS5OldGods3Initiation on script afs5oldgods3ruinstriggerscript attached to (8F05434C) cannot be bound because <NULL form> (8F053DCC) is not the right type[08/25/2015 - 09:04:55PM] warning: Property DLC1VampireChangeEffect on script dlc1playervampirechangescript attached to DLC1PlayerVampireQuest (020071D0) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027114) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92021508) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:55PM] warning: Property doOnce on script HallofStoriesKeyholeScript attached to (000CEE2B) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property DLC1TrollRaceArmored on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property DLC1SabreCatGlowRace on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property DLC1TrollFrostRaceArmored on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property DLC1SkinTrollArmored on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property slncDLC1SabrecatHard on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property slncDLC1TrollArmoredErect on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property slncSkinTrollArmoredNormal on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property DLC1SkinTrollFrostArmored on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property slncDLC1TrollFrostArmoredErect on script slncaddondgscript attached to slncAddonDG (54002F9A) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property Town on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (75001D9C) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property City on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (75001D9C) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property TG05KarliahInvisibilitySpell on script tg06questscript attached to TG06 (00021552) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property FollowerDismissMessage on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property FollowerDismissMessageCompanionsFemale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property FollowerDismissMessageCompanions on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property FollowerDismissMessageWedding on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property FollowerDismissMessageWait on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property DLC2RRTeldrynSero on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property FollowerDismissMessageCompanionsMale on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property DismissedFollower on script DLC2HirelingQuestScript attached to DLC2HirelingQuest (03038566) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property DeathContainer on script WIDeadBodyCleanupScript attached to (000198F8) cannot be bound because <NULL form> (000DEF3F) is not the right type[08/25/2015 - 09:04:55PM] warning: Property AFS4KoldunWay on script afs4loregroveinttriggerscript attached to (8F046120) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027116) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property myActor on script dunPinewatchMakeHostileScript attached to (8F067646) cannot be bound because <NULL form> (8F06764E) is not the right type[08/25/2015 - 09:04:55PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027111) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] warning: Property ThisQuest on script mf_solicitprostitute attached to mf_SoliciteProstitute (7500BA71) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92021507) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:55PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92021506) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:55PM] warning: Property delivery on script CDxPD_Delivery attached to alias delivery on quest CDxPackageDelivery (89117012) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:55PM] ERROR: Property AFS1FollowKatalia on script afs1findkalydiscript attached to (8F00A497) cannot be bound because <NULL form> (8F0035DC) is not the right type[08/25/2015 - 09:04:56PM] warning: Property MASCoreHPBar on script MASCoreScript attached to (33011E84) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property TitanMaxHealth on script MASKagrenarScript attached to MASKagrenar (33005E60) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property aFTDFaraniTop on script QF_aFTD1infiltration_05022731 attached to aFTD1Infiltration (8D022731) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property Alias_aFTDFaraniAlias on script QF_aFTD1infiltration_05022731 attached to aFTD1Infiltration (8D022731) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property aFTDFaraniBoots on script QF_aFTD1infiltration_05022731 attached to aFTD1Infiltration (8D022731) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property aFTDFaraniREF on script QF_aFTD1infiltration_05022731 attached to aFTD1Infiltration (8D022731) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property pTGDestroyNightingales09PostQuest on script TG09QuestScript attached to TG09 (00021555) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92043F97) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:56PM] warning: Property MagicResistance50 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property MagicResistance30 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property WindWalker on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property Necromancy on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property Bladesman60 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property HackAndSlash90 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property HackAndSlash60 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property MageArmor30 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DarkSouls on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property SavageStrike on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property Bladesman90 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property MageArmor50 on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property AugmentedFrost on script DLC1SeranaLevelingScript attached to (02003BA8) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property MASRedBeam on script MASShieldTrickLeverScript attached to (330165F5) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property MASCoreHPBar on script MASCoreScript attached to (33011E88) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property BadShader on script MASFirstAnswer attached to (33005E69) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property MASRingDropScript on script MASMandynDeath attached to (3300E7FE) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2ThirskRieklingRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinRiekling01 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncSkinRieklingChief on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinThriskRiekling03 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2WerebearBeastRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncWerebearMaleNaked on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncAshmanMaleNaked on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinNakedWereBearBeast on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2RieklingRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncSkinRiekling03Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncLurkerMaleNaked on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncSkinRiekling01 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncSkinRiekling01Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinRiekling02Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncSkinThriskRiekling02 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncSkinRiekling02Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinThriskRiekling02 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinRiekling03Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncSkinThriskRiekling01 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinAshSpawn on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinRiekling01Melee on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2AshSpawnRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinBenthicLurker on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property slncSkinThriskRiekling03 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2LurkerRace on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinThriskRiekling01 on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property DLC2SkinRieklingChief on script slncaddondbscript attached to slncAddonDB (55005911) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027110) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027115) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property Explosion1 on script MASMTSpawnScript attached to (3301AB32) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property AshSpawnAttachChancePercent on script DLC2AshSpawnAttackChanceScript attached to alias Player on quest DLC2Init (03016E02) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property MASCoreHPBar on script MASCoreScript attached to (33011E82) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] ERROR: Property Didsleep on script CDxEQ02Sleep attached to (890F52CC) cannot be bound because (000FB981) is not the right type[08/25/2015 - 09:04:56PM] warning: Property MiaDungeonSlaveMarker1 on script PF_MiaDungeonSlave3Chained_06054A3F attached to (14054A3F) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027117) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027113) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property PlatePosition on script dlc2toldarstombpuzzleplatescript attached to (03027112) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] warning: Property HircinesRingPower on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:04:56PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92043F99) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:04:56PM] ERROR: Property DigTestStrikes on script aTIDMineOre1Script attached to (92043F98) cannot be bound because <NULL form> (92000DAF) is not the right type[08/25/2015 - 09:05:36PM] Loading game...[08/25/2015 - 09:05:36PM] warning: Variable ::Alias_Jala_var on script na_main_questscript loaded from save not found within the actual object. This variable will be skipped.[08/25/2015 - 09:05:36PM] warning: Variable ::Jala_var on script na_mcm_menu loaded from save not found within the actual object. This variable will be skipped.[08/25/2015 - 09:05:36PM] warning: Variable ::Jala_var on script na_mainscript loaded from save not found within the actual object. This variable will be skipped.[08/25/2015 - 09:05:36PM] warning: Variable ::Alias_Bear_Enemy_var on script na_mq_bearscript loaded from save not found within the actual object. This variable will be skipped.[08/25/2015 - 09:05:36PM] warning: Variable ::Alias_BearEnemyMarker_var on script na_mq_bearscript loaded from save not found within the actual object. This variable will be skipped.[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4568 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4509 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4512 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4506 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4511 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4570 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4514 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4542 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4802 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4799 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4801 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4798 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4513 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4605 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] warning: Function slaCloakEffScr..OnEffectStart in stack frame 0 in stack 4510 differs from the in-game resource files - using version from save[08/25/2015 - 09:05:37PM] VM is thawing...[08/25/2015 - 09:05:37PM] Mia SexSlPlayerScript oninit[08/25/2015 - 09:05:37PM] ERROR: Unable to bind script CDxSummonsLetter04 to (FF000F6E) because their base types do not match[08/25/2015 - 09:05:37PM] ERROR: Unable to bind script CDxPD_Delivery to (FF000F73) because their base types do not match[08/25/2015 - 09:05:39PM] SexSlaveFramework OnInit() have 0 sexslaves on bootup[08/25/2015 - 09:05:39PM] ERROR: File "AliciaPainSlut.esp" does not exist or is not currently loaded.stack: <unknown self>.Game.GetFormFromFile() - "<native>" Line ? [MiaMeetsAlicia (1403FE9F)].MiaMeetsAliciaScript.OnInit() - "MiaMeetsAliciaScript.psc" Line 5[08/25/2015 - 09:05:39PM] MiaMeetsAlicia onInit Alicia is NOT in the game[08/25/2015 - 09:05:39PM] SexSlAnimationPlayerScrip OnInit[08/25/2015 - 09:05:41PM] [sexSlConfigScript <SexSlConfig (14032106)>] INITIALIZED[08/25/2015 - 09:05:41PM] [sexSlConfigScript <SexSlConfig (14032106)>]:Updating 0 to 51[08/25/2015 - 09:05:41PM] [AFS_MCMScript <AFS_MCM (8F0748CF)>] INITIALIZED[08/25/2015 - 09:05:41PM] [ftmmcmconfigmenu <FtMMenu (91016E85)>] INITIALIZED[08/25/2015 - 09:05:41PM] [Zad]: OnVersionUpdate(3/0)[08/25/2015 - 09:05:42PM] ================================================[ Moonlight Tales ]===============================================[08/25/2015 - 09:05:42PM] Performing compatibility check. Ignore the papyrus warnings that may appear bellow. [08/25/2015 - 09:05:42PM] ) ( _ _ ) ( [08/25/2015 - 09:05:42PM] (( _ { ˇˇ-; Awoooooooooooooooooooo! ;-ˇˇ } _ )) [08/25/2015 - 09:05:42PM] )).-' {{ ;'` `'; '-.(( [08/25/2015 - 09:05:42PM] ( ( ;._ \ // _.; ) ) [08/25/2015 - 09:05:42PM] ================================================[ Moonlight Tales ]===============================================[08/25/2015 - 09:05:42PM] [CF][Framework] Creature Framework RC10 (10008) is initialising[08/25/2015 - 09:05:42PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>] OnPlayerLoadGame...[08/25/2015 - 09:05:42PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] Dawnguard.esm found - Initializing vampire hate list[08/25/2015 - 09:05:42PM] DLC2InitCrossDLCScript found: [DLC1VQ01QuestScript <DLC1VQ01 (0200352A)>], [bYOH_QF_BYOHRelationshipAdopt_010042B4 <BYOHRelationshipAdoption (040042B4)>][08/25/2015 - 09:05:42PM] [slac] AC: Initialising[08/25/2015 - 09:05:42PM] [slac] AC: Checking loaded mods[08/25/2015 - 09:05:42PM] [DCL1VampireTurnPlayerScript <alias Player on quest DLC1VampireTurn (0200588C)>]OnPlayerLoadGame() calling MakeAliasesEyesRed()[08/25/2015 - 09:05:42PM] [dlc1vampireturnscript <DLC1VampireTurn (0200588C)>]MakeAliasesEyesRed()[08/25/2015 - 09:05:42PM] ERROR: Cannot call GetActorReference() on a None object, aborting function callstack: [JJSofiaGetHasSKSE (5F00E5FE)].SofiaHasSKSEscript.CheckSKSE() - "SofiaHasSKSEscript.psc" Line 22 [alias PlayerREF on quest JJSofiaGetHasSKSE (5F00E5FE)].SofiaCheckOnLoadSKSE.OnPlayerLoadGame() - "SofiaCheckOnLoadSKSE.psc" Line 6[08/25/2015 - 09:05:42PM] ERROR: Cannot call AllowBleedoutDialogue() on a None object, aborting function callstack: [JJSofiaGetHasSKSE (5F00E5FE)].SofiaHasSKSEscript.CheckSKSE() - "SofiaHasSKSEscript.psc" Line 22 [alias PlayerREF on quest JJSofiaGetHasSKSE (5F00E5FE)].SofiaCheckOnLoadSKSE.OnPlayerLoadGame() - "SofiaCheckOnLoadSKSE.psc" Line 6[08/25/2015 - 09:05:42PM] [CF][Framework] SexLab 1.59c is installed[08/25/2015 - 09:05:42PM] [CF][Framework] SexLab Aroused 20140124 is installed[08/25/2015 - 09:05:42PM] [CF][Framework] JContainers 3.2 is installed[08/25/2015 - 09:05:42PM] [slac] AC: Checking Defeat[08/25/2015 - 09:05:42PM] [slac] AC: Defeat Registered[08/25/2015 - 09:05:42PM] [slamainscr <sla_Main (0A042D62)>]: starting maintenance... Update frequency 120.000000[08/25/2015 - 09:05:42PM] Devious Captures: Defeat events registered[08/25/2015 - 09:05:42PM] [Zad]: [Plug Moan] Loaded: 10%[08/25/2015 - 09:05:42PM] [Zad]: [bra Chafing] Loaded: 10%[08/25/2015 - 09:05:42PM] [Zad]: [Restraints+Armor] Loaded: 7%[08/25/2015 - 09:05:42PM] [Zad]: [Health Drain] Loaded: 50%[08/25/2015 - 09:05:42PM] [Zad]: [Restrictive Collar] Loaded: 15%[08/25/2015 - 09:05:42PM] [Zad]: [belt Chafing] Loaded: 10%[08/25/2015 - 09:05:42PM] [Zad]: [Yoke Struggle] Loaded: 20%[08/25/2015 - 09:05:42PM] [Zad]: [Armbinder Struggle] Loaded: 15%[08/25/2015 - 09:05:42PM] [Zad]: [Wet Padding] Loaded: 10%[08/25/2015 - 09:05:42PM] [Zad]: [Posture Collar] Loaded: 10%[08/25/2015 - 09:05:42PM] [Zad]: [Drip] Loaded: 10%[08/25/2015 - 09:05:42PM] [Zad]: [Horny] Loaded: 5%[08/25/2015 - 09:05:42PM] [Zad]: [Tight Corset] Loaded: 15%[08/25/2015 - 09:05:42PM] [Zad]: [Vibration] Loaded: 25%[08/25/2015 - 09:05:42PM] [Zad]: [blindfold Trip] Loaded: 10%[08/25/2015 - 09:05:42PM] [Zad]: [Tight Gloves] Loaded: 15%[08/25/2015 - 09:05:42PM] [Zad]: [Mounted] Loaded: 100%[08/25/2015 - 09:05:42PM] [Zad]: [Periodic Shocks] Loaded: 25%[08/25/2015 - 09:05:42PM] [Zad]: [Mana Drain] Loaded: 50%[08/25/2015 - 09:05:42PM] [Zad]: [Nipple Piercings] Loaded: 55%[08/25/2015 - 09:05:42PM] [Zad]: [stamina Drain] Loaded: 50%[08/25/2015 - 09:05:42PM] [Zad]: [Harness] Loaded: 10%[08/25/2015 - 09:05:42PM] [Zad]: [bump Pumps] Loaded: 17%[08/25/2015 - 09:05:42PM] [Zad]: QuestMonitor is now watching for device events.[08/25/2015 - 09:05:42PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: OnLoadGame() Begin[08/25/2015 - 09:05:42PM] [sLD] Reset SexLab events[08/25/2015 - 09:05:42PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: DawnGuard esp installed and activated.[08/25/2015 - 09:05:42PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: DragonBorn esp installed and activated.[08/25/2015 - 09:05:42PM] Update Sex Slaves from V0 to V51[08/25/2015 - 09:05:42PM] Mia ongamereload with current version 51[08/25/2015 - 09:05:42PM] [zzestruschaurusmcmscript <zzEstrusChaurusMCM (7000EF8A)>] INITIALIZED[08/25/2015 - 09:05:42PM] [zzestruschaurusmcmscript <zzEstrusChaurusMCM (7000EF8A)>]: Updating to script version 5[08/25/2015 - 09:05:42PM] [zzestruschaurusmcmscript <zzEstrusChaurusMCM (7000EF8A)>]: Updating to script version 6[08/25/2015 - 09:05:42PM] [Zad]: [blindfold Mystery] Loaded: 1%[08/25/2015 - 09:05:43PM] ERROR: File "AmazingFollowerTweaks.esp" does not exist or is not currently loaded.stack: <unknown self>.Game.GetFormFromFile() - "<native>" Line ? [alias MT_Player on quest MT_Quest_PlayerFramework (68040003)].MT_Ref_CompatibilityScript.MT_Compatibility() - "MT_Ref_CompatibilityScript.psc" Line 56 [alias MT_Player on quest MT_Quest_PlayerFramework (68040003)].MT_Ref_CompatibilityScript.OnPlayerLoadGame() - "MT_Ref_CompatibilityScript.psc" Line 31[08/25/2015 - 09:05:43PM] ERROR: File "Chesko_Frostfall.esp" does not exist or is not currently loaded.stack: <unknown self>.Game.GetFormFromFile() - "<native>" Line ? [alias MT_Player on quest MT_Quest_PlayerFramework (68040003)].MT_Ref_CompatibilityScript.MT_Compatibility() - "MT_Ref_CompatibilityScript.psc" Line 59 [alias MT_Player on quest MT_Quest_PlayerFramework (68040003)].MT_Ref_CompatibilityScript.OnPlayerLoadGame() - "MT_Ref_CompatibilityScript.psc" Line 31[08/25/2015 - 09:05:43PM] [Zad]: Initializing.[08/25/2015 - 09:05:43PM] [Zad]: Starting update chain.[08/25/2015 - 09:05:43PM] [slamainscr <sla_Main (0A042D62)>]: registered for maintenance[08/25/2015 - 09:05:43PM] zbfExternal: Compatibility checking[08/25/2015 - 09:05:43PM] zbfExternal: -------------------------------------------------------[08/25/2015 - 09:05:43PM] zbfExternal: SlaveTats version:[08/25/2015 - 09:05:43PM] zbfExternal: RaceMenu version: 0[08/25/2015 - 09:05:43PM] [Zad]: Starting Sergius' Experiment...[08/25/2015 - 09:05:43PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: OnLoadGame() End[08/25/2015 - 09:05:43PM] zbfExternal: Non SexLab Animation Pack version: 3[08/25/2015 - 09:05:43PM] zbfExternal: -------------------------------------------------------[08/25/2015 - 09:05:43PM] zbfExternal: Overlay support: False[08/25/2015 - 09:05:43PM] zbfExternal: Non SexLab Animation support: False[08/25/2015 - 09:05:43PM] zbfExternal: -------------------------------------------------------[08/25/2015 - 09:05:43PM] [Zad]: [belted Empty] Loaded: 10%[08/25/2015 - 09:05:43PM] [Zad]: [Chaos Plugs] Loaded: 25%[08/25/2015 - 09:05:43PM] [Zad]: Devious Devices is now creating animations.[08/25/2015 - 09:05:43PM] InitWidgetLoader()[08/25/2015 - 09:05:43PM] warning: Replacing native function getCurrentIdle on unlinked object zzestrusutil.[08/25/2015 - 09:05:43PM] SEXLAB - [zadbq00 <zadQuest (1000F624)>]: Created Non-Global Object 'DDBeltedSolo''[08/25/2015 - 09:05:43PM] SEXLAB - GetSetAnimation(DDBeltedSolo): set[08/25/2015 - 09:05:43PM] [Zad]: QuestMonitor is now watching for device events.[08/25/2015 - 09:05:43PM] [slamainscr <sla_Main (0A042D62)>]: starting maintenance... Update frequency 120.000000[08/25/2015 - 09:05:43PM] ================================================[ Moonlight Tales ]===============================================[08/25/2015 - 09:05:43PM] Compatibility check complete. [08/25/2015 - 09:05:43PM] ================================================[ Moonlight Tales ]===============================================[08/25/2015 - 09:05:43PM] ===============================[DAYMOYL: Ignore all Warnings start]================================[08/25/2015 - 09:05:43PM] daymoyl - SkyUI.esp found[08/25/2015 - 09:05:43PM] daymoyl - Dawnguard.esm found[08/25/2015 - 09:05:43PM] ================================[DAYMOYL: Ignore all Warnings end]=================================[08/25/2015 - 09:05:43PM] [Zad]: Creating DDBeltedSolo[08/25/2015 - 09:05:43PM] SEXLAB - Animations[-1]: DDBeltedSolo[08/25/2015 - 09:05:43PM] [Zad]: QuestMonitor is now tracking player.[08/25/2015 - 09:05:43PM] warning: Property delivery on script CDxPD_Delivery attached to alias delivery on quest CDxPackageDelivery (89117012) cannot be initialized because the script no longer contains that property[08/25/2015 - 09:05:43PM] SexLab Loaded CurrentVerison: 15903[08/25/2015 - 09:05:43PM] SEXLAB - Animations[61]: Tentacle Double[08/25/2015 - 09:05:44PM] [slamainscr <sla_Main (0A042D62)>]: registered for maintenance[08/25/2015 - 09:05:44PM] SEXLAB - [zadbq00 <zadQuest (1000F624)>]: Created Non-Global Object 'DDArmbinderSolo''[08/25/2015 - 09:05:44PM] SEXLAB - GetSetAnimation(DDArmbinderSolo): set[08/25/2015 - 09:05:44PM] SEXLAB - Animations[62]: Tentacle Side[08/25/2015 - 09:05:44PM] [Zad]: Creating DDArmbinderSolo[08/25/2015 - 09:05:44PM] SEXLAB - Animations[-1]: DDArmbinderSolo[08/25/2015 - 09:05:44PM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect typestack: [Active effect 2 on (2B009B18)].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ? [Active effect 2 on (2B009B18)].CFEffectCreature.OnUpdate() - "CFEffectCreature.psc" Line 150[08/25/2015 - 09:05:44PM] daymoyl - SKI_MeterWidget OnWidgetReset()[08/25/2015 - 09:05:44PM] daymoyl - SKI_MeterWidget OnWidgetReset()[08/25/2015 - 09:05:44PM] SEXLAB - Animations[63]: Dwemer Machine[08/25/2015 - 09:05:44PM] SEXLAB - [zadbq00 <zadQuest (1000F624)>]: Created Non-Global Object 'DDYokeSolo''[08/25/2015 - 09:05:44PM] SEXLAB - GetSetAnimation(DDYokeSolo): set[08/25/2015 - 09:05:44PM] [Zad]: Creating CreateDDYokeSolo[08/25/2015 - 09:05:44PM] SEXLAB - Animations[-1]: DDYokeSolo[08/25/2015 - 09:05:44PM] [Zad]: adding tag CD for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:45PM] daymoyl - SKI_MeterWidget OnWidgetReset()[08/25/2015 - 09:05:45PM] daymoyl - SKI_MeterWidget OnWidgetReset()[08/25/2015 - 09:05:46PM] [Zad]: adding tag full for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:46PM] [Zad]: adding tag Belt for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:46PM] [Zad]: EnableEventProcessing()[08/25/2015 - 09:05:46PM] [Zad]: Rehooking Mod Events[08/25/2015 - 09:05:46PM] [Zad]: adding tag CD for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:46PM] [Zad]: adding tag Metal for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:46PM] [Zad]: adding tag silver for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:46PM] [Zad]: adding tag full for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:46PM] [Zad]: adding tag Belt for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:46PM] [Zad]: adding tag Metal for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:47PM] [Zad]: adding tag silver for Chastity Belt Silver (Padded)[08/25/2015 - 09:05:47PM] [Zad]: adding tag CD for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:47PM] [Zad]: adding tag Open for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:47PM] [Zad]: adding tag Belt for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:47PM] [Zad]: adding tag Metal for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:47PM] [Zad]: adding tag silver for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:47PM] [Zad]: adding tag CD for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:47PM] [Zad]: adding tag CD for Collar Silver (Padded)[08/25/2015 - 09:05:47PM] [Zad]: adding tag short for Collar Silver (Padded)[08/25/2015 - 09:05:48PM] [Zad]: adding tag Collar for Collar Silver (Padded)[08/25/2015 - 09:05:48PM] Mia SexSlPlayerScript oninit[08/25/2015 - 09:05:48PM] [Zad]: adding tag Open for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:48PM] SexSlaveFramework OnInit() have 0 sexslaves on bootup[08/25/2015 - 09:05:48PM] [Zad]: adding tag Belt for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:48PM] [Zad]: adding tag Metal for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:48PM] daymoyl - All Registered Events Validated[08/25/2015 - 09:05:48PM] [Zad]: adding tag silver for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:05:48PM] [Zad]: adding tag Metal for Collar Silver (Padded)[08/25/2015 - 09:05:48PM] [Zad]: adding tag CD for Collar Silver (Padded)[08/25/2015 - 09:05:48PM] Refreshing 0 hairdoos[08/25/2015 - 09:05:48PM] Refreshing hairdoos is Done[08/25/2015 - 09:05:48PM] Sex Slaves Initialize ...False[08/25/2015 - 09:05:48PM] We have 0 SexSlaves, wantscancells = False[08/25/2015 - 09:05:48PM] Initializing Actors[08/25/2015 - 09:05:48PM] Resetting SexSlaveActors[08/25/2015 - 09:05:48PM] Out of loop[08/25/2015 - 09:05:48PM] Extensible Follower Framework (EFF) not found, using Generic/AFT[08/25/2015 - 09:05:48PM] Sex Slaves Initialize registering for update[08/25/2015 - 09:05:48PM] [Zad]: adding tag short for Collar Silver (Padded)[08/25/2015 - 09:05:48PM] Sex Slaves Initialize finished[08/25/2015 - 09:05:48PM] Mia ongamereload calling Maintenance on Vern[08/25/2015 - 09:05:48PM] SexSlAnimationPlayerScrip OnInit[08/25/2015 - 09:05:48PM] [Zad]: adding tag Collar for Collar Silver (Padded)[08/25/2015 - 09:05:48PM] Calling SexSlFemalePCScript[08/25/2015 - 09:05:48PM] SexSlFemalePCScript Initialize Registering for update in 5 seconds[08/25/2015 - 09:05:48PM] [Zad]: adding tag Metal for Collar Silver (Padded)[08/25/2015 - 09:05:48PM] [Zad]: adding tag silver for Collar Silver (Padded)[08/25/2015 - 09:05:48PM] daymoyl - Registering custom quest events[08/25/2015 - 09:05:48PM] Update spouse failed IsRunningFalse, getStage() 0, LoveInterest None[08/25/2015 - 09:05:48PM] [Zad]: adding tag CD for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:48PM] [Zad]: ZadNpc::DoRegister(1.127136)[08/25/2015 - 09:05:48PM] [Zad]: RepopulateNpcs()[08/25/2015 - 09:05:49PM] [Zad]: adding tag posture for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:49PM] [Zad]: adding tag Collar for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:49PM] [Zad]: adding tag Metal for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:49PM] [Zad]: adding tag silver for Collar Silver (Padded)[08/25/2015 - 09:05:49PM] [Zad]: adding tag silver for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:49PM] [Zad]: adding tag CD for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:49PM] Reset Game Timer[08/25/2015 - 09:05:49PM] [Zad]: adding tag Arms for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:49PM] Calling SexSlFemalePCScript finished[08/25/2015 - 09:05:49PM] [Zad]: adding tag Cuffs for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:49PM] MiaDungeonSlaveMarker1 Before = [Furniture < (1403609F)>][08/25/2015 - 09:05:49PM] Have furniture marker [Furniture < (1403609F)>][08/25/2015 - 09:05:49PM] SexslTraining registering[08/25/2015 - 09:05:49PM] SexSlFemEnslaveScript.initialize()[08/25/2015 - 09:05:49PM] initializeAllQuests finished[08/25/2015 - 09:05:49PM] Mia ongamereload updateCellScans finished[08/25/2015 - 09:05:49PM] [Zad]: adding tag CD for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:49PM] [Zad]: adding tag posture for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:49PM] [Zad]: adding tag Collar for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:50PM] [Zad]: adding tag Metal for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:50PM] [Zad]: adding tag silver for Collar Silver (Posture) (Steel)[08/25/2015 - 09:05:50PM] [Zad]: adding tag CD for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:50PM] [Zad]: adding tag Arms for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:50PM] [Zad]: adding tag Cuffs for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:50PM] [Zad]: adding tag Metal for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:50PM] [Zad]: adding tag silver for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:50PM] [Zad]: adding tag CD for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:50PM] [Zad]: adding tag Legs for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:50PM] [Zad]: adding tag Cuffs for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:50PM] [Zad]: adding tag Metal for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:51PM] [Zad]: adding tag Metal for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:51PM] [Zad]: adding tag silver for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:51PM] [Zad]: Not repopulating NPC slots: Feature is disabled.[08/25/2015 - 09:05:51PM] [Zad]: adding tag silver for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:05:51PM] [Zad]: ==========Begin Compatibility Checks==========[08/25/2015 - 09:05:51PM] [Zad]: Please note that Errors related to missing files should be ignored.[08/25/2015 - 09:05:51PM] [Zad]: [ Dependency Checks ][08/25/2015 - 09:05:51PM] [Zad]: DDi version [2.900000]: OK[08/25/2015 - 09:05:51PM] [Zad]: assets version [2.900000]: OK[08/25/2015 - 09:05:51PM] [Zad]: ZaZ Animation Pack version [606.000000]: OK[08/25/2015 - 09:05:51PM] [Zad]: aroused version [20140124.000000]: OK[08/25/2015 - 09:05:51PM] [Zad]: SexLab version [15903.000000]: OK[08/25/2015 - 09:05:51PM] [Zad]: [ Third Party Mod Compatibility Checks ][08/25/2015 - 09:05:51PM] [Zad]: [ Sanity Checks ][08/25/2015 - 09:05:51PM] [Zad]: Verifying that installation is untainted by an unsupported upgrade: OK[08/25/2015 - 09:05:51PM] [Zad]: Verifying that old DDi esp is not present: OK[08/25/2015 - 09:05:51PM] [Zad]: ==========End Compatibility Checks==========[08/25/2015 - 09:05:51PM] [Zad]: Initializing Events arrays.[08/25/2015 - 09:05:51PM] [Zad]: zadEventSlots::Maintenance()[08/25/2015 - 09:05:51PM] [Zad]: Config Interval:1.500000. Total number of events: 0. Next staggered update in 1.500000[08/25/2015 - 09:05:51PM] [Zad]: adding tag CD for Chastity Bra Silver (Padded)[08/25/2015 - 09:05:51PM] [Zad]: [Plug Moan] Registered. Event #0[08/25/2015 - 09:05:51PM] [Zad]: [Tight Gloves] Registered. Event #15[08/25/2015 - 09:05:51PM] [Zad]: [bra Chafing] Registered. Event #16[08/25/2015 - 09:05:51PM] [Zad]: [Restraints+Armor] Registered. Event #17[08/25/2015 - 09:05:51PM] [Zad]: [Restrictive Collar] Registered. Event #1[08/25/2015 - 09:05:51PM] [Zad]: [Health Drain] Registered. Event #18[08/25/2015 - 09:05:51PM] [Zad]: [Vibration] Registered. Event #19[08/25/2015 - 09:05:52PM] [Zad]: [belt Chafing] Registered. Event #2[08/25/2015 - 09:05:52PM] [Zad]: [Mounted] Registered. Event #20[08/25/2015 - 09:05:52PM] [Zad]: [Yoke Struggle] Registered. Event #3[08/25/2015 - 09:05:52PM] [Zad]: [Mana Drain] Registered. Event #21[08/25/2015 - 09:05:52PM] [Zad]: [Wet Padding] Registered. Event #4[08/25/2015 - 09:05:52PM] [Zad]: [blindfold Mystery] Registered. Event #22[08/25/2015 - 09:05:52PM] [Zad]: [Posture Collar] Registered. Event #5[08/25/2015 - 09:05:52PM] [Zad]: [stamina Drain] Registered. Event #23[08/25/2015 - 09:05:52PM] [Zad]: [Armbinder Struggle] Registered. Event #6[08/25/2015 - 09:05:52PM] [Zad]: [Harness] Registered. Event #24[08/25/2015 - 09:05:52PM] SEXLAB - Lunetta Stats Seed: Sexuality[60] Foreplay[18] Vaginal[26] Anal[37] Oral[15] Pure[48] Lewd[53][08/25/2015 - 09:05:52PM] [Zad]: [Drip] Registered. Event #7[08/25/2015 - 09:05:52PM] [Zad]: [Chaos Plugs] Registered. Event #25[08/25/2015 - 09:05:52PM] [Zad]: [Horny] Registered. Event #8[08/25/2015 - 09:05:52PM] [Zad]: [Tight Corset] Registered. Event #9[08/25/2015 - 09:05:52PM] [Zad]: [blindfold Trip] Registered. Event #10[08/25/2015 - 09:05:52PM] [Zad]: [Periodic Shocks] Registered. Event #11[08/25/2015 - 09:05:52PM] [Zad]: [Nipple Piercings] Registered. Event #12[08/25/2015 - 09:05:52PM] [Zad]: [belted Empty] Registered. Event #13[08/25/2015 - 09:05:52PM] [Zad]: [bump Pumps] Registered. Event #14[08/25/2015 - 09:05:52PM] [Zad]: adding tag Bra for Chastity Bra Silver (Padded)[08/25/2015 - 09:05:52PM] SEXLAB - Faendal Stats Seed: Sexuality[60] Foreplay[5] Vaginal[12] Anal[9] Oral[6] Pure[98] Lewd[44][08/25/2015 - 09:05:52PM] [Zad]: adding tag Metal for Chastity Bra Silver (Padded)[08/25/2015 - 09:05:52PM] [Zad]: adding tag silver for Chastity Bra Silver (Padded)[08/25/2015 - 09:05:53PM] [Zad]: adding tag CD for Chastity Belt Bronze (Padded)[08/25/2015 - 09:05:53PM] [Zad]: adding tag full for Chastity Belt Bronze (Padded)[08/25/2015 - 09:05:53PM] [Zad]: adding tag CD for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:53PM] [Zad]: adding tag Belt for Chastity Belt Bronze (Padded)[08/25/2015 - 09:05:53PM] [Zad]: adding tag Metal for Chastity Belt Bronze (Padded)[08/25/2015 - 09:05:53PM] [Zad]: adding tag bronze for Chastity Belt Bronze (Padded)[08/25/2015 - 09:05:53PM] [Zad]: adding tag Legs for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:54PM] [Zad]: adding tag CD for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:05:54PM] [Zad]: adding tag Open for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:05:54PM] [Zad]: adding tag Belt for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:05:54PM] [Zad]: adding tag Metal for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:05:54PM] [Zad]: adding tag bronze for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:05:54PM] [Zad]: adding tag CD for Collar Bronze (Padded)[08/25/2015 - 09:05:54PM] [Zad]: adding tag short for Collar Bronze (Padded)[08/25/2015 - 09:05:54PM] [Zad]: adding tag Collar for Collar Bronze (Padded)[08/25/2015 - 09:05:54PM] [Zad]: adding tag Metal for Collar Bronze (Padded)[08/25/2015 - 09:05:54PM] [Zad]: adding tag bronze for Collar Bronze (Padded)[08/25/2015 - 09:05:55PM] [Zad]: adding tag CD for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:05:55PM] [Zad]: adding tag posture for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:05:55PM] [Zad]: adding tag Collar for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:05:55PM] [Zad]: adding tag Metal for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:05:55PM] [Zad]: adding tag bronze for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:05:55PM] [Zad]: adding tag CD for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:05:55PM] SEXLAB - delphine Stats Seed: Sexuality[60] Foreplay[11] Vaginal[29] Anal[10] Oral[26] Pure[143] Lewd[17][08/25/2015 - 09:05:55PM] [Zad]: adding tag Arms for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:05:55PM] [Zad]: adding tag Cuffs for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:05:55PM] [Zad]: adding tag Metal for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:05:55PM] [Zad]: adding tag bronze for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:05:56PM] [Zad]: adding tag CD for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:05:56PM] [Zad]: adding tag Legs for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:05:56PM] [Zad]: adding tag Cuffs for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:56PM] [Zad]: adding tag Cuffs for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:05:56PM] [Zad]: adding tag Metal for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:05:56PM] [Zad]: adding tag bronze for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:05:56PM] SEXLAB - Sven Stats Seed: Sexuality[60] Foreplay[27] Vaginal[30] Anal[13] Oral[21] Pure[110] Lewd[44][08/25/2015 - 09:05:56PM] [Zad]: adding tag CD for Chastity Bra Bronze (Padded)[08/25/2015 - 09:05:56PM] [Zad]: adding tag Bra for Chastity Bra Bronze (Padded)[08/25/2015 - 09:05:56PM] [Zad]: adding tag Metal for Chastity Bra Bronze (Padded)[08/25/2015 - 09:05:56PM] SEXLAB - NOTICE: ValidateActor(chicken) -- FALSE -- They are not loaded[08/25/2015 - 09:05:56PM] [Zad]: adding tag bronze for Chastity Bra Bronze (Padded)[08/25/2015 - 09:05:56PM] [Zad]: adding tag Metal for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:57PM] [Zad]: adding tag silver for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:05:57PM] [Zad]: adding tag CD for Chastity Bra Silver (Padded)[08/25/2015 - 09:05:57PM] [Zad]: adding tag Bra for Chastity Bra Silver (Padded)[08/25/2015 - 09:05:57PM] [Zad]: adding tag Metal for Chastity Bra Silver (Padded)[08/25/2015 - 09:05:57PM] [Zad]: adding tag silver for Chastity Bra Silver (Padded)[08/25/2015 - 09:05:57PM] SEXLAB - Ogarth Stats Seed: Sexuality[60] Foreplay[8] Vaginal[4] Anal[7] Oral[9] Pure[67] Lewd[6][08/25/2015 - 09:05:57PM] [Zad]: adding tag CD for Little Helpers Plug - Assassin[08/25/2015 - 09:05:57PM] [Zad]: adding tag Magic for Little Helpers Plug - Assassin[08/25/2015 - 09:05:57PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Assassin[08/25/2015 - 09:05:57PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Assassin[08/25/2015 - 09:05:57PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Assassin[08/25/2015 - 09:05:57PM] [Zad]: adding tag Plug for Little Helpers Plug - Assassin[08/25/2015 - 09:05:58PM] [Zad]: adding tag CD for Little Helpers Plug -Thief[08/25/2015 - 09:05:58PM] [Zad]: adding tag Magic for Little Helpers Plug -Thief[08/25/2015 - 09:05:58PM] [Zad]: adding tag SoulGem for Little Helpers Plug -Thief[08/25/2015 - 09:05:58PM] [Zad]: adding tag littlehelper for Little Helpers Plug -Thief[08/25/2015 - 09:05:58PM] [Zad]: adding tag Vaginal for Little Helpers Plug -Thief[08/25/2015 - 09:05:58PM] [Zad]: adding tag Plug for Little Helpers Plug -Thief[08/25/2015 - 09:05:58PM] [Zad]: adding tag CD for Little Helpers Plug - Mage[08/25/2015 - 09:05:58PM] [Zad]: adding tag Magic for Little Helpers Plug - Mage[08/25/2015 - 09:05:58PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Mage[08/25/2015 - 09:05:58PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Mage[08/25/2015 - 09:05:58PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Mage[08/25/2015 - 09:05:59PM] [Zad]: adding tag Plug for Little Helpers Plug - Mage[08/25/2015 - 09:05:59PM] SEXLAB - Orgnar Stats Seed: Sexuality[60] Foreplay[7] Vaginal[20] Anal[7] Oral[11] Pure[25] Lewd[25][08/25/2015 - 09:05:59PM] SEXLAB - Hod Stats Seed: Sexuality[60] Foreplay[7] Vaginal[13] Anal[14] Oral[23] Pure[156] Lewd[17][08/25/2015 - 09:05:59PM] [Zad]: adding tag CD for Little Helpers Plug - Fighters[08/25/2015 - 09:05:59PM] [Zad]: adding tag Magic for Little Helpers Plug - Fighters[08/25/2015 - 09:05:59PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Fighters[08/25/2015 - 09:05:59PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Fighters[08/25/2015 - 09:05:59PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Fighters[08/25/2015 - 09:05:59PM] [Zad]: adding tag Plug for Little Helpers Plug - Fighters[08/25/2015 - 09:05:59PM] [Zad]: adding tag CD for Little Devils Plug -The Exciter[08/25/2015 - 09:05:59PM] SEXLAB - NOTICE: ValidateActor(Horse) -- FALSE -- They are not loaded[08/25/2015 - 09:06:00PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Exciter[08/25/2015 - 09:06:00PM] [Zad]: adding tag littledevil for Little Devils Plug -The Exciter[08/25/2015 - 09:06:00PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Exciter[08/25/2015 - 09:06:00PM] [Zad]: adding tag Plug for Little Devils Plug -The Exciter[08/25/2015 - 09:06:00PM] [Zad]: adding tag CD for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:00PM] SEXLAB - Mandyn Hlaalu Stats Seed: Sexuality[60] Foreplay[5] Vaginal[8] Anal[6] Oral[12] Pure[147] Lewd[14][08/25/2015 - 09:06:00PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:00PM] [Zad]: adding tag littledevil for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:00PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:00PM] [Zad]: adding tag Plug for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:00PM] [Zad]: adding tag CD for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:00PM] [Zad]: adding tag full for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:00PM] [Zad]: adding tag Belt for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:01PM] [Zad]: adding tag Metal for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:01PM] [Zad]: adding tag bronze for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:01PM] [Zad]: adding tag CD for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:01PM] [Zad]: adding tag CD for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:01PM] [Zad]: adding tag Open for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:01PM] [Zad]: adding tag Belt for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:01PM] [Zad]: adding tag Metal for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:01PM] [Zad]: adding tag bronze for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:02PM] [Zad]: adding tag CD for Collar Bronze (Padded)[08/25/2015 - 09:06:02PM] [Zad]: adding tag short for Collar Bronze (Padded)[08/25/2015 - 09:06:02PM] [Zad]: adding tag Collar for Collar Bronze (Padded)[08/25/2015 - 09:06:02PM] [Zad]: adding tag Metal for Collar Bronze (Padded)[08/25/2015 - 09:06:02PM] [Zad]: adding tag bronze for Collar Bronze (Padded)[08/25/2015 - 09:06:02PM] SEXLAB - Hilde Stats Seed: Sexuality[60] Foreplay[7] Vaginal[6] Anal[10] Oral[6] Pure[118] Lewd[14][08/25/2015 - 09:06:02PM] SEXLAB - Azzan Stats Seed: Sexuality[60] Foreplay[9] Vaginal[2] Anal[5] Oral[13] Pure[99] Lewd[3][08/25/2015 - 09:06:02PM] [Zad]: adding tag CD for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:02PM] [Zad]: adding tag posture for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:02PM] [Zad]: adding tag Collar for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:02PM] [Zad]: adding tag Metal for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:02PM] [Zad]: adding tag bronze for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:03PM] [Zad]: adding tag CD for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:03PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Form < (92009726)>], itemCount=1[08/25/2015 - 09:06:03PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:06:03PM] [Zad]: adding tag Arms for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:03PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:06:03PM] [Zad]: adding tag Cuffs for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:03PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:06:03PM] [Zad]: adding tag Metal for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:06:03PM] [Zad]: adding tag bronze for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:03PM] [Zad]: adding tag littledevil for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:06:03PM] [Zad]: adding tag CD for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:06:03PM] [Zad]: adding tag Legs for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:03PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:06:03PM] [Zad]: adding tag Cuffs for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:03PM] [Zad]: adding tag Metal for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:04PM] [Zad]: adding tag bronze for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:04PM] SEXLAB - Dorthe Stats Seed: Sexuality[60] Foreplay[3] Vaginal[3] Anal[3] Oral[5] Pure[47] Lewd[7][08/25/2015 - 09:06:04PM] [Zad]: DevicesUnderneath::Maintenance()[08/25/2015 - 09:06:04PM] [Zad]: DevicesUnderneath Registered(80:21)[08/25/2015 - 09:06:04PM] [Zad]: DevicesUnderneath Registered(81:26)[08/25/2015 - 09:06:04PM] [Zad]: DevicesUnderneath Registered(82:28)[08/25/2015 - 09:06:04PM] [Zad]: Set Device Hider slot to 41.[08/25/2015 - 09:06:05PM] [Zad]: adding tag CD for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:05PM] [Zad]: RebuildSlotmask()[08/25/2015 - 09:06:05PM] [Zad]: adding tag Bra for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:05PM] [Zad]: adding tag Metal for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:05PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:05PM] [Zad]: adding tag bronze for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:05PM] [Zad]: adding tag Plug for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:07PM] [Zad]: adding tag CD for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:07PM] [Zad]: adding tag littledevil for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:07PM] [Zad]: adding tag Anal for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:07PM] [Zad]: adding tag Plug for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:07PM] SEXLAB - Sigrid Stats Seed: Sexuality[60] Foreplay[8] Vaginal[22] Anal[14] Oral[12] Pure[138] Lewd[5][08/25/2015 - 09:06:07PM] [Zad]: adding tag CD for Little Helpers Plug - Assassin[08/25/2015 - 09:06:07PM] [Zad]: adding tag Magic for Little Helpers Plug - Assassin[08/25/2015 - 09:06:07PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Assassin[08/25/2015 - 09:06:07PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Assassin[08/25/2015 - 09:06:07PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Assassin[08/25/2015 - 09:06:07PM] [Zad]: adding tag Plug for Little Helpers Plug - Assassin[08/25/2015 - 09:06:08PM] [Zad]: adding tag CD for Little Helpers Plug -Thief[08/25/2015 - 09:06:08PM] [Zad]: adding tag Magic for Little Helpers Plug -Thief[08/25/2015 - 09:06:08PM] [Zad]: adding tag SoulGem for Little Helpers Plug -Thief[08/25/2015 - 09:06:08PM] [Zad]: adding tag CD for Little Devils Plug -The Punisher[08/25/2015 - 09:06:08PM] [Zad]: adding tag littlehelper for Little Helpers Plug -Thief[08/25/2015 - 09:06:08PM] [Zad]: adding tag Vaginal for Little Helpers Plug -Thief[08/25/2015 - 09:06:08PM] [Zad]: adding tag littledevil for Little Devils Plug -The Punisher[08/25/2015 - 09:06:08PM] [Zad]: adding tag Plug for Little Helpers Plug -Thief[08/25/2015 - 09:06:08PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (10040F0C)>], itemCount=1[08/25/2015 - 09:06:08PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:08PM] ERROR: Unable to call Delete - no native object bound to the script object, or object is of incorrect typestack: [item 3 in container (00000014)].zadHiderScript.Delete() - "<native>" Line ? [item 3 in container (00000014)].zadHiderScript.OnContainerChanged() - "zadHiderScript.psc" Line 5[08/25/2015 - 09:06:08PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:06:08PM] [Zad]: adding tag CD for Little Helpers Plug - Mage[08/25/2015 - 09:06:08PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:06:08PM] [Zad]: adding tag Magic for Little Helpers Plug - Mage[08/25/2015 - 09:06:09PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:06:09PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:09PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Mage[08/25/2015 - 09:06:09PM] [Zad]: Set slot mask to [337641472]: 337641472[08/25/2015 - 09:06:09PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:06:09PM] [Zad]: adding tag Anal for Little Devils Plug -The Punisher[08/25/2015 - 09:06:09PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:06:09PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Mage[08/25/2015 - 09:06:09PM] [Zad]: adding tag Plug for Little Devils Plug -The Punisher[08/25/2015 - 09:06:09PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:06:09PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Mage[08/25/2015 - 09:06:09PM] [Zad]: adding tag Plug for Little Helpers Plug - Mage[08/25/2015 - 09:06:09PM] [CDxMCMMenu <CDxMCMMenu (8905BBEE)>] INITIALIZED[08/25/2015 - 09:06:10PM] SEXLAB - Embry Stats Seed: Sexuality[60] Foreplay[2] Vaginal[2] Anal[1] Oral[2] Pure[4] Lewd[24][08/25/2015 - 09:06:10PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:06:10PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:06:10PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:06:10PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:06:10PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:06:10PM] [Zad]: adding tag CD for Little Helpers Plug - Fighters[08/25/2015 - 09:06:10PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:06:10PM] [Zad]: adding tag Magic for Little Helpers Plug - Fighters[08/25/2015 - 09:06:10PM] [Zad]: adding tag CD for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:10PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Fighters[08/25/2015 - 09:06:10PM] SEXLAB - Tabiana Stats Seed: Sexuality[60] Foreplay[9] Vaginal[22] Anal[6] Oral[17] Pure[73] Lewd[7][08/25/2015 - 09:06:10PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Fighters[08/25/2015 - 09:06:10PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Fighters[08/25/2015 - 09:06:10PM] [Zad]: adding tag Plug for Little Helpers Plug - Fighters[08/25/2015 - 09:06:11PM] [Zad]: adding tag full for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:12PM] [Zad]: adding tag Belt for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:12PM] [Zad]: adding tag Metal for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:12PM] [Zad]: adding tag silver for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:12PM] [Zad]: adding tag CD for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:12PM] [Zad]: adding tag Open for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:12PM] [Zad]: adding tag Belt for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:12PM] [Zad]: adding tag Metal for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:12PM] [Zad]: adding tag silver for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:13PM] [Zad]: adding tag CD for Collar Silver (Padded)[08/25/2015 - 09:06:13PM] [Zad]: adding tag short for Collar Silver (Padded)[08/25/2015 - 09:06:13PM] [Zad]: adding tag Collar for Collar Silver (Padded)[08/25/2015 - 09:06:13PM] [Zad]: adding tag Metal for Collar Silver (Padded)[08/25/2015 - 09:06:13PM] [Zad]: adding tag silver for Collar Silver (Padded)[08/25/2015 - 09:06:13PM] [CF][Framework] Sending register event[08/25/2015 - 09:06:13PM] [Zad]: adding tag CD for Little Devils Plug -The Exciter[08/25/2015 - 09:06:13PM] [Zad]: adding tag CD for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:13PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: OnCreatureFrameworkRegister() Begin[08/25/2015 - 09:06:13PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: OnCreatureFrameworkRegister() Registering[08/25/2015 - 09:06:13PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Starting to read config files from Data/SLNC.d[08/25/2015 - 09:06:13PM] [Zad]: adding tag DDi for Chastity Bra (Padded)[08/25/2015 - 09:06:13PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Found 4 config files in Data/SLNC.d[08/25/2015 - 09:06:13PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Reading config file 30_slnc-mnc.json[08/25/2015 - 09:06:13PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 4: [Race <DLC1HuskyBareCompanionRace (020122B7)>], Husky (Companion), [Form < (5400CE2F)>], Judah (MNC), None, [Form < (5400CE31)>], [][08/25/2015 - 09:06:13PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Exciter[08/25/2015 - 09:06:13PM] [Zad]: adding tag posture for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:14PM] [Zad]: adding tag littledevil for Little Devils Plug -The Exciter[08/25/2015 - 09:06:14PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Exciter[08/25/2015 - 09:06:14PM] [CF][Framework] Added skin ["Husky Judah" [Armor < (5400CE2F)>]] to race ["Dog" [Race <DLC1HuskyBareCompanionRace (020122B7)>]][08/25/2015 - 09:06:14PM] [Zad]: adding tag Plug for Little Devils Plug -The Exciter[08/25/2015 - 09:06:14PM] [Zad]: adding tag padded for Chastity Bra (Padded)[08/25/2015 - 09:06:14PM] [CF][Framework] Registered ["Dog" [Race <DLC1HuskyBareCompanionRace (020122B7)>]]["Husky Judah" [Armor < (5400CE2F)>]] armors to mod "slnc"[08/25/2015 - 09:06:14PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 3: [Race <DLC1HuskyBareRace (02018B36)>], Husky, [Form < (5400CE2F)>], Judah (MNC), None, [Form < (5400CE31)>], [][08/25/2015 - 09:06:14PM] [Zad]: adding tag CD for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:14PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:14PM] [Zad]: adding tag littledevil for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:14PM] [CF][Framework] Added skin ["Husky Judah" [Armor < (5400CE2F)>]] to race ["Dog" [Race <DLC1HuskyBareRace (02018B36)>]][08/25/2015 - 09:06:14PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:14PM] [CF][Framework] Forcing active actor restart[08/25/2015 - 09:06:14PM] [Zad]: adding tag Plug for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:14PM] [Zad]: Set slot mask to [0]: 0[08/25/2015 - 09:06:15PM] [CF][Creature Apply] Failure on ["Zenoby Iniatus" [WIDeadBodyCleanupScript < (8F00C56C)>]]; creature isn't registered; race=["IMPERIAL" [Race <ImperialRace (00013744)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:06:15PM] [CF][Framework] Registered ["Dog" [Race <DLC1HuskyBareRace (02018B36)>]]["Husky Judah" [Armor < (5400CE2F)>]] armors to mod "slnc"[08/25/2015 - 09:06:15PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 2: [Race <DLC1DeathHoundCompanionRace (02003D02)>], Death Hound (Companion), [Form < (5400F5D0)>], Deathhound Brute (MNC), None, [Form < (5400F5CF)>], [][08/25/2015 - 09:06:15PM] [Zad]: adding tag CD for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:15PM] [Zad]: adding tag Collar for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:15PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:15PM] [Zad]: adding tag littledevil for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:15PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:15PM] [Zad]: adding tag Plug for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:15PM] ERROR: Cannot call RemoveSpell() on a None object, aborting function callstack: [CFQuestFramework (0C000D62)].creatureframework.RestartActiveActors() - "CreatureFramework.psc" Line 853 [CFQuestFramework (0C000D62)].creatureframework.initialize() - "CreatureFramework.psc" Line 115 [CFQuestConfiguration (0C000D63)].cfconfigmenu.OnGameReload() - "CFConfigMenu.psc" Line 47 [alias PlayerAlias on quest CFQuestConfiguration (0C000D63)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6[08/25/2015 - 09:06:15PM] warning: Assigning None to a non-object variable named "::temp211"stack: [CFQuestFramework (0C000D62)].creatureframework.RestartActiveActors() - "CreatureFramework.psc" Line 853 [CFQuestFramework (0C000D62)].creatureframework.initialize() - "CreatureFramework.psc" Line 115 [CFQuestConfiguration (0C000D63)].cfconfigmenu.OnGameReload() - "CFConfigMenu.psc" Line 47 [alias PlayerAlias on quest CFQuestConfiguration (0C000D63)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6[08/25/2015 - 09:06:15PM] ERROR: Cannot call RemoveSpell() on a None object, aborting function callstack: [CFQuestFramework (0C000D62)].creatureframework.RestartActiveActors() - "CreatureFramework.psc" Line 854 [CFQuestFramework (0C000D62)].creatureframework.initialize() - "CreatureFramework.psc" Line 115 [CFQuestConfiguration (0C000D63)].cfconfigmenu.OnGameReload() - "CFConfigMenu.psc" Line 47 [alias PlayerAlias on quest CFQuestConfiguration (0C000D63)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6[08/25/2015 - 09:06:15PM] warning: Assigning None to a non-object variable named "::temp211"stack: [CFQuestFramework (0C000D62)].creatureframework.RestartActiveActors() - "CreatureFramework.psc" Line 854 [CFQuestFramework (0C000D62)].creatureframework.initialize() - "CreatureFramework.psc" Line 115 [CFQuestConfiguration (0C000D63)].cfconfigmenu.OnGameReload() - "CFConfigMenu.psc" Line 47 [alias PlayerAlias on quest CFQuestConfiguration (0C000D63)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6[08/25/2015 - 09:06:15PM] [CF][Framework] Added skin ["" [Armor < (5400F5D0)>]] to race ["Deathhound" [Race <DLC1DeathHoundCompanionRace (02003D02)>]][08/25/2015 - 09:06:15PM] [Zad]: adding tag Metal for Chastity Bra (Padded)[08/25/2015 - 09:06:15PM] [Zad]: adding tag CD for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:16PM] [Zad]: adding tag littledevil for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:16PM] [CF][Framework] Registered ["Deathhound" [Race <DLC1DeathHoundCompanionRace (02003D02)>]]["" [Armor < (5400F5D0)>]] armors to mod "slnc"[08/25/2015 - 09:06:16PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 1: [Race <DLC1DeathHoundRace (0200C5F0)>], Death Hound, [Form < (5400F5D0)>], Deathhound Brute (MNC), None, [Form < (5400F5CF)>], [][08/25/2015 - 09:06:16PM] [Zad]: adding tag Metal for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:16PM] [Zad]: adding tag Bra for Chastity Bra (Padded)[08/25/2015 - 09:06:16PM] [Zad]: adding tag silver for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:16PM] [Zad]: Set slot mask to [337641472]: 337641472[08/25/2015 - 09:06:16PM] [CF][Framework] Added skin ["" [Armor < (5400F5D0)>]] to race ["Dog" [Race <DLC1DeathHoundRace (0200C5F0)>]][08/25/2015 - 09:06:16PM] Sex Slaves Adding cell track after removal[08/25/2015 - 09:06:17PM] [Zad]: adding tag Anal for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:17PM] [Zad]: adding tag CD for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:17PM] [Zad]: adding tag Arms for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:17PM] Sexslaves player has tracking spell = TRUE[08/25/2015 - 09:06:17PM] [Zad]: adding tag Cuffs for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:17PM] [CF][Framework] Registered ["Dog" [Race <DLC1DeathHoundRace (0200C5F0)>]]["" [Armor < (5400F5D0)>]] armors to mod "slnc"[08/25/2015 - 09:06:17PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 0: [Race <DLC2WerebearBeastRace (0301E17B)>], Werebear, [Form < (55022CF5)>], Arch Demon (MNC), None, [Form < (55022CF4)>], [][08/25/2015 - 09:06:17PM] [Zad]: adding tag Metal for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:18PM] [Zad]: adding tag silver for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:18PM] Mia cell track Player changed cells to Sleeping Giant Inn[08/25/2015 - 09:06:19PM] MIa OnPlayerChancedCells = Sleeping Giant Inn, slave count 0[08/25/2015 - 09:06:19PM] Vern OnPlayerChancedCells = Sleeping Giant Inn[08/25/2015 - 09:06:19PM] New Mia CellTrack changed cells to Sleeping Giant Inn[08/25/2015 - 09:06:19PM] [CF][Framework] Added skin ["" [Armor < (55022CF5)>]] to race ["Werewolf" [Race <DLC2WerebearBeastRace (0301E17B)>]][08/25/2015 - 09:06:19PM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect typestack: [Active effect 2 on (2B005C4C)].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ? [Active effect 2 on (2B005C4C)].CFEffectCreature.OnUpdate() - "CFEffectCreature.psc" Line 150[08/25/2015 - 09:06:19PM] [Zad]: adding tag Plug for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:19PM] [Zad]: adding tag CD for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:19PM] [Zad]: adding tag Legs for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:20PM] [CF][Framework] Registered ["Werewolf" [Race <DLC2WerebearBeastRace (0301E17B)>]]["" [Armor < (55022CF5)>]] armors to mod "slnc"[08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Reading config file 20_slnc-dg.json[08/25/2015 - 09:06:20PM] [Zad]: adding tag Cuffs for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 8: [Form <DLC1TrollFrostRaceArmored (020117F4)>], Armored Frost Troll, [Form < (02016688)>], Armored Frost Troll, None, [Form < (54014507)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 7: [Form <DLC1TrollRaceArmored (020117F5)>], Armored Troll, [Form < (02016689)>], Armored Troll, [Form < (5400CE35)>], [Form < (5400A693)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 6: [Form <DLC1SabreCatGlowRace (0200D0B6)>], Sabrecat (Glow), None, , None, [Form < (54005742)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 5: [Race <DLC1HuskyBareCompanionRace (020122B7)>], Husky (Companion), None, , None, [Armor < (5400574C)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 4: [Race <DLC1HuskyBareRace (02018B36)>], Husky, None, , None, [Armor < (5400574C)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 3: [Race <DLC1HuskyArmoredCompanionRace (02003D01)>], Armored Husky (Companion), None, , None, [Armor < (5400574D)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 2: [Race <DLC1HuskyArmoredRace (02018B33)>], Armored Husky, None, , None, [Armor < (5400574D)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 1: [Race <DLC1DeathHoundCompanionRace (02003D02)>], Death Hound (Companion), None, , None, [Armor < (5400574A)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 0: [Race <DLC1DeathHoundRace (0200C5F0)>], Death Hound, None, , None, [Armor < (5400574A)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Reading config file 20_slnc-db.json[08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 11: [Form <DLC2LurkerRace (03014495)>], Lurker, [Form < (03014497)>], Lurker, None, [Form < (55011436)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 10: [Form <DLC2AshSpawnRace (0301B637)>], Ashman, [Form < (0302B04B)>], Ashman, None, [Form < (5501A096)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 9: [Race <DLC2WerebearBeastRace (0301E17B)>], Werebear, None, Werebear, None, [Form < (55014302)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 8: [Form <DLC2RieklingRace (03017F44)>], riekling, None, , None, [Form < (55005901)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 7: [Form <DLC2RieklingRace (03017F44)>], riekling, [Form < (030354ED)>], Thirsk Riekling 3, None, [Form < (55005908)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 6: [Form <DLC2RieklingRace (03017F44)>], riekling, [Form < (030354EA)>], Thirsk Riekling 2, None, [Form < (55005907)>], [][08/25/2015 - 09:06:20PM] [Zad]: adding tag Metal for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 5: [Form <DLC2RieklingRace (03017F44)>], riekling, [Form < (030354E8)>], Thirsk Riekling 1, None, [Form < (55005906)>], [][08/25/2015 - 09:06:20PM] [Zad]: adding tag silver for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 4: [Form <DLC2RieklingRace (03017F44)>], riekling, [Form < (030354E2)>], Riekling Chief, None, [Form < (55005905)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 3: [Form <DLC2RieklingRace (03017F44)>], riekling, [Form < (030354E6)>], Riekling Melee 3, None, [Form < (55005904)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 2: [Form <DLC2RieklingRace (03017F44)>], riekling, [Form < (030354E5)>], Riekling Melee 2, None, [Form < (55005903)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 1: [Form <DLC2RieklingRace (03017F44)>], riekling, [Form < (030354E3)>], Riekling Melee 1, None, [Form < (55005902)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 0: [Form <DLC2RieklingRace (03017F44)>], riekling, [Form < (03017F46)>], riekling, None, [Form < (55005901)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Reading config file 10_slnc.json[08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 66: [Form <SkeeverWhiteRace (000C3EDF)>], Skeever (White), None, Skeever (White), None, [Form < (5302719E)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 65: [Form <SkeeverRace (00013201)>], skeever, None, skeever, None, [Form < (5302719D)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 64: [Race <FoxRace (00109C7C)>], Fox, [Form < (000829B7)>], Arctic Fox, None, [Form < (530266D6)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 63: [Race <FoxRace (00109C7C)>], Fox, [Form < (000829B4)>], Fox, None, [Form < (530266D5)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 62: [Race <AlduinRace (000E7713)>], Dragon (Alduin), None, , None, [Form < (53024684)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 61: [Race <DragonRace (00012E82)>], Dragon, None, , None, [Form < (53024684)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 60: [Race <KhajiitRaceVampire (00088845)>], Khajiit Vampire, None, , None, [Form < (53023BBE)>], [4, 4194304][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 59: [Race <KhajiitRace (00013745)>], Khajiit, None, , None, [Form < (53023BBE)>], [4, 4194304][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 58: [Race <ArgonianRaceVampire (0008883A)>], Argonian Vampire, None, , None, [Form < (53023BBE)>], [4, 4194304][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 57: [Race <ArgonianRace (00013740)>], Argonian, None, , None, [Form < (53023BBE)>], [4, 4194304][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 56: [Race <WerewolfBeastRace (000CDD84)>], Werewolf, None, , None, [Form < (53023656)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 55: [Form <CartHorseRace (000DE505)>], Horse (Cart), [Form < (00086503)>], Shadowmere, None, [Form < (530230F1)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 54: [Form <CartHorseRace (000DE505)>], Horse (Cart), [Form < (0008650E)>], Palomino, None, [Form < (530230F0)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 53: [Form <CartHorseRace (000DE505)>], Horse (Cart), [Form < (0008650F)>], Grey, None, [Form < (530230EF)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 52: [Form <CartHorseRace (000DE505)>], Horse (Cart), [Armor < (00086510)>], Black & White, None, [Form < (530230EE)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 51: [Form <CartHorseRace (000DE505)>], Horse (Cart), [Form < (0008650D)>], black, None, [Form < (530230ED)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 50: [Form <CartHorseRace (000DE505)>], Horse (Cart), [Armor < (00060715)>], Brown, None, [Form < (530230EC)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 49: [Race <HorseRace (000131FD)>], Horse, [Form < (00086503)>], Shadowmere, None, [Form < (530230F1)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 48: [Race <HorseRace (000131FD)>], Horse, [Form < (0008650E)>], Palomino, None, [Form < (530230F0)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 47: [Race <HorseRace (000131FD)>], Horse, [Form < (0008650F)>], Grey, None, [Form < (530230EF)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 46: [Race <HorseRace (000131FD)>], Horse, [Armor < (00086510)>], Black & White, None, [Form < (530230EE)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 45: [Race <HorseRace (000131FD)>], Horse, [Form < (0008650D)>], black, None, [Form < (530230ED)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 44: [Race <HorseRace (000131FD)>], Horse, [Armor < (00060715)>], Brown, None, [Form < (530230EC)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 43: [Race <ChaurusReaperRace (000A5601)>], Chaurus Reaper, None, All, None, [Form < (530230E5)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 42: [Race <ChaurusRace (000131EB)>], Chaurus, None, All, None, [Form < (530230E5)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 41: [Race <FrostbiteSpiderRaceGiant (0004E507)>], Giant Spider, [Form < (0002C181)>], Giant Snow Spider, None, [Form < (530230E2)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 40: [Race <FrostbiteSpiderRaceGiant (0004E507)>], Giant Spider, [Form < (0002C180)>], Giant Spider, None, [Form < (530230E1)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 39: [Race <FrostbiteSpiderRaceGiant (0004E507)>], Giant Spider, None, All, None, [Form < (530230E1)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 38: [Race <FrostbiteSpiderRaceLarge (00053477)>], Large Spider, [Form < (00048C0E)>], Snow Spider, None, [Form < (530230E0)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 37: [Race <FrostbiteSpiderRaceLarge (00053477)>], Large Spider, [Form < (0003636F)>], Large Spider, None, [Form < (530230DF)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 36: [Race <FrostbiteSpiderRaceLarge (00053477)>], Large Spider, None, All, None, [Form < (530230DF)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 35: [Race <FrostbiteSpiderRace (000131F8)>], Frostbite Spider, [Form < (00048C0E)>], Snow Spider, None, [Form < (530230E0)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 34: [Race <FrostbiteSpiderRace (000131F8)>], Frostbite Spider, [Form < (0003636F)>], Frostbite, None, [Form < (530230DF)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 33: [Race <FrostbiteSpiderRace (000131F8)>], Frostbite Spider, None, All, None, [Form < (530230DF)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 32: [Race <MG07DogRace (000F905F)>], Dog (MG07), None, MG07, None, [Armor < (53023BB9)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 31: [Race <DA03BarbasDogRace (000CD657)>], Dog (Barbas), None, Barbas, None, [Armor < (5300C196)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 30: [Race <DogCompanionRace (000F1AC4)>], Dog (Companion), None, companion, None, [Armor < (5300C196)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 29: [Race <DogRace (000131EE)>], Dog, None, All, None, [Armor < (5300C196)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 28: [Race <WolfRace (0001320A)>], wolf, [Form < (000C02F8)>], Summoned Wolf, None, [Form < (5300C19F)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 27: [Race <WolfRace (0001320A)>], wolf, [Form < (000C02FB)>], Black Wolf, None, [Form < (5300C19E)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 26: [Race <WolfRace (0001320A)>], wolf, [Armor < (0004E886)>], wolf, None, [Form < (5300C19D)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 25: [Race <SabreCatSnowyRace (00013202)>], Snow Sabrecat, None, All, None, [Form < (53004AB6)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 24: [Race <SabreCatRace (00013200)>], SabreCat, None, All, None, [Form < (53004AB7)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 23: [Race <BearSnowRace (000131E9)>], Snow Bear, None, Snow Bear, None, [Form < (53004AB2)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 22: [Race <BearBrownRace (000131E7)>], Brown Bear, None, Brown Bear, None, [Form < (53004AB0)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 21: [Race <BearBlackRace (000131E8)>], Black Bear, None, Black Bear, None, [Form < (53004AB1)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 20: [Race <TrollRace (00013205)>], Troll, None, Default, None, [Form < (530012CF)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 19: [Race <TrollRace (00013205)>], Troll, [Form < (000F0779)>], Uderfrykte, None, [Form < (530012D0)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 18: [Race <TrollRace (00013205)>], Troll, [Armor < (00016EE4)>], Troll, None, [Form < (530012CC)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 17: [Race <TrollFrostRace (00013206)>], Frost Troll, None, Frost Troll, None, [Form < (530012CF)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 16: [Race <GiantRace (000131F9)>], Giant, None, Giant, None, [Form < (530012CE)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 15: [Race <FalmerRace (000131F4)>], falmer, [Form < (00050F3A)>], Falmer 6, None, [Form < (53002312)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 14: [Race <FalmerRace (000131F4)>], falmer, [Form < (00050F38)>], Falmer 5, None, [Form < (53002311)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 13: [Race <FalmerRace (000131F4)>], falmer, [Form < (00050F36)>], Falmer 4, None, [Form < (53002310)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 12: [Race <FalmerRace (000131F4)>], falmer, [Form < (00050F34)>], Falmer 3, None, [Form < (5300230F)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 11: [Race <FalmerRace (000131F4)>], falmer, [Form < (00050F32)>], Falmer 2, None, [Form < (5300230E)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 10: [Race <FalmerRace (000131F4)>], falmer, [Form < (00050F30)>], Falmer 1, None, [Form < (5300230D)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 9: [Race <FalmerRace (000131F4)>], falmer, [Form < (00016EE7)>], falmer, None, [Form < (53000D63)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 8: [Form <DraugrRace (00000D53)>], draugr, None, Default, None, [Form < (530012CD)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 7: [Form <DraugrRace (00000D53)>], draugr, [Form < (0001FE84)>], Draugr Male 7, None, [Form < (53002306)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 6: [Form <DraugrRace (00000D53)>], draugr, [Form < (0001FE83)>], Draugr Male 6, None, [Form < (53002305)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 5: [Form <DraugrRace (00000D53)>], draugr, [Form < (0001FE82)>], Draugr Male 5, None, [Form < (53002304)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 4: [Form <DraugrRace (00000D53)>], draugr, [Form < (0001FE81)>], Draugr Male 4, None, [Form < (53002303)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 3: [Form <DraugrRace (00000D53)>], draugr, [Form < (0001FE80)>], Draugr Male 3, None, [Form < (53002302)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 2: [Form <DraugrRace (00000D53)>], draugr, [Form < (0001FE7F)>], Draugr Male 2, None, [Form < (53002301)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 1: [Form <DraugrRace (00000D53)>], draugr, [Form < (0001FE7E)>], Draugr Male 1, None, [Form < (53002300)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: Entry 0: [Form <DraugrRace (00000D53)>], draugr, [Form < (00016EE3)>], draugr, None, [Form < (530012CD)>], [][08/25/2015 - 09:06:20PM] [slnc] [slncaddondgscript <slncAddonDG (54002F9A)>]: AddonDG.registerStuff()[08/25/2015 - 09:06:20PM] [slnc] [slncMainQuestScript <slncControllerQuest (530110DF)>]: OnCreatureFrameworkRegister() End[08/25/2015 - 09:06:20PM] ERROR: Cannot call AddSpell() on a None object, aborting function callstack: [CFQuestFramework (0C000D62)].creatureframework.RestartActiveActors() - "CreatureFramework.psc" Line 864 [CFQuestFramework (0C000D62)].creatureframework.initialize() - "CreatureFramework.psc" Line 115 [CFQuestConfiguration (0C000D63)].cfconfigmenu.OnGameReload() - "CFConfigMenu.psc" Line 47 [alias PlayerAlias on quest CFQuestConfiguration (0C000D63)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6[08/25/2015 - 09:06:20PM] warning: Assigning None to a non-object variable named "::temp208"stack: [CFQuestFramework (0C000D62)].creatureframework.RestartActiveActors() - "CreatureFramework.psc" Line 864 [CFQuestFramework (0C000D62)].creatureframework.initialize() - "CreatureFramework.psc" Line 115 [CFQuestConfiguration (0C000D63)].cfconfigmenu.OnGameReload() - "CFConfigMenu.psc" Line 47 [alias PlayerAlias on quest CFQuestConfiguration (0C000D63)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6[08/25/2015 - 09:06:20PM] [CF][Framework] Cleared Form DB[08/25/2015 - 09:06:20PM] [CF][Framework] Creature Framework is done initialising[08/25/2015 - 09:06:20PM] Update spouse[08/25/2015 - 09:06:20PM] Updating Orphanables Status: ------------------------[08/25/2015 - 09:06:20PM] [Zad]: adding tag DDi for Cuffs (Padded) (Arms)[08/25/2015 - 09:06:20PM] [Zad]: adding tag padded for Cuffs (Padded) (Arms)[08/25/2015 - 09:06:20PM] Sla resetting all quests[08/25/2015 - 09:06:20PM] Update spouse failed IsRunningFalse, getStage() 0, LoveInterest None[08/25/2015 - 09:06:21PM] [Zad]: adding tag Metal for Cuffs (Padded) (Arms)[08/25/2015 - 09:06:21PM] [Zad]: adding tag Arms for Cuffs (Padded) (Arms)[08/25/2015 - 09:06:22PM] [Zad]: adding tag Cuffs for Cuffs (Padded) (Arms)[08/25/2015 - 09:06:22PM] [CF][Main Quest] The cloak is being applied for the first time since game load[08/25/2015 - 09:06:22PM] [Zad]: adding tag CD for Chastity Bra Silver (Padded)[08/25/2015 - 09:06:22PM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect typestack: [Active effect 2 on (0009B0DD)].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ? [Active effect 2 on (0009B0DD)].CFEffectCreature.OnUpdate() - "CFEffectCreature.psc" Line 150[08/25/2015 - 09:06:22PM] [Zad]: adding tag CD for Little Devils Plug -The Punisher[08/25/2015 - 09:06:22PM] [Zad]: adding tag littledevil for Little Devils Plug -The Punisher[08/25/2015 - 09:06:22PM] [Zad]: adding tag Bra for Chastity Bra Silver (Padded)[08/25/2015 - 09:06:22PM] [Zad]: adding tag Anal for Little Devils Plug -The Punisher[08/25/2015 - 09:06:22PM] [Zad]: adding tag Plug for Little Devils Plug -The Punisher[08/25/2015 - 09:06:22PM] [CDxMCMMenu <CDxMCMMenu (8905BBEE)>] INITIALIZED[08/25/2015 - 09:06:22PM] Scan cell for Followers total 0[08/25/2015 - 09:06:22PM] ScanCellForFollower exits with 0 female followers[08/25/2015 - 09:06:22PM] No Sex Slaves or WantsCellScans = False, no sense in scanning the cell[08/25/2015 - 09:06:22PM] [Zad]: adding tag Metal for Chastity Bra Silver (Padded)[08/25/2015 - 09:06:22PM] [Zad]: adding tag DDi for Cuffs (Padded) (Legs)[08/25/2015 - 09:06:22PM] [CF][Creature] ["Faendal's Dog" [Actor < (6D00397E)>]] aroused[08/25/2015 - 09:06:23PM] [Zad]: adding tag silver for Chastity Bra Silver (Padded)[08/25/2015 - 09:06:23PM] [CF][Creature] Not equipping aroused armour on ["Faendal's Dog" [Actor < (6D00397E)>]] race [Race <DogRace (000131EE)>] skin [Armor < (0C0058CB)>]; there is no aroused armour[08/25/2015 - 09:06:23PM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect typestack: [Active effect 2 on (0008480B)].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ? [Active effect 2 on (0008480B)].CFEffectCreature.OnUpdate() - "CFEffectCreature.psc" Line 150[08/25/2015 - 09:06:23PM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect typestack: [Active effect 2 on (6D00397E)].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ? [Active effect 2 on (6D00397E)].CFEffectCreature.OnUpdate() - "CFEffectCreature.psc" Line 150[08/25/2015 - 09:06:23PM] [Zad]: adding tag CD for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:23PM] [Zad]: adding tag full for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:23PM] [Zad]: adding tag Belt for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:23PM] [Zad]: adding tag padded for Cuffs (Padded) (Legs)[08/25/2015 - 09:06:23PM] [Zad]: adding tag Metal for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:23PM] [Zad]: adding tag Metal for Cuffs (Padded) (Legs)[08/25/2015 - 09:06:23PM] [Zad]: adding tag silver for Chastity Belt Silver (Padded)[08/25/2015 - 09:06:23PM] [DLC2PillarBuilderActorScript < (030177DD)>]OnPackageStart()[08/25/2015 - 09:06:24PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:06:24PM] [Zad]: adding tag CD for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:24PM] [Zad]: adding tag Legs for Cuffs (Padded) (Legs)[08/25/2015 - 09:06:24PM] [Zad]: adding tag full for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:24PM] [Zad]: adding tag Cuffs for Cuffs (Padded) (Legs)[08/25/2015 - 09:06:24PM] [Zad]: adding tag CD for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:24PM] [Zad]: adding tag Open for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:24PM] [Zad]: adding tag Belt for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:24PM] [Zad]: adding tag Metal for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:24PM] [Zad]: adding tag silver for Chastity Belt Silver (Padded) (Open)[08/25/2015 - 09:06:25PM] [Zad]: adding tag Belt for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:25PM] [Zad]: adding tag Metal for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:25PM] [Zad]: adding tag bronze for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:25PM] [Zad]: adding tag CD for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:25PM] [Zad]: adding tag Open for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:25PM] [Zad]: adding tag Belt for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:25PM] [Zad]: adding tag Metal for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:26PM] [Zad]: adding tag bronze for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:26PM] [Zad]: adding tag CD for Collar Bronze (Padded)[08/25/2015 - 09:06:26PM] [Zad]: adding tag short for Collar Bronze (Padded)[08/25/2015 - 09:06:26PM] [Zad]: adding tag Collar for Collar Bronze (Padded)[08/25/2015 - 09:06:26PM] [Zad]: adding tag Metal for Collar Bronze (Padded)[08/25/2015 - 09:06:26PM] [Zad]: adding tag bronze for Collar Bronze (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag CD for Collar Silver (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag short for Collar Silver (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag Collar for Collar Silver (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag Metal for Collar Silver (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag silver for Collar Silver (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag DDi for Collar (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag short for Collar (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag padded for Collar (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag Metal for Collar (Padded)[08/25/2015 - 09:06:27PM] [Zad]: adding tag Collar for Collar (Padded)[08/25/2015 - 09:06:27PM] [slamainscr <sla_Main (0A042D62)>]: starting maintenance... Update frequency 120.000000[08/25/2015 - 09:06:28PM] [slamainscr <sla_Main (0A042D62)>]: registered for maintenance[08/25/2015 - 09:06:28PM] [Zad]: adding tag DDi for Collar (Posture) (Steel)[08/25/2015 - 09:06:28PM] [Zad]: adding tag padded for Collar (Posture) (Steel)[08/25/2015 - 09:06:28PM] [Zad]: adding tag posture for Collar (Posture) (Steel)[08/25/2015 - 09:06:28PM] [Zad]: adding tag Metal for Collar (Posture) (Steel)[08/25/2015 - 09:06:28PM] [Zad]: adding tag Collar for Collar (Posture) (Steel)[08/25/2015 - 09:06:28PM] [Actor < (000199D0)>] has been orphaned.[08/25/2015 - 09:06:28PM] [Zad]: adding tag CD for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:28PM] [Zad]: adding tag posture for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:28PM] [Zad]: adding tag Collar for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:28PM] [Zad]: adding tag Metal for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:28PM] [Zad]: adding tag silver for Collar Silver (Posture) (Steel)[08/25/2015 - 09:06:28PM] Requesting transfer for [Actor < (000199D0)>][08/25/2015 - 09:06:28PM] [Zad]: adding tag CD for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:29PM] [Zad]: adding tag Arms for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:29PM] [Zad]: adding tag Cuffs for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:29PM] [Zad]: adding tag Metal for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:29PM] [Zad]: adding tag silver for Cuffs Silver (Padded) (Arms)[08/25/2015 - 09:06:29PM] [Zad]: adding tag CD for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:29PM] [Zad]: adding tag Legs for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:29PM] [Zad]: adding tag DDi for Armbinder[08/25/2015 - 09:06:29PM] [Zad]: adding tag CD for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:29PM] Transfer of [Actor < (000199D0)>] was rejected.[08/25/2015 - 09:06:29PM] [Zad]: adding tag posture for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:29PM] [Zad]: adding tag Cuffs for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:29PM] [Zad]: adding tag Metal for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:30PM] [Zad]: adding tag silver for Cuffs Silver (Padded) (Legs)[08/25/2015 - 09:06:30PM] [Zad]: adding tag black for Armbinder[08/25/2015 - 09:06:30PM] [Zad]: adding tag CD for Chastity Bra Silver (Padded)[08/25/2015 - 09:06:30PM] [Zad]: adding tag Bra for Chastity Bra Silver (Padded)[08/25/2015 - 09:06:30PM] [Zad]: adding tag Collar for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:30PM] [Zad]: adding tag Metal for Chastity Bra Silver (Padded)[08/25/2015 - 09:06:30PM] [Zad]: adding tag silver for Chastity Bra Silver (Padded)[08/25/2015 - 09:06:30PM] -------------------[08/25/2015 - 09:06:30PM] [Zad]: adding tag CD for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:30PM] [Zad]: adding tag full for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:30PM] [Zad]: adding tag Belt for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:31PM] [Zad]: adding tag Metal for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:31PM] [Zad]: adding tag bronze for Chastity Belt Bronze (Padded)[08/25/2015 - 09:06:31PM] RNPC: Periodic update check.[08/25/2015 - 09:06:31PM] [Zad]: adding tag Leather for Armbinder[08/25/2015 - 09:06:31PM] [Zad]: adding tag Armbinder for Armbinder[08/25/2015 - 09:06:31PM] [Zad]: adding tag Metal for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:31PM] [Zad]: adding tag CD for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:31PM] [Zad]: adding tag DDi for Gag (Ball) (Harness)[08/25/2015 - 09:06:31PM] [Zad]: adding tag black for Gag (Ball) (Harness)[08/25/2015 - 09:06:31PM] [Zad]: adding tag Leather for Gag (Ball) (Harness)[08/25/2015 - 09:06:31PM] [Zad]: adding tag ball for Gag (Ball) (Harness)[08/25/2015 - 09:06:31PM] [Zad]: adding tag Harness for Gag (Ball) (Harness)[08/25/2015 - 09:06:31PM] [Zad]: adding tag Gag for Gag (Ball) (Harness)[08/25/2015 - 09:06:31PM] [Zad]: adding tag bronze for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:32PM] [Zad]: adding tag CD for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:32PM] [Zad]: adding tag Arms for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:32PM] [Zad]: adding tag Cuffs for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:32PM] [Zad]: adding tag Open for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:32PM] [Zad]: adding tag Metal for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:32PM] [Zad]: adding tag bronze for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:32PM] [Zad]: adding tag CD for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:32PM] [Zad]: adding tag Legs for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:32PM] [Zad]: adding tag Cuffs for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:32PM] [Zad]: adding tag Metal for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:32PM] [Zad]: adding tag bronze for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:33PM] [Zad]: adding tag CD for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:33PM] [Zad]: adding tag Bra for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:33PM] [Zad]: adding tag Metal for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:33PM] [Zad]: adding tag bronze for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:33PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:06:33PM] [Zad]: adding tag CD for Little Helpers Plug - Assassin[08/25/2015 - 09:06:33PM] [Zad]: adding tag Magic for Little Helpers Plug - Assassin[08/25/2015 - 09:06:33PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Assassin[08/25/2015 - 09:06:34PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Assassin[08/25/2015 - 09:06:34PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Assassin[08/25/2015 - 09:06:34PM] [Zad]: adding tag Plug for Little Helpers Plug - Assassin[08/25/2015 - 09:06:34PM] [Zad]: adding tag CD for Little Helpers Plug -Thief[08/25/2015 - 09:06:34PM] [Zad]: adding tag Belt for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:34PM] [Zad]: adding tag Metal for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:34PM] [Zad]: adding tag bronze for Chastity Belt Bronze (Padded) (Open)[08/25/2015 - 09:06:35PM] [Zad]: adding tag CD for Collar Bronze (Padded)[08/25/2015 - 09:06:35PM] [Zad]: adding tag Magic for Little Helpers Plug -Thief[08/25/2015 - 09:06:35PM] [Zad]: adding tag DDi for Gag (Panel) (Harness)[08/25/2015 - 09:06:35PM] [Zad]: adding tag black for Gag (Panel) (Harness)[08/25/2015 - 09:06:35PM] [Zad]: adding tag Leather for Gag (Panel) (Harness)[08/25/2015 - 09:06:35PM] [Zad]: adding tag panel for Gag (Panel) (Harness)[08/25/2015 - 09:06:35PM] [Zad]: adding tag Harness for Gag (Panel) (Harness)[08/25/2015 - 09:06:35PM] [Zad]: adding tag Gag for Gag (Panel) (Harness)[08/25/2015 - 09:06:35PM] [Zad]: adding tag short for Collar Bronze (Padded)[08/25/2015 - 09:06:35PM] [Zad]: adding tag DDi for Gag (Ring) (Harness)[08/25/2015 - 09:06:35PM] [Zad]: adding tag Collar for Collar Bronze (Padded)[08/25/2015 - 09:06:35PM] [Zad]: adding tag Metal for Collar Bronze (Padded)[08/25/2015 - 09:06:35PM] [Zad]: adding tag bronze for Collar Bronze (Padded)[08/25/2015 - 09:06:36PM] [Zad]: adding tag SoulGem for Little Helpers Plug -Thief[08/25/2015 - 09:06:36PM] [Zad]: adding tag CD for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:36PM] [Zad]: adding tag posture for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:36PM] [Zad]: adding tag Collar for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:36PM] [Zad]: adding tag Metal for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:36PM] [Zad]: adding tag bronze for Collar Bronze (Posture) (Steel)[08/25/2015 - 09:06:36PM] [Zad]: adding tag black for Gag (Ring) (Harness)[08/25/2015 - 09:06:36PM] [Zad]: adding tag Leather for Gag (Ring) (Harness)[08/25/2015 - 09:06:36PM] [Zad]: adding tag ring for Gag (Ring) (Harness)[08/25/2015 - 09:06:36PM] [Zad]: adding tag Harness for Gag (Ring) (Harness)[08/25/2015 - 09:06:36PM] [Zad]: adding tag Gag for Gag (Ring) (Harness)[08/25/2015 - 09:06:36PM] [Zad]: adding tag DDi for Gag (Ball) (Simple)[08/25/2015 - 09:06:36PM] [Zad]: adding tag black for Gag (Ball) (Simple)[08/25/2015 - 09:06:36PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:06:36PM] [Zad]: adding tag Leather for Gag (Ball) (Simple)[08/25/2015 - 09:06:36PM] [Zad]: adding tag ball for Gag (Ball) (Simple)[08/25/2015 - 09:06:36PM] [Zad]: adding tag littlehelper for Little Helpers Plug -Thief[08/25/2015 - 09:06:36PM] [Zad]: adding tag strap for Gag (Ball) (Simple)[08/25/2015 - 09:06:36PM] [Zad]: adding tag Vaginal for Little Helpers Plug -Thief[08/25/2015 - 09:06:36PM] [Zad]: adding tag Plug for Little Helpers Plug -Thief[08/25/2015 - 09:06:36PM] [Zad]: adding tag CD for Little Helpers Plug - Mage[08/25/2015 - 09:06:37PM] [Zad]: adding tag Magic for Little Helpers Plug - Mage[08/25/2015 - 09:06:37PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Mage[08/25/2015 - 09:06:37PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Mage[08/25/2015 - 09:06:37PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Mage[08/25/2015 - 09:06:37PM] [Zad]: adding tag Plug for Little Helpers Plug - Mage[08/25/2015 - 09:06:37PM] [Zad]: adding tag CD for Little Helpers Plug - Fighters[08/25/2015 - 09:06:37PM] [Zad]: adding tag Magic for Little Helpers Plug - Fighters[08/25/2015 - 09:06:37PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Fighters[08/25/2015 - 09:06:37PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Fighters[08/25/2015 - 09:06:37PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Fighters[08/25/2015 - 09:06:37PM] [Zad]: adding tag Plug for Little Helpers Plug - Fighters[08/25/2015 - 09:06:37PM] [Zad]: adding tag CD for Little Devils Plug -The Exciter[08/25/2015 - 09:06:37PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Exciter[08/25/2015 - 09:06:37PM] [Zad]: adding tag littledevil for Little Devils Plug -The Exciter[08/25/2015 - 09:06:37PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Exciter[08/25/2015 - 09:06:37PM] [Zad]: adding tag Plug for Little Devils Plug -The Exciter[08/25/2015 - 09:06:37PM] [Zad]: adding tag CD for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:37PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:38PM] [Zad]: adding tag littledevil for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:38PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:38PM] [Zad]: adding tag Plug for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:38PM] [Zad]: adding tag CD for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:38PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:38PM] [Zad]: adding tag CD for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:38PM] [Zad]: adding tag littledevil for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:38PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:38PM] [Zad]: adding tag Plug for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:38PM] [slamainscr <sla_Main (0A042D62)>]:Defered maintenance...[08/25/2015 - 09:06:38PM] [slamainscr <sla_Main (0A042D62)>]: updated to version : 17[08/25/2015 - 09:06:38PM] [slamainscr <sla_Main (0A042D62)>]: found Devious Devices - Assets.esm[08/25/2015 - 09:06:38PM] [slamainscr <sla_Main (0A042D62)>]Slamain stage 3[08/25/2015 - 09:06:38PM] [Zad]: adding tag CD for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:38PM] [slamainscr <sla_Main (0A042D62)>]: Enabled Desire spell[08/25/2015 - 09:06:38PM] [slamainscr <sla_Main (0A042D62)>]: Updated notification key to 49[08/25/2015 - 09:06:38PM] [slamainscr <sla_Main (0A042D62)>]: finished maintenance[08/25/2015 - 09:06:38PM] [Zad]: adding tag littledevil for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:38PM] [Zad]: adding tag Gag for Gag (Ball) (Simple)[08/25/2015 - 09:06:38PM] [Zad]: adding tag Arms for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:38PM] [Zad]: adding tag Cuffs for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:38PM] [Zad]: adding tag Metal for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:38PM] [Zad]: adding tag Anal for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:38PM] [Zad]: adding tag bronze for Cuffs Bronze (Padded) (Arms)[08/25/2015 - 09:06:38PM] [Zad]: adding tag DDi for Gag (Ring) (Simple)[08/25/2015 - 09:06:39PM] [Zad]: adding tag black for Gag (Ring) (Simple)[08/25/2015 - 09:06:39PM] [Zad]: adding tag Leather for Gag (Ring) (Simple)[08/25/2015 - 09:06:39PM] [Zad]: adding tag ring for Gag (Ring) (Simple)[08/25/2015 - 09:06:39PM] [Zad]: adding tag strap for Gag (Ring) (Simple)[08/25/2015 - 09:06:39PM] [Zad]: adding tag Gag for Gag (Ring) (Simple)[08/25/2015 - 09:06:39PM] [Zad]: adding tag DDi for Blindfold[08/25/2015 - 09:06:39PM] [Zad]: adding tag black for Blindfold[08/25/2015 - 09:06:39PM] [Zad]: adding tag Leather for Blindfold[08/25/2015 - 09:06:39PM] [Zad]: adding tag Blindfold for Blindfold[08/25/2015 - 09:06:39PM] [Zad]: adding tag Plug for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:39PM] [Zad]: adding tag DDi for Cuffs (Leather) (Arms)[08/25/2015 - 09:06:39PM] [Zad]: adding tag black for Cuffs (Leather) (Arms)[08/25/2015 - 09:06:39PM] [Zad]: adding tag Leather for Cuffs (Leather) (Arms)[08/25/2015 - 09:06:39PM] [Zad]: adding tag Arms for Cuffs (Leather) (Arms)[08/25/2015 - 09:06:39PM] [Zad]: adding tag Cuffs for Cuffs (Leather) (Arms)[08/25/2015 - 09:06:39PM] [Zad]: adding tag DDi for Cuffs (Leather) (Legs)[08/25/2015 - 09:06:39PM] [Zad]: adding tag black for Cuffs (Leather) (Legs)[08/25/2015 - 09:06:39PM] [Zad]: adding tag Leather for Cuffs (Leather) (Legs)[08/25/2015 - 09:06:40PM] [Zad]: adding tag Legs for Cuffs (Leather) (Legs)[08/25/2015 - 09:06:40PM] [Zad]: adding tag Cuffs for Cuffs (Leather) (Legs)[08/25/2015 - 09:06:40PM] [Zad]: adding tag CD for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:40PM] [Zad]: adding tag Legs for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:40PM] [Zad]: adding tag Cuffs for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:40PM] [Zad]: adding tag Metal for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:40PM] [Zad]: adding tag bronze for Cuffs Bronze (Padded) (Legs)[08/25/2015 - 09:06:40PM] [Zad]: adding tag CD for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:40PM] [Zad]: adding tag Bra for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:40PM] [Zad]: adding tag Metal for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:40PM] [Zad]: adding tag bronze for Chastity Bra Bronze (Padded)[08/25/2015 - 09:06:40PM] [Zad]: adding tag CD for Little Helpers Plug - Assassin[08/25/2015 - 09:06:40PM] [Zad]: adding tag Magic for Little Helpers Plug - Assassin[08/25/2015 - 09:06:40PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Assassin[08/25/2015 - 09:06:40PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Assassin[08/25/2015 - 09:06:40PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Assassin[08/25/2015 - 09:06:40PM] [Zad]: adding tag Plug for Little Helpers Plug - Assassin[08/25/2015 - 09:06:41PM] [Zad]: adding tag CD for Little Helpers Plug -Thief[08/25/2015 - 09:06:41PM] [Zad]: adding tag Magic for Little Helpers Plug -Thief[08/25/2015 - 09:06:41PM] [Zad]: adding tag SoulGem for Little Helpers Plug -Thief[08/25/2015 - 09:06:41PM] [Zad]: adding tag DDi for Collar (Leather)[08/25/2015 - 09:06:41PM] [Zad]: adding tag short for Collar (Leather)[08/25/2015 - 09:06:41PM] [Zad]: adding tag littlehelper for Little Helpers Plug -Thief[08/25/2015 - 09:06:41PM] [Zad]: adding tag Vaginal for Little Helpers Plug -Thief[08/25/2015 - 09:06:41PM] [Zad]: adding tag Plug for Little Helpers Plug -Thief[08/25/2015 - 09:06:41PM] [Zad]: adding tag CD for Little Helpers Plug - Mage[08/25/2015 - 09:06:41PM] [Zad]: adding tag Magic for Little Helpers Plug - Mage[08/25/2015 - 09:06:41PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Mage[08/25/2015 - 09:06:41PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Mage[08/25/2015 - 09:06:41PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Mage[08/25/2015 - 09:06:41PM] [Zad]: adding tag Plug for Little Helpers Plug - Mage[08/25/2015 - 09:06:41PM] [Zad]: adding tag CD for Little Helpers Plug - Fighters[08/25/2015 - 09:06:41PM] [Zad]: adding tag Magic for Little Helpers Plug - Fighters[08/25/2015 - 09:06:41PM] [Zad]: adding tag SoulGem for Little Helpers Plug - Fighters[08/25/2015 - 09:06:42PM] [Zad]: adding tag littlehelper for Little Helpers Plug - Fighters[08/25/2015 - 09:06:42PM] [Zad]: adding tag Vaginal for Little Helpers Plug - Fighters[08/25/2015 - 09:06:42PM] [Zad]: adding tag Plug for Little Helpers Plug - Fighters[08/25/2015 - 09:06:42PM] [Zad]: adding tag CD for Little Devils Plug -The Exciter[08/25/2015 - 09:06:42PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Exciter[08/25/2015 - 09:06:42PM] [Zad]: adding tag littledevil for Little Devils Plug -The Exciter[08/25/2015 - 09:06:42PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Exciter[08/25/2015 - 09:06:42PM] [Zad]: adding tag Plug for Little Devils Plug -The Exciter[08/25/2015 - 09:06:42PM] [Zad]: adding tag CD for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:42PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:42PM] [Zad]: adding tag littledevil for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:42PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:42PM] [Zad]: adding tag Plug for Little Devils Plug -The Tormentor[08/25/2015 - 09:06:42PM] [Zad]: adding tag black for Collar (Leather)[08/25/2015 - 09:06:42PM] [Zad]: adding tag CD for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:42PM] [Zad]: adding tag SoulGem for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:42PM] [Zad]: adding tag littledevil for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:43PM] [Zad]: adding tag CD for Little Devils Plug -The Punisher[08/25/2015 - 09:06:43PM] [Zad]: adding tag littledevil for Little Devils Plug -The Punisher[08/25/2015 - 09:06:43PM] [Zad]: adding tag Anal for Little Devils Plug -The Punisher[08/25/2015 - 09:06:43PM] [Zad]: adding tag Plug for Little Devils Plug -The Punisher[08/25/2015 - 09:06:43PM] [Zad]: adding tag Leather for Collar (Leather)[08/25/2015 - 09:06:43PM] [Zad]: adding tag Collar for Collar (Leather)[08/25/2015 - 09:06:43PM] [Zad]: adding tag Vaginal for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:43PM] [Zad]: adding tag DDi for Harness[08/25/2015 - 09:06:43PM] [Zad]: adding tag full for Harness[08/25/2015 - 09:06:43PM] [Zad]: adding tag black for Harness[08/25/2015 - 09:06:43PM] [Zad]: adding tag Leather for Harness[08/25/2015 - 09:06:43PM] [Zad]: adding tag Harness for Harness[08/25/2015 - 09:06:43PM] [Zad]: adding tag DDi for Collar (Leather) (Harness)[08/25/2015 - 09:06:43PM] [Zad]: adding tag black for Collar (Leather) (Harness)[08/25/2015 - 09:06:43PM] [Zad]: adding tag Leather for Collar (Leather) (Harness)[08/25/2015 - 09:06:43PM] [Zad]: adding tag Harness for Collar (Leather) (Harness)[08/25/2015 - 09:06:43PM] [Zad]: adding tag Collar for Collar (Leather) (Harness)[08/25/2015 - 09:06:44PM] [Zad]: adding tag DDi for Plug (Iron) (Vaginal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag simple for Plug (Iron) (Vaginal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag IRON for Plug (Iron) (Vaginal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag Vaginal for Plug (Iron) (Vaginal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag Plug for Plug (Iron) (Vaginal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag DDi for Plug (Iron) (Anal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag simple for Plug (Iron) (Anal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag IRON for Plug (Iron) (Anal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag Anal for Plug (Iron) (Anal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag Plug for Plug (Iron) (Anal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag DDi for Plug (Primitive) (Vaginal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag simple for Plug (Primitive) (Vaginal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag primitive for Plug (Primitive) (Vaginal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag Vaginal for Plug (Primitive) (Vaginal)[08/25/2015 - 09:06:44PM] [Zad]: adding tag Plug for Plug (Primitive) (Vaginal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag DDi for Plug (Primitive) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag simple for Plug (Primitive) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag primitive for Plug (Primitive) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag Anal for Plug (Primitive) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag Plug for Plug (Primitive) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag DDi for Plug (Soulgem) (Vaginal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag Magic for Plug (Soulgem) (Vaginal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag SoulGem for Plug (Soulgem) (Vaginal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag Vaginal for Plug (Soulgem) (Vaginal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag Plug for Plug (Soulgem) (Vaginal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag DDi for Plug (Soulgem) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag Magic for Plug (Soulgem) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag SoulGem for Plug (Soulgem) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag Anal for Plug (Soulgem) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag Plug for Plug (Soulgem) (Anal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag DDi for Plug (Inflatable) (Vaginal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag inflatable for Plug (Inflatable) (Vaginal)[08/25/2015 - 09:06:45PM] [Zad]: adding tag Vaginal for Plug (Inflatable) (Vaginal)[08/25/2015 - 09:06:46PM] [Zad]: adding tag pump for Plug (Inflatable) (Vaginal)[08/25/2015 - 09:06:46PM] [Zad]: adding tag Plug for Plug (Inflatable) (Vaginal)[08/25/2015 - 09:06:46PM] [Zad]: adding tag DDi for Plug (Inflatable) (Anal)[08/25/2015 - 09:06:46PM] [Zad]: adding tag inflatable for Plug (Inflatable) (Anal)[08/25/2015 - 09:06:46PM] [Zad]: adding tag Anal for Plug (Inflatable) (Anal)[08/25/2015 - 09:06:46PM] [Zad]: adding tag pump for Plug (Inflatable) (Anal)[08/25/2015 - 09:06:46PM] [Zad]: adding tag Plug for Plug (Inflatable) (Anal)[08/25/2015 - 09:06:46PM] [Zad]: adding tag DDi for Chastity Belt (Padded) (Open)[08/25/2015 - 09:06:46PM] [Zad]: adding tag Open for Chastity Belt (Padded) (Open)[08/25/2015 - 09:06:46PM] [Zad]: adding tag padded for Chastity Belt (Padded) (Open)[08/25/2015 - 09:06:46PM] [Zad]: adding tag Metal for Chastity Belt (Padded) (Open)[08/25/2015 - 09:06:46PM] [Zad]: adding tag Belt for Chastity Belt (Padded) (Open)[08/25/2015 - 09:06:46PM] [Zad]: adding tag DDi for Chastity Belt (Padded)[08/25/2015 - 09:06:46PM] [Zad]: adding tag full for Chastity Belt (Padded)[08/25/2015 - 09:06:46PM] [Zad]: adding tag padded for Chastity Belt (Padded)[08/25/2015 - 09:06:46PM] [Zad]: adding tag Metal for Chastity Belt (Padded)[08/25/2015 - 09:06:46PM] [Zad]: adding tag Belt for Chastity Belt (Padded)[08/25/2015 - 09:06:47PM] [Zad]: adding tag DDi for Chastity Belt (Iron)[08/25/2015 - 09:06:47PM] [Zad]: adding tag full for Chastity Belt (Iron)[08/25/2015 - 09:06:47PM] [Zad]: adding tag IRON for Chastity Belt (Iron)[08/25/2015 - 09:06:47PM] [Zad]: adding tag Metal for Chastity Belt (Iron)[08/25/2015 - 09:06:47PM] [Zad]: adding tag Belt for Chastity Belt (Iron)[08/25/2015 - 09:06:47PM] [Zad]: adding tag DDi for Nipple Piercings (Soulgem)[08/25/2015 - 09:06:47PM] [Zad]: adding tag SoulGem for Nipple Piercings (Soulgem)[08/25/2015 - 09:06:47PM] [Zad]: adding tag nipple for Nipple Piercings (Soulgem)[08/25/2015 - 09:06:47PM] [Zad]: adding tag Piercing for Nipple Piercings (Soulgem)[08/25/2015 - 09:06:47PM] [Zad]: adding tag DDi for Vaginal Piercing (Soulgem)[08/25/2015 - 09:06:47PM] [Zad]: adding tag SoulGem for Vaginal Piercing (Soulgem)[08/25/2015 - 09:06:47PM] [Zad]: adding tag Vaginal for Vaginal Piercing (Soulgem)[08/25/2015 - 09:06:47PM] [Zad]: adding tag Piercing for Vaginal Piercing (Soulgem)[08/25/2015 - 09:06:48PM] [Zad]: adding tag black for Restrictive Collar[08/25/2015 - 09:06:48PM] [Zad]: adding tag Metal for Restrictive Collar[08/25/2015 - 09:06:48PM] [Zad]: adding tag restrictive for Restrictive Collar[08/25/2015 - 09:06:48PM] [Zad]: adding tag Collar for Restrictive Collar[08/25/2015 - 09:06:48PM] [Zad]: adding tag koffii for Restrictive Collar[08/25/2015 - 09:06:48PM] [Zad]: adding tag DDi for Restrictive Collar[08/25/2015 - 09:06:48PM] [Zad]: adding tag black for Restrictive Corset[08/25/2015 - 09:06:48PM] [Zad]: adding tag Leather for Restrictive Corset[08/25/2015 - 09:06:48PM] [Zad]: adding tag corset for Restrictive Corset[08/25/2015 - 09:06:48PM] [Zad]: adding tag restrictive for Restrictive Corset[08/25/2015 - 09:06:48PM] [Zad]: adding tag DDi for Restrictive Corset[08/25/2015 - 09:06:48PM] [Zad]: adding tag black for Restrictive Gloves[08/25/2015 - 09:06:48PM] [Zad]: adding tag Leather for Restrictive Gloves[08/25/2015 - 09:06:48PM] [Zad]: adding tag Gloves for Restrictive Gloves[08/25/2015 - 09:06:48PM] [Zad]: adding tag restrictive for Restrictive Gloves[08/25/2015 - 09:06:48PM] [Zad]: adding tag DDi for Restrictive Gloves[08/25/2015 - 09:06:48PM] [Zad]: adding tag Metal for Yoke (Iron)[08/25/2015 - 09:06:48PM] [Zad]: adding tag Yoke for Yoke (Iron)[08/25/2015 - 09:06:49PM] [Zad]: adding tag DDi for Yoke (Iron)[08/25/2015 - 09:06:49PM] [Zad]: Finished registering devices.[08/25/2015 - 09:06:49PM] [Zad]: Monitoring Camera state.[08/25/2015 - 09:06:49PM] [Zad]: adding tag Plug for Little Devils Plug -The Orgasmo[08/25/2015 - 09:06:49PM] [Zad]: adding tag CD for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:49PM] [Zad]: adding tag littledevil for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:49PM] [Zad]: adding tag Anal for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:49PM] [Zad]: adding tag Plug for Little Devils Plug -The Spoiler[08/25/2015 - 09:06:49PM] [Zad]: adding tag CD for Little Devils Plug -The Punisher[08/25/2015 - 09:06:49PM] [Zad]: adding tag littledevil for Little Devils Plug -The Punisher[08/25/2015 - 09:06:49PM] [Zad]: adding tag Anal for Little Devils Plug -The Punisher[08/25/2015 - 09:06:49PM] [Zad]: adding tag Plug for Little Devils Plug -The Punisher[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [MiscObject < (0000000A)>], itemCount=10[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] ERROR: Unable to call Delete - no native object bound to the script object, or object is of incorrect typestack: [item 2 in container (90000F02)].zadHiderScript.Delete() - "<native>" Line ? [item 2 in container (90000F02)].zadHiderScript.OnContainerChanged() - "zadHiderScript.psc" Line 5[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (0008F19A)>], itemCount=1[08/25/2015 - 09:06:56PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [WEAPON < (00013790)>], itemCount=1[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [WEAPON < (0001397E)>], itemCount=1[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [WEAPON < (0003B562)>], itemCount=1[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Ammo < (0001397D)>], itemCount=23[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Light < (0001D4EC)>], itemCount=2[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (00012E4B)>], itemCount=1[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (10040F0C)>], itemCount=1[08/25/2015 - 09:06:56PM] ERROR: Unable to call Delete - no native object bound to the script object, or object is of incorrect typestack: [item 2 in container (00000014)].zadHiderScript.Delete() - "<native>" Line ? [item 2 in container (00000014)].zadHiderScript.OnContainerChanged() - "zadHiderScript.psc" Line 5[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [MiscObject < (0000000F)>], itemCount=140[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Potion < (0003EADD)>], itemCount=5[08/25/2015 - 09:06:56PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:56PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (00012EB6)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (0003EAE0)>], itemCount=5[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (00039B4A)>], itemCount=2[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (0003EAE5)>], itemCount=5[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (0003EB2A)>], itemCount=1[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (0003EB33)>], itemCount=1[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [WEAPON < (00012EB7)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (000F86FE)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [book < (31000D62)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] [Zad]: Set slot mask to [0]: 0[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (00012E46)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (00012E49)>], itemCount=1[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Armor < (0010E039)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Armor < (0003C9FE)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Armor < (0003CA00)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Form < (92009726)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Armor < (10040F0C)>], itemCount=1[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:06:57PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:06:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:06:58PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:58PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:58PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:06:58PM] [Zad]: Set slot mask to [337641472]: 337641472[08/25/2015 - 09:06:58PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:58PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:58PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [DLC1VampireSleepScript <DLC1VampireSleep (02008E3B)>]PlayerActivateBed() IsCoffin =False[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:06:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:07:23PM] VM is freezing...[08/25/2015 - 09:07:23PM] VM is frozen[08/25/2015 - 09:07:27PM] Saving game...[08/25/2015 - 09:07:28PM] VM is thawing...[08/25/2015 - 09:07:28PM] DARYL - [WeaponRackActivateSCRIPT < (000B6F6A)>] running OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:07:28PM] DARYL - [WeaponRackActivateSCRIPT < (000ACD81)>] running OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:07:28PM] DARYL - [WeaponRackActivateSCRIPT < (000ACD7F)>] running OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:07:28PM] [dlc1radiantscript <DLC1Radiant (02004C1C)>]CreateQuestBasedOnLocation([Location < (00013163)>])[08/25/2015 - 09:07:28PM] [DCL1VampireTurnPlayerScript <alias Player on quest DLC1VampireTurn (0200588C)>]OnLocationChange()[08/25/2015 - 09:07:28PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]: [Location < (0001CB8C)>], [Location < (00013163)>][08/25/2015 - 09:07:28PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] PlayerChangeLocation: oldloc=[Location < (0001CB8C)>], newloc=[Location < (00013163)>][08/25/2015 - 09:07:30PM] DARYL - [WeaponRackActivateSCRIPT < (000B6F6A)>] The TriggerMarker is [WeaponRackTriggerSCRIPT < (000B6F69)>][08/25/2015 - 09:07:30PM] DARYL - [WeaponRackActivateSCRIPT < (000ACD81)>] The TriggerMarker is [WeaponRackTriggerSCRIPT < (000ACD80)>][08/25/2015 - 09:07:30PM] DARYL - [WeaponRackActivateSCRIPT < (000ACD7F)>] The TriggerMarker is [WeaponRackTriggerSCRIPT < (000ACD7E)>][08/25/2015 - 09:07:31PM] New Mia CellTrack changed cells to[08/25/2015 - 09:07:31PM] [dlc1radiantscript <DLC1Radiant (02004C1C)>]CreateQuestBasedOnLocation([Location < (00013163)>]) is NOT creating a quest: as Location is neither DLC1HunterHQLocation nor DLC1VampireCastleLocation[08/25/2015 - 09:07:31PM] DARYL - [WeaponRackActivateSCRIPT < (000B6F6A)>] finishing OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:07:31PM] DARYL - [WeaponRackActivateSCRIPT < (000ACD81)>] finishing OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:07:31PM] DARYL - [WeaponRackActivateSCRIPT < (000ACD7F)>] finishing OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:07:31PM] Mia OnLocationChange changed cells to[08/25/2015 - 09:07:32PM] MIa OnPlayerChancedCells = , slave count 0[08/25/2015 - 09:07:32PM] Vern OnPlayerChancedCells =[08/25/2015 - 09:07:35PM] [CF][Creature] Started on ["Tabiana" [Actor < (2B005C4C)>]][08/25/2015 - 09:07:35PM] ERROR: Unable to call UnregisterForAllModEvents - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.UnregisterForAllModEvents() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 26[08/25/2015 - 09:07:35PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 27[08/25/2015 - 09:07:35PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 28[08/25/2015 - 09:07:35PM] [CF][Creature] Started on ["Horse" [Actor < (2B009B18)>]][08/25/2015 - 09:07:35PM] ERROR: Unable to call UnregisterForAllModEvents - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.UnregisterForAllModEvents() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 26[08/25/2015 - 09:07:35PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 27[08/25/2015 - 09:07:35PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 28[08/25/2015 - 09:07:35PM] [CF][Creature] Started on ["Faendal's Dog" [Actor < (6D00397E)>]][08/25/2015 - 09:07:35PM] ERROR: Unable to call UnregisterForAllModEvents - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.UnregisterForAllModEvents() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 26[08/25/2015 - 09:07:35PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 27[08/25/2015 - 09:07:35PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 28[08/25/2015 - 09:07:35PM] [CF][Creature Apply] Failure on ["chicken" [Actor < (001066DF)>]]; creature isn't registered; race=["rabbit" [Race <ChickenRace (000A919D)>]] skin=["chicken" [Armor < (000A919C)>]][08/25/2015 - 09:07:35PM] [CF][Creature] Finished on ["Tabiana" [Actor < (2B005C4C)>]][08/25/2015 - 09:07:35PM] [CF][Creature] Finished on ["Horse" [Actor < (2B009B18)>]][08/25/2015 - 09:07:35PM] [CF][Creature] Finished on ["Faendal's Dog" [Actor < (6D00397E)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["Ogarth" [Actor < (2B003907)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["Faendal" [TrainerGoldScript < (0001348C)>]]; creature isn't registered; race=["Wood Elf" [Race <WoodElfRace (00013749)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["Azzan" [Actor < (2B007372)>]]; creature isn't registered; race=["Redguard" [Race <RedguardRace (00013748)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:36PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 29[08/25/2015 - 09:07:36PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 30[08/25/2015 - 09:07:36PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 31[08/25/2015 - 09:07:36PM] [CF][Framework] Didn't remove active actor ["Horse" [Actor < (2B009B18)>]]; not active[08/25/2015 - 09:07:36PM] [CF][Framework] Adding active actor ["Horse" [Actor < (2B009B18)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["Cow" [Actor < (00060B22)>]]; creature isn't registered; race=["highlandcow" [Race <CowRace (0004E785)>]] skin=["highlandcow" [Armor < (0004E784)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["chicken" [Actor < (0010962A)>]]; creature isn't registered; race=["rabbit" [Race <ChickenRace (000A919D)>]] skin=["chicken" [Armor < (000A919C)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["Hod" [WIDeadBodyCleanupScript < (0001348A)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["chicken" [Actor < (001066DE)>]]; creature isn't registered; race=["rabbit" [Race <ChickenRace (000A919D)>]] skin=["chicken" [Armor < (000A919C)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["Ralof" [Actor < (0002BF9E)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["Frodnar" [Actor < (0001348B)>]]; creature isn't registered; race=["Child - Nord " [Race <NordRaceChild (0002C65B)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:36PM] [CF][Creature Apply] Failure on ["Alvor" [Actor < (00013482)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:36PM] [CF][Creature] Removing both armours from ["Horse" [Actor < (2B009B18)>]][08/25/2015 - 09:07:37PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 29[08/25/2015 - 09:07:37PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 30[08/25/2015 - 09:07:37PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 31[08/25/2015 - 09:07:37PM] [CF][Framework] Adding active actor ["Faendal's Dog" [Actor < (6D00397E)>]][08/25/2015 - 09:07:37PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 29[08/25/2015 - 09:07:37PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 30[08/25/2015 - 09:07:37PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 31[08/25/2015 - 09:07:37PM] [CF][Creature Apply] Failure on ["Fjol" [Actor < (2B004FDC)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:37PM] [CF][Creature] ["Horse" [Actor < (2B009B18)>]] unaroused[08/25/2015 - 09:07:38PM] [CF][Creature Apply] Failure on ["Hilde" [Actor < (00035534)>]]; creature isn't registered; race=["Old People Race" [Race <ElderRace (00067CD8)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:38PM] [CF][Creature Apply] Failure on ["Embry" [Actor < (0003550C)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:38PM] [CF][Creature] ["Faendal's Dog" [Actor < (6D00397E)>]] unaroused[08/25/2015 - 09:07:38PM] [CF][Creature] Not equipping normal armour on ["Faendal's Dog" [Actor < (6D00397E)>]] race [Race <DogRace (000131EE)>] skin [Armor < (0C0058CB)>]; there is no normal armour[08/25/2015 - 09:07:38PM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 36[08/25/2015 - 09:07:38PM] [CF][Framework] Didn't remove active actor ["Tabiana" [Actor < (2B005C4C)>]]; not active[08/25/2015 - 09:07:38PM] [CF][Creature] ["Tabiana" [Actor < (2B005C4C)>]] unaroused[08/25/2015 - 09:07:38PM] [CF][Creature] Removing both armours from ["Tabiana" [Actor < (2B005C4C)>]][08/25/2015 - 09:07:38PM] [CF][Creature Apply] Failure on ["Bette" [Actor < (2B008008)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:38PM] [CF][Creature Apply] Failure on ["Gerdur" [Actor < (00013489)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:39PM] [CF][Framework] Removed active actor ["Faendal's Dog" [Actor < (6D00397E)>]][08/25/2015 - 09:07:39PM] [CF][Creature] Not equipping normal armour on ["Horse" [Actor < (2B009B18)>]] race [Race <HorseRace (000131FD)>] skin [Armor < (00060715)>]; there is no normal armour[08/25/2015 - 09:07:39PM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 36[08/25/2015 - 09:07:39PM] [CF][Creature] Removing both armours from ["Faendal's Dog" [Actor < (6D00397E)>]][08/25/2015 - 09:07:39PM] [CF][Creature Apply] Failure on ["Sigrid" [WIDeadBodyCleanupScript < (00013483)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:07:39PM] [CF][Framework] Adding active actor ["Tabiana" [Actor < (2B005C4C)>]][08/25/2015 - 09:07:39PM] [CF][Creature] Not equipping normal armour on ["Tabiana" [Actor < (2B005C4C)>]] race [Race <ArgonianRace (00013740)>] skin [Armor < (0C0058CB)>]; there is no normal armour[08/25/2015 - 09:07:39PM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 36[08/25/2015 - 09:07:50PM] VM is freezing...[08/25/2015 - 09:07:50PM] VM is frozen[08/25/2015 - 09:07:52PM] Saving game...[08/25/2015 - 09:08:32PM] VM is thawing...[08/25/2015 - 09:08:32PM] [DLC2PillarBuilderActorScript < (030177DD)>]OnPackageStart()[08/25/2015 - 09:08:36PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]: [Location < (00013163)>], [Location < (00018A53)>][08/25/2015 - 09:08:36PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] PlayerChangeLocation: oldloc=[Location < (00013163)>], newloc=[Location < (00018A53)>][08/25/2015 - 09:08:36PM] [DCL1VampireTurnPlayerScript <alias Player on quest DLC1VampireTurn (0200588C)>]OnLocationChange()[08/25/2015 - 09:08:36PM] [dlc1radiantscript <DLC1Radiant (02004C1C)>]CreateQuestBasedOnLocation([Location < (00018A53)>])[08/25/2015 - 09:08:38PM] [Zad]: CheckAllEvents()[08/25/2015 - 09:08:38PM] [dlc1radiantscript <DLC1Radiant (02004C1C)>]CreateQuestBasedOnLocation([Location < (00018A53)>]) is NOT creating a quest: as Location is neither DLC1HunterHQLocation nor DLC1VampireCastleLocation[08/25/2015 - 09:08:38PM] [Zad]: ZadNpc::OnUpdateGameTime()[08/25/2015 - 09:08:38PM] Mia OnLocationChange changed cells to[08/25/2015 - 09:08:38PM] Player changed cell, returning[08/25/2015 - 09:08:38PM] No Sex Slaves or WantsCellScans = False, no sense in scanning the cell[08/25/2015 - 09:08:39PM] ERROR: (000844A5): cannot enable an object with an enable state parent.stack: [ (000844A5)].lvlpredatorscript.Enable() - "<native>" Line ? [ (000844A5)].lvlpredatorscript.OnCellLoad() - "LvlPredatorScript.psc" Line 26[08/25/2015 - 09:08:39PM] ERROR: (000844A9): cannot enable an object with an enable state parent.stack: [ (000844A9)].lvlpredatorscript.Enable() - "<native>" Line ? [ (000844A9)].lvlpredatorscript.OnCellLoad() - "LvlPredatorScript.psc" Line 26[08/25/2015 - 09:08:39PM] Updating Orphanables Status: ------------------------[08/25/2015 - 09:08:39PM] MIa OnPlayerChancedCells = , slave count 0[08/25/2015 - 09:08:39PM] Vern OnPlayerChancedCells =[08/25/2015 - 09:08:39PM] New Mia CellTrack changed cells to[08/25/2015 - 09:08:40PM] ERROR: (000844A3): cannot enable an object with an enable state parent.stack: [ (000844A3)].lvlpredatorscript.Enable() - "<native>" Line ? [ (000844A3)].lvlpredatorscript.OnCellLoad() - "LvlPredatorScript.psc" Line 26[08/25/2015 - 09:08:40PM] ERROR: (000844A4): cannot enable an object with an enable state parent.stack: [ (000844A4)].lvlpredatorscript.Enable() - "<native>" Line ? [ (000844A4)].lvlpredatorscript.OnCellLoad() - "LvlPredatorScript.psc" Line 26[08/25/2015 - 09:08:40PM] ERROR: (000844A8): cannot enable an object with an enable state parent.stack: [ (000844A8)].lvlpredatorscript.Enable() - "<native>" Line ? [ (000844A8)].lvlpredatorscript.OnCellLoad() - "LvlPredatorScript.psc" Line 26[08/25/2015 - 09:08:40PM] ERROR: (000844AA): cannot enable an object with an enable state parent.stack: [ (000844AA)].lvlpredatorscript.Enable() - "<native>" Line ? [ (000844AA)].lvlpredatorscript.OnCellLoad() - "LvlPredatorScript.psc" Line 26[08/25/2015 - 09:08:40PM] [Zad]: ZadNpc::DoRegister(1.499752)[08/25/2015 - 09:08:43PM] [CF][Creature] Finished on ["Tabiana" [Actor < (2B005C4C)>]][08/25/2015 - 09:08:43PM] ERROR: Cannot call RemoveActiveActor() on a None object, aborting function callstack: [None].CFEffectCreature.OnEffectFinish() - "CFEffectCreature.psc" Line 47[08/25/2015 - 09:08:43PM] warning: Assigning None to a non-object variable named "::temp11"stack: [None].CFEffectCreature.OnEffectFinish() - "CFEffectCreature.psc" Line 47[08/25/2015 - 09:08:43PM] [CF][Creature] EffectCreature fails - no valid actor[08/25/2015 - 09:08:43PM] [CF][Creature] Started on ["Tabiana" [Actor < (2B005C4C)>]][08/25/2015 - 09:08:43PM] ERROR: Unable to call UnregisterForAllModEvents - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.UnregisterForAllModEvents() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 26[08/25/2015 - 09:08:43PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 27[08/25/2015 - 09:08:43PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 28[08/25/2015 - 09:08:45PM] [DLC1VampireSleepScript <DLC1VampireSleep (02008E3B)>]PlayerActivateBed() IsCoffin =False[08/25/2015 - 09:08:46PM] [CF][Creature Apply] Failure on ["mudcrab" [Actor < (0010832F)>]]; creature isn't registered; race=["mudcrab" [Race <MudcrabRace (000BA545)>]] skin=["" [Armor < (000E40BA)>]][08/25/2015 - 09:08:53PM] VM is freezing...[08/25/2015 - 09:08:53PM] VM is frozen[08/25/2015 - 09:08:56PM] Saving game...[08/25/2015 - 09:08:57PM] VM is thawing...[08/25/2015 - 09:08:57PM] [CF][Creature Apply] Failure on ["mudcrab" [Actor < (0010832D)>]]; creature isn't registered; race=["mudcrab" [Race <MudcrabRace (000BA545)>]] skin=["" [Armor < (07002341)>]][08/25/2015 - 09:08:57PM] [dlc1radiantscript <DLC1Radiant (02004C1C)>]CreateQuestBasedOnLocation([Location < (000C342D)>])[08/25/2015 - 09:08:57PM] [DCL1VampireTurnPlayerScript <alias Player on quest DLC1VampireTurn (0200588C)>]OnLocationChange()[08/25/2015 - 09:08:57PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]: [Location < (00018A53)>], [Location < (000C342D)>][08/25/2015 - 09:08:57PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] PlayerChangeLocation: oldloc=[Location < (00018A53)>], newloc=[Location < (000C342D)>][08/25/2015 - 09:08:57PM] [Zad]: OnContainerChanged()[08/25/2015 - 09:08:57PM] [Zad]: OnContainerChanged()[08/25/2015 - 09:08:57PM] [Zad]: OnContainerChanged()[08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D70)>] running OnCellLoad() and AlreadyInit = False[08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D71)>] running OnCellLoad() and AlreadyInit = False[08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D75)>] running OnCellLoad() and AlreadyInit = False[08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6B)>] running OnCellLoad() and AlreadyInit = False[08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6D)>] running OnCellLoad() and AlreadyInit = False[08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D76)>] running OnCellLoad() and AlreadyInit = False[08/25/2015 - 09:08:57PM] Scan cell for Followers total 0[08/25/2015 - 09:08:57PM] ScanCellForFollower exits with 0 female followers[08/25/2015 - 09:08:57PM] No Sex Slaves or WantsCellScans = False, no sense in scanning the cell[08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D70)>] The TriggerMarker is [WeaponRackTriggerSCRIPT < (90000D6F)>][08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D71)>] The TriggerMarker is [WeaponRackTriggerSCRIPT < (90000D73)>][08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6B)>] The TriggerMarker is [WeaponRackTriggerSCRIPT < (90000D6E)>][08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D75)>] The TriggerMarker is [WeaponRackTriggerSCRIPT < (90000D72)>][08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6D)>] The TriggerMarker is [WeaponRackTriggerSCRIPT < (90000D6C)>][08/25/2015 - 09:08:57PM] DARYL - [WeaponRackActivateSCRIPT < (90000D76)>] The TriggerMarker is [WeaponRackTriggerSCRIPT < (90000D74)>][08/25/2015 - 09:08:57PM] [CF][Framework] Adding active actor ["skeever" [Actor < (000844D2)>]][08/25/2015 - 09:08:57PM] [CF][Creature Apply] Failure on ["Parasite" [Actor < (0010832C)>]]; creature isn't registered; race=["Chaurus" [Race <00parasiteRace (07045080)>]] skin=["Chaurus" [Armor < (07044B1B)>]][08/25/2015 - 09:08:57PM] [dlc1radiantscript <DLC1Radiant (02004C1C)>]CreateQuestBasedOnLocation([Location < (000C342D)>]) is NOT creating a quest: as Location is neither DLC1HunterHQLocation nor DLC1VampireCastleLocation[08/25/2015 - 09:08:57PM] Mia OnLocationChange changed cells to Morthal Vigilants HQ[08/25/2015 - 09:08:57PM] [CF][Creature Apply] Failure on ["mudcrab" [Actor < (0010832E)>]]; creature isn't registered; race=["mudcrab" [Race <MudcrabRace (000BA545)>]] skin=["" [Armor < (000E40BA)>]][08/25/2015 - 09:08:58PM] MIa OnPlayerChancedCells = Morthal Vigilants HQ, slave count 0[08/25/2015 - 09:08:58PM] Vern OnPlayerChancedCells = Morthal Vigilants HQ[08/25/2015 - 09:08:58PM] [Zad]: OnEquipped(Retributor: Custom Ebonite Slave Harness)[08/25/2015 - 09:08:58PM] [Zad]: OnEquipped(Retributor: Plug (Shock) (Vaginal))[08/25/2015 - 09:08:58PM] [Zad]: OnEquipped(Retributor: Plug (Shock) (Anal))[08/25/2015 - 09:08:58PM] [Zad]: No menus are open. Equipping silently.[08/25/2015 - 09:08:58PM] [Zad]: No menus are open. Equipping silently.[08/25/2015 - 09:08:58PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 29[08/25/2015 - 09:08:58PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 30[08/25/2015 - 09:08:58PM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 31[08/25/2015 - 09:08:58PM] Mia cell track Player changed cells to Morthal Vigilants HQ[08/25/2015 - 09:08:59PM] [Zad]: No menus are open. Equipping silently.[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D70)>] The Starting Weapon is None[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D70)>] Doesn't have a starting weapon[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D70)>] finishing OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D71)>] The Starting Weapon is None[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D71)>] Doesn't have a starting weapon[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D71)>] finishing OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6B)>] The Starting Weapon is None[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6B)>] Doesn't have a starting weapon[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6B)>] finishing OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D75)>] The Starting Weapon is None[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D75)>] Doesn't have a starting weapon[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D75)>] finishing OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:08:59PM] [CF][Framework] Adding active actor ["skeever" [Actor < (000844D3)>]][08/25/2015 - 09:08:59PM] [CF][Creature Apply] Failure on ["mudcrab" [Actor < (00108331)>]]; creature isn't registered; race=["mudcrab" [Race <MudcrabRace (000BA545)>]] skin=["" [Armor < (07002341)>]][08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6D)>] The Starting Weapon is None[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6D)>] Doesn't have a starting weapon[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D6D)>] finishing OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D76)>] The Starting Weapon is None[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D76)>] Doesn't have a starting weapon[08/25/2015 - 09:08:59PM] DARYL - [WeaponRackActivateSCRIPT < (90000D76)>] finishing OnCellLoad() and AlreadyInit = TRUE[08/25/2015 - 09:08:59PM] MIa OnPlayerChancedCells = Morthal Vigilants HQ, slave count 0[08/25/2015 - 09:08:59PM] Vern OnPlayerChancedCells = Morthal Vigilants HQ[08/25/2015 - 09:08:59PM] New Mia CellTrack changed cells to Morthal Vigilants HQ[08/25/2015 - 09:08:59PM] [CF][Creature] Started on ["skeever" [Actor < (000844D2)>]][08/25/2015 - 09:08:59PM] [CF][Creature Apply] Failure on ["Vigilant of Stendarr" [Actor < (90000EE8)>]]; creature isn't registered; race=["Dark Elf" [Race <DarkElfRace (00013742)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:00PM] [CF][Creature Apply] Failure on ["Morthal Guard" [Actor < (0002C830)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:00PM] [CF][Creature Apply] Failure on ["Morthal Guard" [Actor < (29003416)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:00PM] No Sex Slaves or WantsCellScans = False, no sense in scanning the cell[08/25/2015 - 09:09:00PM] [CF][Creature Apply] Failure on ["Elk" [Actor < (000844D4)>]]; creature isn't registered; race=["Deer" [Race <ElkRace (000131ED)>]] skin=["Elkmale" [Armor < (0005E979)>]][08/25/2015 - 09:09:00PM] [CF][Creature] Started on ["skeever" [Actor < (000844D3)>]][08/25/2015 - 09:09:00PM] [CF][Creature Apply] Failure on ["Agni" [Actor < (0001AA5F)>]]; creature isn't registered; race=["Child - Nord " [Race <NordRaceChild (0002C65B)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:00PM] [Zad]: OnEquipped(): Detected/fixed broken item state. Retributor has rendered Vaginal Plug in inventory still.[08/25/2015 - 09:09:00PM] [CF][Creature Apply] Failure on ["Korn" [Actor < (29002E77)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:00PM] [CF][Creature] ["Tabiana" [Actor < (2B005C4C)>]] unaroused[08/25/2015 - 09:09:00PM] [CF][Creature Apply] Failure on ["Hroggar" [Actor < (0001AA5D)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:00PM] [CF][Creature Apply] Failure on ["Morthal Guard" [Actor < (0002C823)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:00PM] [CF][Creature Apply] Failure on ["Thetri" [Actor < (5000593F)>]]; creature isn't registered; race=["Breton" [Race <BretonRace (00013741)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:00PM] [Zad]: OnEquipped(): Detected/fixed broken item state. Retributor has rendered Anal Plug in inventory still.[08/25/2015 - 09:09:00PM] [sexSlConfigScript <SexSlConfig (14032106)>]: Registered Sex Slaves at MCM.[08/25/2015 - 09:09:00PM] [Zad]: OnUnequipped(Retributor: Plug (Shock) (Vaginal))[08/25/2015 - 09:09:00PM] [Zad]: OnEquipped(): Detected/fixed broken item state. Retributor has rendered Harness in inventory still.[08/25/2015 - 09:09:00PM] [zzestruschaurusmcmscript <zzEstrusChaurusMCM (7000EF8A)>]: Registered Estrus Chaurus at MCM.[08/25/2015 - 09:09:01PM] [CDxMCMMenu <CDxMCMMenu (8905BBEE)>]: Registered Captured Dreams at MCM.[08/25/2015 - 09:09:01PM] [Zad]: OnUnequipped(Retributor: Plug (Shock) (Anal))[08/25/2015 - 09:09:01PM] [AFS_MCMScript <AFS_MCM (8F0748CF)>]: Registered A Forsworn Story at MCM.[08/25/2015 - 09:09:01PM] [ftmmcmconfigmenu <FtMMenu (91016E85)>]: Registered DD - For the Masses at MCM.[08/25/2015 - 09:09:01PM] [CF][Creature] ["skeever" [Actor < (000844D2)>]] unaroused[08/25/2015 - 09:09:01PM] [Zad]: OnUnequipped(Retributor: Custom Ebonite Slave Harness)[08/25/2015 - 09:09:01PM] [CF][Creature] ["skeever" [Actor < (000844D3)>]] unaroused[08/25/2015 - 09:09:01PM] [CF][Creature] Not equipping normal armour on ["skeever" [Actor < (000844D3)>]] race [Race <SkeeverRace (00013201)>] skin [Armor < (0C0058CB)>]; there is no normal armour[08/25/2015 - 09:09:01PM] Scan cell for Followers total 0[08/25/2015 - 09:09:01PM] ScanCellForFollower exits with 0 female followers[08/25/2015 - 09:09:01PM] No Sex Slaves or WantsCellScans = False, no sense in scanning the cell[08/25/2015 - 09:09:02PM] [CF][Creature] Not equipping normal armour on ["skeever" [Actor < (000844D2)>]] race [Race <SkeeverRace (00013201)>] skin [Armor < (0C0058CB)>]; there is no normal armour[08/25/2015 - 09:09:02PM] [CF][Creature] Not equipping normal armour on ["Tabiana" [Actor < (2B005C4C)>]] race [Race <ArgonianRace (00013740)>] skin [Armor < (0C0058CB)>]; there is no normal armour[08/25/2015 - 09:09:02PM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect typestack: [None].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ? [None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 36[08/25/2015 - 09:09:03PM] Requesting transfer for [Actor < (000199D0)>][08/25/2015 - 09:09:03PM] [CF][Creature Apply] Failure on ["Retributor" [Actor < (90000EF4)>]]; creature isn't registered; race=["IMPERIAL" [Race <ImperialRace (00013744)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:03PM] Transfer of [Actor < (000199D0)>] was rejected.[08/25/2015 - 09:09:03PM] [CF][Creature Apply] Failure on ["Vigilant Helena" [Actor < (90000EF1)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:04PM] [CF][Creature Apply] Failure on ["Vigilant of Stendarr" [Actor < (90000EEF)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:04PM] [CF][Creature Apply] Failure on ["Vigilant of Stendarr" [Actor < (90000EED)>]]; creature isn't registered; race=["Dark Elf" [Race <DarkElfRace (00013742)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:04PM] [CF][Creature Apply] Failure on ["Shadiya" [Actor < (90000EEC)>]]; creature isn't registered; race=["Redguard" [Race <RedguardRace (00013748)>]] skin=["" [Armor < (00000D64)>]][08/25/2015 - 09:09:04PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:09:04PM] [Zad]: Config Interval:1.500000. Total number of events: 0. Next staggered update in 1.500000[08/25/2015 - 09:09:04PM] -------------------[08/25/2015 - 09:09:05PM] [DLC1VampireSleepScript <DLC1VampireSleep (02008E3B)>]PlayerActivateBed() IsCoffin =False[08/25/2015 - 09:09:05PM] RNPC: Periodic update check.[08/25/2015 - 09:09:07PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:09:10PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:09:12PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:09:14PM] [DLC2RieklingRescuePlayerScript <alias Player on quest DLC2RieklingRescue (03038C07)>]OnUpdate() called GotoState(None) so we can register for OnHit events[08/25/2015 - 09:09:15PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:09:20PM] [Zad]: Set slot mask to [0]: 0[08/25/2015 - 09:09:22PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:09:27PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (11014916)>], itemCount=1[08/25/2015 - 09:09:27PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:27PM] [Zad]: OnContainerChanged()[08/25/2015 - 09:09:27PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:27PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:09:27PM] [Zad]: OnContainerChanged()[08/25/2015 - 09:09:27PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (1101491E)>], itemCount=1[08/25/2015 - 09:09:27PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:27PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:09:27PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:09:28PM] [Zad]: OnContainerChanged()[08/25/2015 - 09:09:28PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (11004E23)>], itemCount=1[08/25/2015 - 09:09:28PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:28PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (0F00F562)>], itemCount=1[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:28PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:09:28PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (0E004002)>], itemCount=1[08/25/2015 - 09:09:28PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:28PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:09:28PM] [Zad]: EquipDevice called for Plug (BlackSoulgem) (Anal)[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:09:28PM] [Zad]: Acquired mutex, equipping Plug (BlackSoulgem) (Anal)[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:09:28PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:09:28PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:09:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:09:28PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:09:29PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:09:29PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:09:29PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:09:29PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:09:29PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:09:29PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:09:29PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:09:29PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:09:30PM] [Zad]: EquipDevice called for Plug (Shock) (Vaginal)[08/25/2015 - 09:09:30PM] [Zad]: SpinLock() Started.[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:09:30PM] [Zad]: OnEquipped(Nasura: Plug (BlackSoulgem) (Anal))[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:09:30PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:09:30PM] [Zad]: No menus are open. Equipping silently.[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:09:31PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:09:32PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:09:32PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:09:32PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:09:32PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:09:32PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:09:33PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:09:33PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:09:33PM] [Zad]: Sending device event DeviceEquippedAnal Plug(Nasura:1)[08/25/2015 - 09:09:33PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (11014915)>], itemCount=1[08/25/2015 - 09:09:33PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:33PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:33PM] [Zad]: OnEffectStart(ShockVibEffect)[08/25/2015 - 09:09:33PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:09:33PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:09:33PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:09:33PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:09:34PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:09:34PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:09:34PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:09:34PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:09:34PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:09:34PM] [Zad]: SyncInventory(): Equipping Anal Plug.[08/25/2015 - 09:09:34PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:09:35PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:09:35PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:09:35PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:09:35PM] [Zad]: SpinLock() Completed. Cycles:32[08/25/2015 - 09:09:35PM] [Zad]: Acquired mutex, equipping Plug (Shock) (Vaginal)[08/25/2015 - 09:09:36PM] [Zad]: EquipDevice called for Chastity Belt (Iron)[08/25/2015 - 09:09:36PM] [Zad]: SpinLock() Started.[08/25/2015 - 09:09:36PM] [Zad]: OnEquipped(Nasura: Plug (Shock) (Vaginal))[08/25/2015 - 09:09:36PM] [Zad]: No menus are open. Equipping silently.[08/25/2015 - 09:09:37PM] [Zad]: Sending device event DeviceEquippedVaginal Plug(Nasura:1)[08/25/2015 - 09:09:37PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (1101491D)>], itemCount=1[08/25/2015 - 09:09:37PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:37PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:37PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:09:37PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:09:37PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:09:37PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:09:38PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:09:38PM] [Zad]: SyncInventory(): Equipping Vaginal Plug.[08/25/2015 - 09:09:38PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:09:38PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:09:38PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:09:38PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:09:38PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:09:38PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:09:38PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:09:38PM] [Zad]: SpinLock() Completed. Cycles:16[08/25/2015 - 09:09:38PM] [Zad]: Acquired mutex, equipping Chastity Belt (Iron)[08/25/2015 - 09:09:39PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (0F0012D1)>], itemCount=1[08/25/2015 - 09:09:39PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:39PM] [Zad]: EquipDevice called for Gag (Harness) (Ring)[08/25/2015 - 09:09:39PM] [Zad]: SpinLock() Started.[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:09:39PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:09:39PM] RNPC: Periodic update check.[08/25/2015 - 09:09:39PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:09:41PM] [Zad]: Belt not worn: Removing plugs.[08/25/2015 - 09:09:41PM] [Zad]: Sending device event DeviceRemovedAnal Plug(Nasura:1)[08/25/2015 - 09:09:41PM] [Zad]: RemoveDevice called for Plug (BlackSoulgem) (Anal)[08/25/2015 - 09:09:41PM] [Zad]: SpinLock() Started.[08/25/2015 - 09:09:44PM] [Zad]: Belt not worn: Removing plugs.[08/25/2015 - 09:09:44PM] [Zad]: Sending device event DeviceRemovedVaginal Plug(Nasura:1)[08/25/2015 - 09:09:44PM] [Zad]: RemoveDevice called for Plug (Shock) (Vaginal)[08/25/2015 - 09:09:44PM] [Zad]: SpinLock() Started.[08/25/2015 - 09:09:59PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [WEAPON < (00013989)>], itemCount=1[08/25/2015 - 09:09:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:59PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:59PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:09:59PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [WEAPON < (00013988)>], itemCount=1[08/25/2015 - 09:09:59PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:09:59PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:09:59PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [WEAPON < (00013987)>], itemCount=1[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:10:00PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:10:00PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:10:00PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:10:00PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:10:00PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:10:00PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:10:01PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:10:02PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:10:02PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:10:02PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:10:02PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:10:02PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:10:02PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:10:09PM] [Zad] ((WARNING)): SpinLock() timed out.[08/25/2015 - 09:10:09PM] [Zad]: SpinLock() Completed. Cycles:151[08/25/2015 - 09:10:10PM] [Zad]: Acquired mutex, equipping Gag (Harness) (Ring)[08/25/2015 - 09:10:10PM] RNPC: Periodic update check.[08/25/2015 - 09:10:11PM] [Zad] ((WARNING)): SpinLock() timed out.[08/25/2015 - 09:10:11PM] [Zad]: SpinLock() Completed. Cycles:151[08/25/2015 - 09:10:11PM] [Zad]: Acquired mutex, removing Plug (BlackSoulgem) (Anal)[08/25/2015 - 09:10:11PM] [Zad]: OnEffectFinish(ShockVibEffect)[08/25/2015 - 09:10:11PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Armor < (11014915)>], itemCount=1[08/25/2015 - 09:10:11PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:10:11PM] [Zad]: OnUnequipped(Nasura: Plug (BlackSoulgem) (Anal))[08/25/2015 - 09:10:11PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:10:11PM] [Zad]: Detected removal token. Done.[08/25/2015 - 09:10:11PM] [Zad]: SpinLock() Completed. Cycles:136[08/25/2015 - 09:10:11PM] [Zad]: Acquired mutex, removing Plug (Shock) (Vaginal)[08/25/2015 - 09:10:12PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Armor < (1101491D)>], itemCount=1[08/25/2015 - 09:10:12PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:10:12PM] [Zad]: OnUnequipped(Nasura: Plug (Shock) (Vaginal))[08/25/2015 - 09:10:12PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:10:12PM] [Zad]: Detected removal token. Done.[08/25/2015 - 09:10:15PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:10:24PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:10:41PM] [Zad]: OnEquipped(Nasura: Plug (Shock) (Vaginal))[08/25/2015 - 09:10:42PM] [Zad]: Sending device event DeviceEquippedVaginal Plug(Nasura:1)[08/25/2015 - 09:10:42PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (1101491D)>], itemCount=1[08/25/2015 - 09:10:42PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:10:42PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:10:42PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:10:42PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:10:43PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:10:43PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:10:43PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:10:43PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:10:43PM] [Zad]: SyncInventory(): Equipping Vaginal Plug.[08/25/2015 - 09:10:43PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:10:43PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:10:43PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:10:43PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:10:43PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:10:43PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:10:45PM] [Zad]: OnEquipped(Nasura: Plug (BlackSoulgem) (Anal))[08/25/2015 - 09:10:46PM] [Zad]: Sending device event DeviceEquippedAnal Plug(Nasura:1)[08/25/2015 - 09:10:46PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (11014915)>], itemCount=1[08/25/2015 - 09:10:46PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:10:47PM] [Zad]: OnEffectStart(ShockVibEffect)[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:10:47PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:10:47PM] [Zad]: SyncInventory(): Equipping Anal Plug.[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:10:47PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:10:58PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:11:01PM] [Zad]: Belt not worn: Removing plugs.[08/25/2015 - 09:11:01PM] [Zad]: Sending device event DeviceRemovedVaginal Plug(Nasura:1)[08/25/2015 - 09:11:01PM] [Zad]: RemoveDevice called for Plug (Shock) (Vaginal)[08/25/2015 - 09:11:01PM] [Zad]: Belt not worn: Removing plugs.[08/25/2015 - 09:11:01PM] [Zad]: Sending device event DeviceRemovedAnal Plug(Nasura:1)[08/25/2015 - 09:11:02PM] [Zad]: RemoveDevice called for Plug (BlackSoulgem) (Anal)[08/25/2015 - 09:11:02PM] [Zad]: Acquired mutex, removing Plug (BlackSoulgem) (Anal)[08/25/2015 - 09:11:02PM] [Zad]: SpinLock() Started.[08/25/2015 - 09:11:02PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Armor < (11014915)>], itemCount=1[08/25/2015 - 09:11:02PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:11:02PM] [Zad]: OnEffectFinish(ShockVibEffect)[08/25/2015 - 09:11:02PM] [Zad]: OnUnequipped(Nasura: Plug (BlackSoulgem) (Anal))[08/25/2015 - 09:11:02PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:11:02PM] [Zad]: Detected removal token. Done.[08/25/2015 - 09:11:02PM] [Zad]: SpinLock() Completed. Cycles:3[08/25/2015 - 09:11:02PM] [Zad]: Acquired mutex, removing Plug (Shock) (Vaginal)[08/25/2015 - 09:11:02PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemRemoved [Armor < (1101491D)>], itemCount=1[08/25/2015 - 09:11:02PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:11:03PM] [Zad]: OnUnequipped(Nasura: Plug (Shock) (Vaginal))[08/25/2015 - 09:11:03PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:11:03PM] [Zad]: Detected removal token. Done.[08/25/2015 - 09:11:20PM] [Zad]: OnEquipped(Nasura: Plug (BlackSoulgem) (Anal))[08/25/2015 - 09:11:21PM] [Zad]: OnEquipped(Nasura: Plug (Shock) (Vaginal))[08/25/2015 - 09:11:21PM] [Zad]: Sending device event DeviceEquippedAnal Plug(Nasura:1)[08/25/2015 - 09:11:22PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (11014915)>], itemCount=1[08/25/2015 - 09:11:22PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:11:22PM] [Zad]: OnEffectStart(ShockVibEffect)[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:11:22PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:11:22PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:11:23PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:11:23PM] [Zad]: SyncInventory(): Equipping Anal Plug.[08/25/2015 - 09:11:23PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:11:23PM] [Zad]: Sending device event DeviceEquippedVaginal Plug(Nasura:1)[08/25/2015 - 09:11:23PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (1101491D)>], itemCount=1[08/25/2015 - 09:11:23PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:11:23PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:11:23PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:11:23PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:11:23PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:11:24PM] [Zad]: SyncInventory(): Equipping Vaginal Plug.[08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:11:26PM] [Zad]: OnEquipped(Nasura: Custom Slave Harness)[08/25/2015 - 09:11:27PM] [Zad]: Sending device event DeviceEquippedHarness(Nasura:1)[08/25/2015 - 09:11:27PM] [bYOHHouseBuildingPlayerScript <alias Player on quest BYOHHouseBuilding (0400305D)>]OnItemAdded [Armor < (11004E22)>], itemCount=1[08/25/2015 - 09:11:27PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] UpdateLogCount[08/25/2015 - 09:11:27PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 10[08/25/2015 - 09:11:27PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 14[08/25/2015 - 09:11:27PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 18[08/25/2015 - 09:11:27PM] [byohhousebuildingscript <BYOHHouseBuilding (0400305D)>] logcount=0[08/25/2015 - 09:11:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 22[08/25/2015 - 09:11:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 28[08/25/2015 - 09:11:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 32[08/25/2015 - 09:11:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36[08/25/2015 - 09:11:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 40[08/25/2015 - 09:11:28PM] [Zad]: SyncInventory(): Equipping Harness.[08/25/2015 - 09:11:28PM] [Zad]: Set slot mask to [337641472]: 337641472[08/25/2015 - 09:11:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 46[08/25/2015 - 09:11:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 50[08/25/2015 - 09:11:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 54[08/25/2015 - 09:11:28PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 58[08/25/2015 - 09:11:28PM] [Zad]: RestraintScript OnEquippedPost BodyHarness[08/25/2015 - 09:11:30PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:11:33PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:11:37PM] RNPC: Periodic update check.[08/25/2015 - 09:11:43PM] slaScanner start time is ....520.171997[08/25/2015 - 09:11:43PM] [slamainscr <sla_Main (0A042D62)>] Getting actors for 2 and locked = False[08/25/2015 - 09:11:43PM] Locking for 2 at position 0[08/25/2015 - 09:11:44PM] Found 5 arousedActors[08/25/2015 - 09:11:44PM] Found 0 nakedActors[08/25/2015 - 09:11:45PM] slaScanner After getting actors is ....521.853027, player is naked TRUE[08/25/2015 - 09:11:47PM] SEXLAB - Vigilant of Stendarr Stats Seed: Sexuality[60] Foreplay[14] Vaginal[16] Anal[13] Oral[10] Pure[99] Lewd[1][08/25/2015 - 09:11:47PM] [slainternalscr <sla_Internal (0A083137)>]: Vigilant of Stendarr got 8 exposure for seeing naked Nasura[08/25/2015 - 09:11:48PM] [DLC2PillarBuilderActorScript < (030177DD)>]OnPackageStart()[08/25/2015 - 09:11:50PM] SEXLAB - Shadiya Stats Seed: Sexuality[60] Foreplay[5] Vaginal[3] Anal[9] Oral[5] Pure[89] Lewd[6][08/25/2015 - 09:11:51PM] [slainternalscr <sla_Internal (0A083137)>]: Shadiya got 8 exposure for seeing naked Nasura[08/25/2015 - 09:11:53PM] [slainternalscr <sla_Internal (0A083137)>]: Vigilant of Stendarr got 8 exposure for seeing naked Nasura[08/25/2015 - 09:11:53PM] Unlocking[08/25/2015 - 09:11:53PM] UnLocking for 2 at position 0[08/25/2015 - 09:11:53PM] [slamainscr <sla_Main (0A042D62)>]Unlocking scanner[08/25/2015 - 09:11:53PM] slaScanner end time is ....530.695007[08/25/2015 - 09:11:53PM] Next update in 120.000000[08/25/2015 - 09:12:07PM] RNPC: Periodic update check.[08/25/2015 - 09:12:38PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:12:41PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:12:51PM] [Zad]: OnUnequipped(Nasura: Custom Slave Harness)[08/25/2015 - 09:12:54PM] [Zad]: SyncInventory(): Equipping Harness.[08/25/2015 - 09:12:55PM] RNPC: Periodic update check.[08/25/2015 - 09:13:04PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:13:07PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:13:15PM] [DLC1VampireSleepScript <DLC1VampireSleep (02008E3B)>]PlayerActivateBed() IsCoffin =False[08/25/2015 - 09:13:19PM] Updating Orphanables Status: ------------------------[08/25/2015 - 09:13:24PM] Requesting transfer for [Actor < (000199D0)>][08/25/2015 - 09:13:24PM] Transfer of [Actor < (000199D0)>] was rejected.[08/25/2015 - 09:13:25PM] -------------------[08/25/2015 - 09:13:27PM] RNPC: Periodic update check.[08/25/2015 - 09:13:33PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:13:39PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:13:40PM] [DLC1VampireSleepScript <DLC1VampireSleep (02008E3B)>]PlayerActivateBed() IsCoffin =False[08/25/2015 - 09:13:41PM] [DLC1VampireSleepScript <DLC1VampireSleep (02008E3B)>]PlayerActivateBed() IsCoffin =False[08/25/2015 - 09:13:52PM] [DLC1VampireSleepScript <DLC1VampireSleep (02008E3B)>]PlayerActivateBed() IsCoffin =False[08/25/2015 - 09:13:58PM] RNPC: Periodic update check.[08/25/2015 - 09:14:03PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:14:06PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:14:06PM] [DLC1VampireSleepScript <DLC1VampireSleep (02008E3B)>]PlayerActivateBed() IsCoffin =False[08/25/2015 - 09:14:09PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:14:12PM] [DLC2PillarBuilderActorScript < (030177DB)>]OnPackageStart()[08/25/2015 - 09:14:14PM] slaScanner start time is ....671.622009[08/25/2015 - 09:14:14PM] [slamainscr <sla_Main (0A042D62)>] Getting actors for 2 and locked = False[08/25/2015 - 09:14:14PM] Locking for 2 at position 0[08/25/2015 - 09:14:15PM] Found 5 arousedActors[08/25/2015 - 09:14:15PM] Found 0 nakedActors[08/25/2015 - 09:14:16PM] slaScanner After getting actors is ....672.994995, player is naked TRUE[08/25/2015 - 09:14:18PM] SEX
Veladarius Posted August 25, 2015 Posted August 25, 2015 Ok, this is what I am seeing: @ 09:09:30 a Vaginal Shock plug starts to be equipped @ 09:09:33 an anal plug starts to be equipped @ 09:09:36 an iron belt starts to be equipped @ 09:09:39 a gag starts to be equipped @ 09:09:41 the belt has not yet equipped so the plugs start to be removed - anal plug first @ 09:09:44 the vaginal plug is started to be removed @ 09:10:11 the plugs are finally removed After that it looks like it tries equipping a set of plugs and a harness though it looks like it did not work either. The likely reason is time, it is taking too long and the likely reason is this: [08/25/2015 - 09:11:24PM] ERROR: Cannot get the faction rank with a None factionstack: [ (00000014)].Actor.GetFactionRank() - "<native>" Line ? [alias PlayerMiner on quest aTIDDialogue (920318D4)].aTIDDialoguesPlayerrefRESTScript.OnItemAdded() - "aTIDDialoguesPlayerrefRESTScript.psc" Line 36 This error is repeating over and over and slowing everything else down quite a bit. From the point that a plug is equipped (completely finished) you have about 5-7 seconds before they are unequipped if a belt is not equipped (completely finished), it looks like it is taking longer than that to do it. The few items you are equipping should just take a few seconds for all of them to be equipped.
Delzaron Posted August 25, 2015 Author Posted August 25, 2015 I see what script is in cause for TID. Edit : in fact, it was a cause of CTD...now the game is better. But it doesnt explain why the belt dont close, and why i dont get the chastity belt quest.
WaxenFigure Posted August 25, 2015 Posted August 25, 2015 I see what script is in cause for TID. Edit : in fact, it was a cause of CTD...now the game is better. But it doesnt explain why the belt dont close, and why i dont get the chastity belt quest. Next time you post a log, please upload it as an attachment. Preferably compressed so it's greatly reduced in size for uploading and downloading.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now