-
Posts
65 -
Joined
-
Last visited
Everything posted by Magnusen2
-
Your best bet is to download some of those mods to see how they work.
-
I was able to fix the issue by making functions for each type of actor and throwing the code that modified the leveled lists into each one. Then called the functions in the OnOptionSliderAccept event. Thank you.
-
What i'm doing: A sort of variation mod that the user can configure (through a MCM) the rate of males to females that get spawned from leveled lists. The problem: There's one slider that the user can select the rate. I also added toggleable options in which the user can choose which factions and/or types of creatures get the changes applied (e.g. bandits/forsworn/etc). When i set the slider to a different amount, the script doesn't update the OnOptionSelect event to match the new values. I want to force the OnOptionSelect event to reevaluate all the options contained within it every time i set the value of the slider (some code that i can throw on the OnOptionSliderAccept event) Any help is appreciated.
-
[LE] Quick Questions, Quick Answers
Magnusen2 replied to Elias555's topic in Skyrim's Creation Kit and Modders
Scriptname xxxGiantScaleScript Extends Actor Race Property NordRace Auto EVENT OnInit() Race NPCRace = GetRace() if NPCRace == NordRace float RandomScale = Utility.RandomFloat(2.40, 2.60) setScale(RandomScale) ;debug.notification("Giant Scale Modified") endif endEVENT The script above is attached to a actor (which pulls the traits/models/animations from a leveled list) and it is supposed to change their scale if the actor is from the Nord Race, but it doesn't get applied when the actor spawned is a Nord. Any help on this? -
The first issue i fixed some minutes after posting by removing the second number. The second one was solved by replacing the code in my first post with: if page == "$SDO_Page1" float FemaleRatio = xxxFemaleChanceGlobal.GetValue() AddHeaderOption("") _FemaleRatio = AddSliderOption("$SDO_FemaleRatio", FemaleRatio as int) Hope this helps other people. Thanks to those that posted. EDIT: The code below also works _FemaleRatio = AddSliderOption("$SDO_FemaleRatio", xxxFemaleChanceGlobal.GetValueInt())
-
I trying to implement a MCM on my mod. But every time i try to compile a get lots of errors with the following: "Too many arguments passed to function" Is it because of too many stuff on the event? I have about 1095 lines on a OnOptionSelect MCM event. Almost all of the lines are like this: I removed 464 lines and the error still persists. Anyone knows why this is happening? EDIT: Fixed it by removing the extra 1 at the end. I thought that two numbers were needed, one for the level and other for the count. My bad. But now there's another error: "Type mysmatch on parameter 2 <did you forget a cast?>" "Type mysmatch while assigning to a int <cast missing or types unrelated>" Both at the last line. Any help on this?
-
Automation Tools for TES5Edit - Suggestions Thread
Magnusen2 replied to matortheeternal's topic in Skyrim's Skyrim LE
Is it possible to make a script that: 1. copies a existing record into another plugin 2. and then UPDATES all the records that used the original record to using the new record that was created instead? -
OnPlayerBowShot doesn't seem to work with crossbows. Any way for me to trigger the code above when firing a crossbow?
-
Help with NPC script
Magnusen2 replied to Magnusen2's topic in Oblivion's Oblivion Construction Set and Modders
I read that they only get removed when they were dead. That's why i was looking for a way to kill the ones that somehow got lost. Thank you. -
Help with NPC script
Magnusen2 replied to Magnusen2's topic in Oblivion's Oblivion Construction Set and Modders
The mod is for personal use. I don't intend to release it. -
Help with NPC script
Magnusen2 replied to Magnusen2's topic in Oblivion's Oblivion Construction Set and Modders
Can you please give examples of what those places are? They are spawned through a lesser power. So the places that they will be in are the same ones that the player can go to. -
What i want do to: A script that is attached to a actor that checks every 10 seconds or so if the actor is 5000 units away from the player. If so, the actor is killed. This includes times when the NPC doesn't follow the player through a interior or fast traveling. Why? I spawning a lot of Placeatme actors that have only a follow package (target: the player). Since there's no way to delete placeatme actors in oblivion other than when they're killed and the cell they're in resets, i have to kill the ones that somehow got lost. The problem: The actors have the "no low processing" toggled, meaning that they won't process their scripts when the player is not in their cell. Here's what i got in the moment: scn xxxKnightOfOrderDeleteWhenDistant float timer short init short NPCKilled begin GameMode if init == 0 ;set the timer value, count down 10 seconds set timer to 10 set init to 1 else if timer > 0 set timer to timer - getSecondsPassed ;code to execute after 10 seconds else if ( getdistance player >= 5000 ) if NPCKilled == 0 Kill Message "Actor Removed" set NPCKilled to 1 endif endif set timer to 10 endif endif end begin OnDeath ;sets the short to 1 to prevent messages if the actor was killed by sources other than the kill command above set NPCKilled to 1 endAny way to make this through a quest script or something else that kills any NPC that is of a certain faction that is 5000 units or more distant from the player? Keep in mind that the actors are dynamic (spawned through placeatme). EDIT: Updated the script.
-
[LE] Quick Questions, Quick Answers
Magnusen2 replied to Elias555's topic in Skyrim's Creation Kit and Modders
I asked this in another thread but didn't get any answer. Does anyone know how to make any NPC friendly to the player through papyrus? The above code seems to work on NPCs that don't attack on sight (fort greymoor bandits) but not on other bandits. -
LE Creating a child who fights, is killable.
Magnusen2 replied to csbx's topic in Skyrim's Creation Kit and Modders
http://i.imgur.com/H3Pf1St.png When duplicating a race you need to edit its morphs to use the race that you copied it from. -
LE Manipulating perk points via script
Magnusen2 replied to SilverDragon437's topic in Skyrim's Creation Kit and Modders
Game.ModPerkPoints(x)x is the amount you want to add. I guess this requires SKSE if i'm not mistaken. -
LE Need help optimizing cloak script
Magnusen2 replied to Magnusen2's topic in Skyrim's Creation Kit and Modders
Thank you. That seems to do it. But now there's another problem. I created the effects and spells to test on bandits, The effect gets applied, but they still attack me. This is not the case with certain bandits (The ones on Fort Greymoor), Before i made some edits, they warned my character to back off or they would attack. With the code below they don't. I can even talk to them with no problems. How do i make any NPC hit by the effect friendly towards the player? -
I'm trying to implement a disguise feature in my perk mod through a cloak ability that is cast on every NPC that meets the faction conditions for that particular disguise. So far so good. But the problem comes when i came with the realization that it would be best to add some sort of racial system that makes harder for certain races to disguise in particular factions (Stormcloaks would certainly note a tail XD). Anything i can do with the above code to improve it's performance? Also if anyone find any errors please point out.
-
LE Need help! How do I add a cooldown to a spell?
Magnusen2 replied to morogoth35's topic in Skyrim's Creation Kit and Modders
This is assuming you already have done the Spell and the MGEF. What you're going to do is create another spell and mgef. The mgef contains a script, that casts your actual silence spell on the caster and if it is cast again it checks if the effect is active. If it is, the spell is not cast, and a notification is displayed informing that you have to wait for it to cooldown. You have to adjust the RegisterForSingleUpdate values to match the cooldown you want. And if i made any mistake in the code above, i hope someone else corrects me. I'm still new to scripting. -
[LE] Quick Questions, Quick Answers
Magnusen2 replied to Elias555's topic in Skyrim's Creation Kit and Modders
I'm trying to add a condition to the investor perk that checks if a merchant has been invested in. If so, then the player gets a discount. The way that i see that i can accomplish this is by scripts that are attached to the invest dialogue that add the merchant to a formlist. My question: Do the "IsInList" condition work for the "modify sell prices" entry point? EDIT #2: Nevermind the second question. Figured out that i had to make a quest and add the script to a stage. -
LE Need help with a summon script
Magnusen2 replied to Magnusen2's topic in Skyrim's Creation Kit and Modders
I forgot that the script in the MGEF was the old one which didn't had the player ref property. After adding it and tweaking the offset everything works as intended. Thanks again. -
LE Need help with a summon script
Magnusen2 replied to Magnusen2's topic in Skyrim's Creation Kit and Modders
Now: The furniture/fx spawned is nowhere to be found. I changed all the offsets to multiple values them used the TCL command to go to the sky and test if it spawned somewhere below the player, but that wasn't the case. And sorry again. -
LE Need help with a summon script
Magnusen2 replied to Magnusen2's topic in Skyrim's Creation Kit and Modders
Added your function to the script and that piece of code to the end of the OnEffectStart. Tested and the furniture spawned right below the player as before. Then i messed up with the 3 parameters on the I set them to high amounts and the furniture still spawned below the player. I added the setAngle line because the furniture spawned with a incorrect angle, and the line fixed it. -
LE Need help with a summon script
Magnusen2 replied to Magnusen2's topic in Skyrim's Creation Kit and Modders
Uh i got lost here. Since i'm using formlists to get the furniture references i guess the first method would be best (in this way i don't need to create new furniture and attach scripts to them). Then make the MGEF a self cast spell (sort of like grand healing but without the FX) and spawn the object a meter or two in front of the player. Do i need to call the function that you provided in the magic effect above? (Sorry for being a Noob). -
I'm making some summon spells for my mod to summon furniture (beds/workbenches/etc). Problem is: The object summons right were the player is (below the player to be more specific). I would like to make them summon at the location of the crosshair, just like other summons spells. Any papyrus function that i can use in the script piece above to accomplish this? Using "Aimed" on the MGEF and then using "akTarget" instead of "akCaster" maybe?