-
Posts
20 -
Joined
-
Last visited
Reputation
0 NeutralNexus Mods Profile
About Praveen

Profile Fields
-
Country
None
-
you will find RaZehn in Bee and Barb at Riften not in riverwood :)
-
Have You fill property for ClothesPrisonerRags and your script must extend actor instead of referencealias like this Scriptname GetDressed extends Actor Armor Property ClothesPrisonerRags auto Function Doequip() Self.EquipItem( ClothesPrisonerRags ) EndFunction Event onInit() Debug.Notification("Annekke Get Dressed") Doequip() EndEvent
-
Here is the solution save your game with your mod installed and exit the game now restart the game save your load all the custom dialogues will appears. :)
-
Hello Is there a function in papyrus which can change npc voice-type.For example set a female younger eager voice into female even tonned voice or female child voice into female younger eager voice.I mean through script not from creation kit. Any help will be appreciated. Thank You.
-
To fix this save the game with your mod installed and exit the game. now when you load the save your companion will have all the dialogues.
-
Trying to wrap my head around papyrus scripting
Praveen replied to gigantibyte's topic in Skyrim's Skyrim LE
You should write above code as Scriptname RandomMonsterScript extends activemagiceffect Event OnEffectStart(Actor caster, actor target) Player.PlaceAtMe(EncFalmer02Melee, 1) EndEvent -
[PC] Cannot start the first vampire quest
Praveen replied to wishmaker11's topic in Skyrim's Skyrim LE
This seems to happen because exiting the Vampire Lord form reverts the race of the player to what he was before being transformed. Becoming a vampire before entering the castle seems to fix this :whistling: -
Does you see map marker pointing to the portal if it is then use console command Edit You quest objective must be Enter the Soul Cairn.
-
well the above solution worked for me, never-mind, here is another solution if the quest marker is pointing to enter the soul cairn objective then open console and type movetoqt dlc1vq04
-
If you are not able to enter the Soul Cairn. then Open the console and type set DLC1vq04SoulTrapped to 1. now you can enter the soul cairn and carry your adventure further.
-
DAWNGUARD BUG PLZ HELP!!! *WARNING MAY CONTAIN A SPOILER*
Praveen replied to x1337joeyx's topic in Skyrim's Skyrim LE
To fix this, reload the newest auto-save, or leave and re-enter the cave if possible . -
this also happened with me. however this is solution open console menu and type setstage dlc1vq07 110. and on inner sanctum door click and type unlock now the door will open and you can continue your quest further.
-
Hello everyone As i was Working on the rideable dragon project but I come across a big problem whenever the dragon goes into sendanimationevent like FlyStartCruise the translateto function stop working which necessary to move dragon in any position.However moveto functions works in animation event but translate to function is not working I tried removing sendanimationevent the translateto function works and my dragons fly off course with no animation at all. Somehow i managed to move the dragon by setting bmotiondriven to true but that's look too buggy as dragon continuous to move in one direction until it collide with something.Here is the video Please Help me to find out whats wrong thank you
-
Hi there To transform your npc into spriggan or any other beast use SetRace() Function. For Example if(Game.GetPlayer().ISInCombat()==True) FollowerActor.SetRace(SprigganRace) Endif Revert back the condition when you want by setting the default race of your follower You can Use Any other condition depending on your type of mod. I have done same thing with my draugr princess mod . Hope this will you. Best luck with your mod & have a nice day.