Jump to content

Recommended Posts

Posted

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.

Posted

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?

Posted

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 :o

 

[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...

Posted

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:

post-167931-0-60821200-1428701012_thumb.jpg

 

 

It may not be the best approach, but I think it's better than cloak. Hope this helps.

Posted

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

  • 2 weeks later...
Posted

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 ???

Posted

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.........

Posted

Anal Torch: Reignited

Relight torches in NPCs that have gone out.

 

WP_20150509_3542.jpg

 

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

Posted

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.

  • 5 months later...
  • 1 year later...
  • 4 months later...
Posted

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.

  • 1 year later...
  • 1 month later...
Posted
On 5/10/2015 at 6:08 AM, darkconsole said:

Anal Torch: Reignited

Relight torches in NPCs that have gone out.

 

WP_20150509_3542.jpg

 

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.

Posted
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

Posted
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

 

post-501843-0-73354500-1427947871_thumb.png

 

 

Could u share your modified version please?

  • 6 months later...
Posted

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!

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...