Jump to content

sabiusman

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by sabiusman

  1. Mods creating alot of modifiers on the npc´s, could be anything from base health to armor values and such. Turn off mods that may be causing the effect, or just console kill command or setav.health to a low value.
  2. Im sorry to tell you man but I think is better turn off mods and add them 1 by 1 to see which one is creating the conflict. That is a ton of mods being loaded.
  3. Let me get this straight, you want a way to make an npc to loose 5hp on base health per day? If that is the case, I dont think a potion effect would do the trick, since every damage recieved by potions alter current health, not base. To make changes on base healthI would run a script that modifies the actor value´s health with modav("health", -5) or something like that. That script would go on a conditional that checks for time passed with GetCurrentGameTime(), you would need to set up a global variable with the start time, probably set by the quest script, and start checking for days passed.
  4. I am sorry, but I just have to ask why are you using negative values. Speedmult by default is positive 100, so to leave it as it is, use: player.forceav speedmult 100 Once your base speed is set to positive 100, you can modify it my using positive values player.modav speedmult 200 should do it no problem. There are ways to create a mod using creation kit and papyrus, but that would just be a overkill to a simple problem. edit: I have also seen that the speed mult comes in effect after sprint, so definetly give that a shot as well.
  5. Hi. I managed to do some fixes on both ends. 1. Since it was just an experimentation of an npc that wanted to overthrow the jarl, I duplicated and deleted the jarl´s chair, then pasted the duplicate and re programmed the jarl with the same behaviour but with the new chair. I just wanted to mess around with things to see if it could be done.This method is obviously NOT going to work for a mod that must go seamlessly with the game and it was just a way to mess with everything as a noob. 2. For the spell I made some papyrus scripting. The thing is, I sometimes like to go in game, setav my health to huge amounts and feel godlike. I wanted an npc that would increase weapon damage gradually on some conditionals and I was able to do so by programmming an onhit event, and character.modav("attackdamagemult", 2). Made the npc essential and every time the npc "died" she would top herself, duplicate health (with setav and global variables), and duplicate attack damage as well. The only problem is that with very huge numbers, the weapon blows displace the target too much and blow them off the map, so this cant get too big, so at the same time, it lowers the targets health by some factor. It worked amazingly well, and now I have an npc that can kill cheating players :D The only problem I have now is that I cant replicate the same behavior with destruction spells, it seems to be capped to a point. I am thinking in doing a script to the spell to modav the target health by a straight percentage. Ill report on that. Thanks for your help.
  6. Ah Thanks guys, ill give it a shot. I did try to increase the AlchFortifyOneHanded and TwoHanded, but it doesnt seem to work. Ill do more testing and see the results. Thanks for the throne tip, ill edit the data and see how it goes. I did try to add the factions balgruuf had as a jarl but it didnt work, ill try the restrictons to the chair. Ill report what I find.
  7. Hi guys, this is my first post here but I feel rather lacking in resources for a mod I am creating and could really use some simple tips. 1. I want to create an npc that is able to sit on an existing throne (In this case Baelgruff´s throne in whiterun). I basically copied the scripts from the Jarl to my npc but he only stands idle by the chair. I know this is a core problem I dont quite understand yet but must be really simple to solve. 2. Is there a way to create a spell that increases the damage done by weapons? I saw the one that increases attack speed, but not the damage. I know they are very simple questions, but have looked all over the place for them with no avail, I would really appreciate some help! Thanks guys :smile:
×
×
  • Create New...