Jump to content

WickedGoblin

Members
  • Posts

    9
  • Joined

  • Last visited

Nexus Mods Profile

About WickedGoblin

WickedGoblin's Achievements

Rookie

Rookie (2/14)

0

Reputation

  1. I want to modify radius of detect for red dot on compass Is there a option of game setting on Creation Kit? Let me know what is the option plz
  2. I try making the mod but I got CTD everytime when I edited HazardFrostBlizzardSpell01 So i had searched seasons mod that remove the blizzard but I couldnt find it If u know the mod let me know it plz
  3. When player get followers, game become easy If there is Shared HP System and when Shared HP is zero, player and followers can die from one hit It would be cool
  4. I saw a dungeon mod where pressing a switch would automatically activate a hidden lever in an invisible location to open a door. a switch of the mod worked without any additional script. is it possible to connect 3 puzzle pillars to 3 levers and a lever connected to a door, so that when I solve the puzzle, all 3 doors open at once?
  5. I found a tutorial for puzzle pillars and a door not multiple doors I want to make puzzle pillars that trigger three doors at once without writing an additional script what should I do?
  6. Scriptname LimitedSpellLearningScript extends ReferenceAlias GlobalVariable Property MaximumLearning Auto GlobalVariable Property CurrentLearning Auto Actor Property PlayerRef Auto Event OnObjectEquipped(Form akBaseObject, ObjectReference akReference) Book b = (akBaseObject as Book) if b Spell s = b.GetSpell() if s if !PlayerRef.HasSpell(s) && CurrentLearning.GetValue() < MaximumLearning.GetValue() Int Temp = CurrentLearning.GetValue() as Int CurrentLearning.SetValue(Temp + 1) elseif !PlayerRef.HasSpell(s) && CurrentLearning.GetValue() >= MaximumLearning.GetValue() PlayerRef.RemoveSpell(s) Debug.Notification("This Spell Cant be learned") else return endif endif endif EndEvent Global Variables like MaximumLearning and CurrentLearning arent changed When I read a spell book What did I miss?
×
×
  • Create New...