Yuni Posted April 3, 2015 Posted April 3, 2015 Odd. The lighting effect doesn't come for me, when I put on the torch. Maybe it's a lighting mod or something? Are there mods that conflict with this one I wonder? Maybe I have the ENB lighting thing installed. Will do more testing. Edit: Typo. Edit 2: Light spontaneously starts working, because Skyrim's a finicky ride. Wonderful, entertaining mod. Good work, Hun.
TToaster Posted April 3, 2015 Posted April 3, 2015 Thanks for the mod. This also seems to add another "light-Source" called "Anal Meridias Light"
xXDeliteXx Posted April 3, 2015 Posted April 3, 2015 As a person who doesn't fap to mods. I still find this very immersive. Makes it seem like I have the choice lol. I have not played it yet though, for I'm modding DOA currently. Does this work for UNP?
darkevilhum Posted April 4, 2015 Posted April 4, 2015 LOL. Nice idea, both erotic AND functional, specially for those of us running an ENB that can have lighting issues.
Jesus Christ Denton Posted April 4, 2015 Posted April 4, 2015 It's a pretty neat mod, but I'd like to know how to increase the light radius. I don't have any experience with the CK.
Deboch Posted April 6, 2015 Posted April 6, 2015 Interesting idea (and funny as hell). For me, the perfect go-with for this mod would be Baked Beans of Skyrim http://www.nexusmods.com/skyrim/mods/52614/? Imagine the damage done with the combined power of the fart with flames from the torch. Oh the humanity!
Z0mBieP00Nani Posted April 6, 2015 Posted April 6, 2015 Woah, thought the title of this mod said "Anal Touch" for a second.
code chufima Posted April 7, 2015 Posted April 7, 2015 I normally use the Travel Lanterns mod for my portable lighting, but this looks like it would fit much better with my uber-kinky-modded game. Kudos to the author!
darkconsole Posted April 10, 2015 Posted April 10, 2015 I was trying to create new lamps for my home, I would put anal torch in an npc in my house, it was great. When I come back home though, they are still wearing the torch and the fire and everything, except it is no longer emitting the light until it is re-equipped. I was going to fix this... but there are no scripts... so I have no idea how it works [update] i see it is magic effect based. that means what is happening is that the effects are falling off the npc when zoning out (which is a well known problem) - now... how to renew this effect... without a cloak...
yurik Posted April 10, 2015 Posted April 10, 2015 I used 'OnLocationChange' on player + quest with 'HasEffect' condition aliases (the effect is still count as 'active' even if it stopped working). I guess GetItemCount would do too. 'Maintenance' ability to player with OnLocationChange event: Scriptname PetCollarMaintainFollowersScript extends activemagiceffect Quest property PetCollarMaintainFollowersPetEffectQuest auto Event OnLocationChange(Location akOldLoc, Location akNewLoc) (PetCollarMaintainFollowersPetEffectQuest as PetCollarReapplyEffectsScript).ReapplyEffects() EndEvent Scriptname PetCollarReapplyEffectsScript extends Quest Spell property petCollarAbility auto ReferenceAlias property pet1 auto ReferenceAlias property pet2 auto ReferenceAlias property pet3 auto ReferenceAlias property pet4 auto Function ReapplyEffects() if Start() Actor pet = pet1.getActorReference() if pet pet.AddSpell(petCollarAbility, false) pet = pet2.getActorReference() if pet pet.AddSpell(petCollarAbility, false) pet = pet3.getActorReference() if pet pet.AddSpell(petCollarAbility, false) pet = pet4.getActorReference() if pet pet.AddSpell(petCollarAbility, false) endif endif endif endif Stop() endif EndFunction Quest alias: It may not be the best approach, but I think it's better than cloak. Hope this helps.
darkconsole Posted April 10, 2015 Posted April 10, 2015 i don't code with quest aliases. quest aliases are limited to as many you are willing to sit there and click-create in creationkit. i have 0 patience for things like that, plus i hate limits. when i get home i'll hammer something out that just works no matter how many people you shove this thing into XD
Justoutthere Posted April 18, 2015 Posted April 18, 2015 Loving this for both its hunour and its undeniable practicality. One question though, which slot does it use so it can be enabled for SL stripping?
ChaosKhan Posted April 29, 2015 Posted April 29, 2015 Hi guys, dear Ravensaw I got a trouble with your mod my female character quit holding an invisible torch so I can't use 2 handed weapons or hold a shield ... Do you a have an idea want the problems could be ???
rockitten Posted May 4, 2015 Posted May 4, 2015 First of all, great mod. Just wonder, which slot does this torch using? It seems it is using the same slot as the virginal rings rather than those anal plugs.........
darkconsole Posted May 10, 2015 Posted May 10, 2015 Anal Torch: Reignited Relight torches in NPCs that have gone out. Adds no dependencies. Zip file attached is the complete Anal Torch 1.0 from the original author with my added scripting. Purpose of this mod is to allow you to use NPCs as stationary lamps in your home, and have the torch still working next time you come back. Without this mod to this mod, the torches will not be lit when you come home. Replace your Anal Torch install with the zip attached to this post. Below are the instructions for how to add additional torches to the game, if the original author wishes to do so. These instructions are embedded in the script files, of which the source is included in this download. I have already updated both the normal and meridia torch, so with this you should be good to go. Scriptname dcc_analtorch_QuestController extends Quest ;; scripting by darkconsole <http://www.loverslab.com/user/501843-darkconsole/> ;; for mod Anal Torch <http://www.loverslab.com/files/file/1828-anal-torch/> ;; this scripting is designed to solve the problem of magic effects falling off ;; of NPCs, which is just a known fact of life with Skyrim. because of that ;; this means any torches you stick on an NPC will stop glowing when you leave ;; them alone at home. when you come back, they will still have it equipped but ;; it will no longer emit the light. this script will track anyone who has a ;; torch in them, and the next time you see them, it will reinsert it so that ;; it begins glowing again. ;; step 1 of 2 - add the Armor of the anal torch to the TorchList on this quest ;; in CreationKit. ;; Quests ;; ---> dcc_analtorch_QuestController ;; -------> Scripts ;; -----------> dcc_analtorch_QuestController ;; ---------------> Properties ;; -------------------> Add ;; -------------------> Choose the ARMR (Armor) of the new torch. ;; -------------------> Click out in whitespace of window and verify that the ;; list updated properly. ;; see source/dcc_analtorch_EffectLightScript.psc for step 2 of 2. ;; you will need to unequip and reequip any torch currently on the npc before ;; seeing this script take effect. Scriptname dcc_analtorch_EffectLightScript extends ActiveMagicEffect ;; scripting by darkconsole <http://www.loverslab.com/user/501843-darkconsole/> ;; for mod Anal Torch <http://www.loverslab.com/files/file/1828-anal-torch/> ;; Step 1 of 2 - add this magic effect as a 2nd effect on the light enchantment. ;; Armor Anal Torch ;; ---> Enchant Anal_Enchlight ;; -------> Magic Effect Anal_LightFFSelf ;; -------> Magic Effect dcc_analtorch_EffectLightScript ;; see source/dcc_analtorch_QuestController.psc for step 2 of 2. ;; you will need to unequip and reequip any torch currently on the npc before ;; seeing this script take effect. anal-torch-reignited-100.zip 2
TheFedaykin Posted May 12, 2015 Posted May 12, 2015 This is the most ridiculous and at the same time practical idea ever. I never go anywhere without my anal torch. My Granny always said you should keep your back passage well lit.......it scares of burglars.
NitroPolaris2020 Posted October 22, 2015 Posted October 22, 2015 is it possiable to use it like a plug for devious devices?
btasqan Posted April 9, 2017 Posted April 9, 2017 Is there a way to make them only last 2 min? I ve tried changing the light edits in TESV Edit but duration seems to remain uneffected.
Dragoncoc696969 Posted July 14, 2018 Posted July 14, 2018 On 5/10/2015 at 6:08 AM, darkconsole said: Anal Torch: Reignited Relight torches in NPCs that have gone out. Adds no dependencies. Zip file attached is the complete Anal Torch 1.0 from the original author with my added scripting. Purpose of this mod is to allow you to use NPCs as stationary lamps in your home, and have the torch still working next time you come back. Without this mod to this mod, the torches will not be lit when you come home. Replace your Anal Torch install with the zip attached to this post. Below are the instructions for how to add additional torches to the game, if the original author wishes to do so. These instructions are embedded in the script files, of which the source is included in this download. I have already updated both the normal and meridia torch, so with this you should be good to go. Reveal hidden contents Scriptname dcc_analtorch_QuestController extends Quest ;; scripting by darkconsole ;; for mod Anal Torch ;; this scripting is designed to solve the problem of magic effects falling off ;; of NPCs, which is just a known fact of life with Skyrim. because of that ;; this means any torches you stick on an NPC will stop glowing when you leave ;; them alone at home. when you come back, they will still have it equipped but ;; it will no longer emit the light. this script will track anyone who has a ;; torch in them, and the next time you see them, it will reinsert it so that ;; it begins glowing again. ;; step 1 of 2 - add the Armor of the anal torch to the TorchList on this quest ;; in CreationKit. ;; Quests ;; ---> dcc_analtorch_QuestController ;; -------> Scripts ;; -----------> dcc_analtorch_QuestController ;; ---------------> Properties ;; -------------------> Add ;; -------------------> Choose the ARMR (Armor) of the new torch. ;; -------------------> Click out in whitespace of window and verify that the ;; list updated properly. ;; see source/dcc_analtorch_EffectLightScript.psc for step 2 of 2. ;; you will need to unequip and reequip any torch currently on the npc before ;; seeing this script take effect. Scriptname dcc_analtorch_EffectLightScript extends ActiveMagicEffect ;; scripting by darkconsole ;; for mod Anal Torch ;; Step 1 of 2 - add this magic effect as a 2nd effect on the light enchantment. ;; Armor Anal Torch ;; ---> Enchant Anal_Enchlight ;; -------> Magic Effect Anal_LightFFSelf ;; -------> Magic Effect dcc_analtorch_EffectLightScript ;; see source/dcc_analtorch_QuestController.psc for step 2 of 2. ;; you will need to unequip and reequip any torch currently on the npc before ;; seeing this script take effect. anal-torch-reignited-100.zip Can u please help, I seem to get 2 types anal torch when i searched in console for item id, First one is identified as misc & it equips but my player poses as she's holding a torch in her hand (which she isn't). And the second one is identified as Light armor & doesn't equip.Same goes for the meridia torch. any idea why is this happening? maybe its because it is conflicting with other item slot, even when everything is unequipped, the torch wont equip. any idea whats causing this? & how do i get npc to equip this? Update : fixed the problem. Charurus worm (by sexlab parasite) was equipped at that time & it used slot 57 . that's why the torch was not equipping.
Dragoncoc696969 Posted July 15, 2018 Posted July 15, 2018 On 5/4/2015 at 8:47 PM, rockitten said: First of all, great mod. Just wonder, which slot does this torch using? It seems it is using the same slot as the virginal rings rather than those anal plugs......... it uses slot 57
Dragoncoc696969 Posted July 15, 2018 Posted July 15, 2018 On 4/2/2015 at 10:11 AM, darkconsole said: another thing i have done is lower the brightness, but increase the radius of the light that it emits. now, its not causing the camera to go extreme eye adaptation mode so now i can see. playing in third person was just too hard before. this was radius 800 with fade 1.0. also added a flicker of 3.0 0.2 1.0 Could u share your modified version please?
razzor69 Posted July 15, 2018 Posted July 15, 2018 Can someone make the vagina torch too? put 2 torches would be awesome ? 1
PurpOp Posted February 6, 2019 Posted February 6, 2019 I did not DL this MOD, but I had to comment... Probably the most clever MOD I've ever seen. You know what... I've already endorsed it, now I'm going to download it!
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