Jump to content

ProgMath2

Members
  • Posts

    39
  • Joined

  • Last visited

Nexus Mods Profile

About ProgMath2

ProgMath2's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Yeah, thanks. For some reason, I thought that low Responsibility only make them ignore other people's pain and loss. Now I tested it: any crime, shouting according No Crime dialogue lines.
  2. I'm currently picking vanilla voiced lines for my mod, and I got really tired of manually searching through the full list in OBMM's.
  3. How to make NPC tolerate crimes with him as a victim?
  4. Look carefully on that line. EquipItem NecromancerrobeIf you just give the NPC a leveled list, he would not equip it automatically (especially if he has another weapon in his hand). You need either pick one object and add+equip it straightly, or to find a mace in necromancer's inventory and equip it after giving a leveled item. something like that ref rItem ref rContainer begin whatever ... EquipItem Necromancerrobe AddItem LL0NPCWeaponMace100 1 set rContainer to GetSelf foreach rItem <- rContainer if rItem.IsWeapon && rItem.GetWeaponType == 2 rItem.EquipMe break endif loop ... end
  5. forli Isn't that "Camera Mode" a state of using third person animations in first person? When torch is waving in the damn middle of monitor? I trided it and I didn't liked it. I'll think about using the mod for graphics though. Anyway, I've made a mod that suits me. It combines all that I was mentioning with addition of forcing third person in vanilla cases of player.kill. So now the only bad case is non-vanilla kill in FP, and it will only make a little inconviniency of save-load to fix the camera. A shame that we could not find a universal solution, but my variant will do for me. Thanks, DrakeTheDragon, lubronbrons, forli.
  6. froli Personally, I don't use OR respecting the advanced age of my computer. I knew about that feature (my friend Google told me), but was too lazy to analyze such a global thing. I'll start now. I don't think that it can be called a bug when it works like in Vanilla, especially when when they say straightly: "It's fixed only with the Camera Mode on". But I appreciate your effort. On the other hand, if they'll do something plagiarizable, it would be very nice.
  7. I was wrong about the problem and it seems about the lags too. It appears that in First Person knockout event does not occur at all. That is probably what I've taken for the lags interfering the event. I was testing it mostly in TP to easily highlight player in console. So now in third person everything is working fine, but in FP camera just slowly lies to the ground and nothing at all happens. Not even getting up from unconsciousness. And only when I roll the mouse wheel, the death anim plays and the knockout script starts. Of cource, the normal damage recieving can be easily handled via OnHealthDamage in any camera mode, but catching the "kill" command in first person is still an opened question.
  8. I've found a solutuion. Set player essential + OnKnockout handler with SetRestrained 1. The camera stays ok in almost all the cases (except for situations with heavy lags). No actual death happens, GetDead/OnDeath doesn't ring, so all the scripts should continue their work.
  9. Yep, that's what I've thought creating the topic. I read some articles in wikies saying that's impossible, but I assumed they must be older than modern script extenders. I did. It seems that camera is different object than animation skeleton. On player death some deep-buried script slowly lowers it for retard cinematic purposes. If you say something like player.SetRestrained 1 (which locks the camera) in the middle of that process, the camera will stay at that middle position. I didn't know about that handler, thank you. I'll look on your code if I decide to make my own, my super-own undeath mod. There's a lot of mods that implements player immortality. And now you just come here and say "I don't believe in immortality". I was thinking about making my own Sheogorath immortality mod. I know that the other ones exist, but I was hoping that high-end scripting could already have solved some problems that had been making the modders of the past use surrogate ways to acquire the result (and I don't trust other people's mods, that's the second reason). The main reason I've started thinking about that is the paradox of Shivering Isles: Sheogorath is above SI laws, but even Sheogorath can't eat 3 portions of Greenmote and stay alive. I find this... discriminating. Therefore, preventing death is not a panacea, because it won't catch the "kill" command.
  10. player.SetRefEssential 1 player.Kill Player falls to the ground. When he gets up, the camera is no longer located on the heigh of his head, but lies on the ground under his feet. How to revert it back to normal position?
  11. Striker879 Thanks for the reference. That mod has interesting system: a quest remembers the last cell player visited, and when NPC needs to run, it takes wander package with that last cell assigned as destination point. Maybe I'll do something like that.
  12. Time is any, duration is 0. NPC is a random one, so it can have any other packages. I assign mine with AddScriptPackage.The victim starts cowering and shows the message "%n is fleeing" instead of startibg dialogue. So I assume my package is working, it just does not make the victim move.
  13. Out of combat. I tried to use 'flee' mod in package, assigning player as target, setting location to current with radius (in different combinations). Victim just stays on the place and refuses to start dialogue.
  14. You're not right. Quest's priority determines which lines will be shown on dialogue or conversation start. That's why you see Crime's 'criminal scum' lines instead of Generic's 'Good day citizen' while matching Crime's conditions (having bounty on your head).
×
×
  • Create New...