Welcome Guest ( Log In | Register )

> Renee's Modding Thread
Renee
post Feb 25 2018, 01:30 PM
Post #1


Councilor
Group Icon
Joined: 19-March 13
From: Ellicott City, Maryland



Mod-making thread basically, which focuses heavily on quest-making. The first two tutorials (How to make a fetch quest and how to make a kill quest) are very hand-holdy. They are designed for those who are just starting to learn the art of quest-making. Other tutorials get more advanced, as my wacky ideas have pushed their boundaries.

Just click on any of the links in the post below this one. smile.gif


Bethesda Units. (How distance compares in-game to real-life).

Xpadder Walkthrough page. Xpadder is a site which allows gaming controllers to mimic the key & mouse functions. Xpadder, or similar programs such as Joy to Keys, are absolutely crucial to get the most out of older games such as Arena, Daggerfall, Morrowind, and Oblivion, for those who prefer controllers. They can also be used for newer games (Fallout 3/NV or Skyrim) to provide alternate controlling scenarios during times when a game's native D-pad arrangement needs to be shut off.




This post has been edited by Renee: Apr 16 2024, 06:27 PM


--------------------
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
 
Reply to this topicStart new topic
Replies
Renee
post Feb 13 2023, 01:58 AM
Post #2


Councilor
Group Icon
Joined: 19-March 13
From: Ellicott City, Maryland



Traveling with an NPC, Additional NPCs. Game: TES V: Skyrim

This lesson goes with the two posts above. I have found that traveling with a second NPC (both of them warrior-types) is also possible. However, it is best if one of these people is regarded as the 'primary', any additional people are more secondary. Best to organize it this way, as we'll see.

I'm not sure if there's a limit to building a party this way. The more people we add, the more management they'll need: keeping them from straying too far ahead or behind, occasional disappearing acts, and so on.

Disappearing acts? Sounds aggravating! Why bother, Renee?

Hey, I find this method of gaming to be really fun, most of the time. Something different from the norm. I enjoy the idea that my character has a boss who she travels along with, not the other way around. tongue.gif NPCs also have different directions of travel, oftentimes they lead me into parts of the gameworld I never seen before.

Object Window > Actors > Actor
1a). Make a second NPC. This time I made a woman warrior, so now my elf has a man and a woman to travel with.

ID: aaaWarrior02
Name: Myrmidon

Toggle ON: Respawn.

1b). Click OK and reopen. Find aaaWarriorTemplate in the ActorBase scroll-bar. Here's what I got toggled on:

Use Stats
Use Factions
Use AI Data
Use Def Pack List
Use Attack Data
Use Inventory

"Use Traits", "Use AI Data", and "Use Base Data" were all toggled on for the first NPC, but for reasons I'll explain they don't need to be on for the second one.

1c).
Traits tab: For instance, I've got Traits untoggled because the template only includes a Male Imperial. Otherwise, the most important choice is Voice Type. Again here's the list supported by the vanilla game.

MaleEvenTonedAccented
FemaleSultry
MaleDrunk
FemaleDarkElf
MaleDarkElf
MaleNord
FemaleCommander
MaleBrute
MaleArgonian
MaleKhajiit
FemaleOrc
FemaleCondescending
MaleEvenToned
FemaleEvenToned
MaleYoungEager
FemaleYoungEager

1d). First open tab not covered by the template is the AI Packages tab. It's because I made a ForceGreet for the second warrior so she too can approach my healer and say "Looks like you've got an adventuring party, may I join?" - I also made a second AI which the first one doesn't have. We'll get to that in a few. Otherwise, she's got all the same AI as the first NPC.

And since she's also got the same Outfit, she'll also show up wearing random armor when first encountered.

1e). Click OK and save. Reopen.

1f). Press the Add button and add the Death script used for the first NPC. Press OK again.

However, since there are two NPCs traveling together I'm gonna need to change a few things. If the original guy got pwned, a timer would begin which would eventually 'clean up' the body from wherever he fell, and he'd respawn back in Bannered Mare. All the globals got cleared to zero. However this won't work if there's two people. If one of them dies and the script remains the same, we can't be traveling along with the second NPC and then all the sudden *poof*, he or she gets teleported into Whiterun! biggrin.gif

1g). Find a cell to drop the second traveler into, give him or her a Reference ID. Click the Persist Location tab and use the scroll-bar to find the cell he/she's in.

Go into the Object Window > WorldObjects > Static and drop an XMarkerHeading into the same cell. Reference that. I'm calling it aaaWarrior02XMarkerHeading.


Object Window > Character > Quest
2a). Open the Death Timer quest and click on the Scripts tab.

2b). New properties will be needed for the second NPC (Type: Actor), the reference to that actor (Type: ObjectReference), and the second XMarkerHeading (ObjectReference) which sends the NPC into some other cell. So... my first NPC gets teleported back to Bannered Mare while the second would get sent back to where we picked her up: Nightgate Inn. 🦉

2c). Click OK and reopen the death timer quest. Right-click > Edit Source. Note that I'm keeping the entire script intact, but making some changes, going mad with semicolons so those additional globals don't read.

Scriptname aaaDeathTimerScript extends Quest

Actor Property aaaWarrior01 Auto
Actor Property aaaWarrior02 Auto

Float Property DelayHours Auto

GlobalVariable Property aaaAccompanyGlobal Auto
GlobalVariable Property aaaDeathGlobal Auto
GlobalVariable Property aaaTravelNightgateInn Auto
GlobalVariable Property aaaTravelRiverwood Auto
GlobalVariable Property aaaWaitGlobal Auto

ObjectReference Property aaaWarrior01Ref Auto
ObjectReference Property aaaWarrior02Ref Auto
ObjectReference Property aaaWarrior01XMarkerHeading Auto
ObjectReference Property aaaWarrior02XMarkerHeading Auto

Function Oninit()
self.RegisterForSingleUpdateGameTime(DelayHours)

EndFunction

Function OnSingleUpdateGameTime()

If aaaDeathGlobal.GetValue() == 1
If aaaWarrior01.IsDead() == 1 && aaaWarrior02.IsDead() != 1
;aaaAccompanyGlobal.SetValue(0)
aaaDeathGlobal.SetValue(0) ; Leave this without a semicolon
;aaaTravelNightgateInn.SetValue(0)
;aaaTravelRiverwood.SetValue(0)
;aaaWaitGlobal.SetValue(0)

aaaWarrior01Ref.MoveTo(aaaWarrior01XMarkerHeading)

UnregisterForUpdateGameTime()

EndIf
EndIf

If aaaDeathGlobal.GetValue() == 1
If aaaWarrior02.IsDead() == 1 && aaaWarrior01.IsDead() != 1
;aaaAccompanyGlobal.SetValue(0)
aaaDeathGlobal.SetValue(0)
;aaaTravelNightgateInn.SetValue(0)
;aaaTravelRiverwood.SetValue(0)
;aaaWaitGlobal.SetValue(0)

aaaWarrior02Ref.MoveTo(aaaWarrior02XMarkerHeading)

UnregisterForUpdateGameTime()

EndIf
EndIf

EndFunction


See that? Most of those globals will no longer trigger if the timer counts down, IF one of the travellers dies; only the DeathGlobal remains. Now... If BOTH of them get killed the script is going to need to reflect this as well. Add a third block (as seen below) below the two blocks from above.


aaaDeathGlobal.GetValue() == 1
If aaaWarrior01.IsDead() == 1 && aaaWarrior02.IsDead() == 1
aaaAccompanyGlobal.SetValue(0)
aaaDeathGlobal.SetValue(0)
aaaTravelNightgateInn.SetValue(0)
aaaTravelRiverwood.SetValue(0)
aaaWaitGlobal.SetValue(0)

aaaWarrior01Ref.MoveTo(aaaWarrior01XMarkerHeading)
aaaWarrior02Ref.MoveTo(aaaWarrior02XMarkerHeading)

UnregisterForUpdateGameTime()

EndIf
EndIf

EndFunction


In this scenario both NPCs get killed during the same battle, or during a battle which occurs before the 240-hour (10 day) timer counts down, both of them will be teleported to wherever. In this case, all the globals are getting zeed-out to zero, so the entire quest can start anew. At this writing this portion of the script is untested, since I've PC Level Mult'd both travelers multiple levels above my healer's Level. viking.gif

2d). OPTIONAL: Make a message as per this post's instructions which indicates when the timer's done counting. I only made a message for the final block, during which both NPCs were pwned, to indicate when both have respawned.


Object Window > Character > Quest
3a). Open the quest which handles dialog for traveling, written up during the "Additional Locations" lesson up above. For me this is aaaRandomTravelQuest.

The aim now is to go through all the dialog which is going to need to reference the second NPC.

First, there's the branch and topics which deal with locational stuff. We speak to the NPC (either one, since both of them are in the TravellerFaction) and during this phase he or she explains where they'd like to go next.

> To start, there's the initial topic which occurs after the timer script counts down. We return to the NPC after x amount of hours, who welcomes us back, and says he/she is "ready to go somewhere else". Nothing additional is needed here.

>> Next topic is the Locational one. Riverwood, Nightgate Inn, or wherever else. In my game, I've added Windhelm's Candlehearth Hall and Ivarstead's Vilemyr Inn by now. Anyway, nothing additional is needed here. It's the NEXT topic (the one where they choose where to go next) where some changes occur. There should already be a slew of script fragments and properties associated with these Infos. 💽

3b). Make a property for the second warrior, with the Type being Actor. So for me this is aaaWarrior02. Click OK (closing the Topic Info panel) and reopen. This'll need to get done for any topic where an NPC states which location they'd like to go next.

3c). Here are the relevant scripts which get added.

Begin
aaaWarrior02.SetPlayerTeamMate()

End
aaaWarrior02.EvaluatePackage()


...That's how I've got them set up, anyway. All the TeamMate stuff is in the Begin box, all the globals and package evaluations in the End box.

3d). Repeat 3b and 3c for any "Yes" locational topics.

>>> The Wait topic, Follow topic, Open Inventory, and Continue topics can get skipped for now. Globals handle everything, and since both NPCs have the same Faction, and the same directional AI, they'll already do all these things when we tell 'em to. We'll add to these topic/infos later.

3e). Open the "Arrive" topic. This occurs once the NPCs reach their destination. Make a property for the second warrior with the Type being Actor. So for me (again) this is aaaWarrior02. Click OK (closing the Topic Info panel) and reopen.


3f). Here is the relevant script which gets added.

Begin
aaaWarrior02.SetPlayerTeamMate(FALSE)



Wow, am I done typing? Looks to be so. smile.gif Whoops no I'm not.

So the original Ai added to the original NPC includes several travel packages such as aaaTravelNightgatePackage and aaaTravelRiverwoodPackage. Both of these are set so that the Player needs to be within 512 units (about 24 feet, or 7 meters) to the original NPC for him to keep moving. If we're too far away from him, he'll stop moving until we get closer. I set it up this way because my character is a healer. She's always close enough to him so she can conveniently heal the guy at a moment's notice, and I loathe the idea of losing him if he gets too far away.

The decision needs to get made, though. Should I also reference the second person with a GetDistance? This is possible. However, problem is if BOTH NPCs are being referenced, this means my healer will need to be near both of them at all times. If one of them strays too far ahead or behind, the entire party comes to a halt.

One solution is to add a second GetDistance with an OR qualifier to each of the travel AIs.

PL GetDistance Reference: 'aaaWarrior01Ref' <= 512.00 OR
PL GetDistance Reference: 'aaaWarrior02Ref' <= 512.00 AND


The advantage here is if the primary NPC gets pwned, the secondary NPC can be traveled near as well. Again though, there's a problem. While traveling with this party I began to notice one of the NPCs still has the possibility of straying too far ahead or behind.

Let's step that dilemma aside for a moment, while another gets fixed. The next task is AI. By now, the NPC Template and the second NPC will both have quite a stack of AI in their AI Packages window, and this is okay if all you're doing is adding two locations. But as I write this (3/2/2024) I'm up to 8. I've also added some individual AI for the extra follower I'm adding now, and a third follower as well, who's got his own Forcegreet. That stack of AI keeps growing and growing. Here is a way to tidy it up.


Object Window > Miscellaneous > FormList
4a). Right-click > New and start a new formlist. I'm calling it aaaWarriorPackageList. This list is going to include ALL the AI Packages. Don't click OK yet.

4b). Drag any AI packages written so far from the Object window into the FormList window; I believe this includes the following: aaaTravelDragonreachPackage, aaaNightgateInnPackage, aaaTravelRiverwoodPackage, aaaWaitPackage, and aaaFollowPackage. Also drag the DefaultSandboxCurrentLocation1024, and the Forcegreet added to the second traveller (if one was added to her or him).

4c). Arrange these AI just as they'd be arranged in the AI Packages window, making sure the DefaultSandbox goes at the very bottom.

4d). If a Forcegreet was added to the second NPC, go back to that package and add a GetIsID condition to that package, with the NPC's name (not the template) as the ID.

4e). Return to the NPC template > AI Packages window. Now remove all AI from this window. Use the Default Package List scroll-bar to add AI instead. Click OK.

4f). Return to the secondary NPC. And NOW we can toggle Use AI Packages on for him or her as well. This will automatically erase any AI in their window.


And now, to solve the dilemma described above in step 3f. If the secondary follower keeps straying back and forth, here's how to fix that.

Object Window > Character > Package
5a). Right-click > New

ID: aaaAlternateFollowerPackage

5b). Click on the Package tab. Change Package Template to Follow

Target to Follow: SingleRef 'PlayerRef' Y
Min Radius: Float 256.000
Max Radius: Float 2048.000

Flags tab
Preferred Speed: Jog (or Run.. whatever). All other flags optional.

Conditions tab
S GetIsID Actor: aaaWarrior02 == 1.00 AND
R GetDead, Run on: aaaWarrior01Ref != 1.00 AND
S GetGlobalValue Global: 'aaaAccompanyGlobal' == 1.00 AND
S GetGlobalValue Global: 'aaaWaitGlobal' != 1.00 AND
PL Player GetDistance aaaWarrior02Ref => 2048


The advantage of having Preferred Speed on Jog or Run is secondary followers will move a bit faster, making shuffling sounds with their feet, as they follow us. This way, we avoid having to constantly look back to make sure they're still behind.

5c). Click OK (if you can see it) or highlight the cursor into the ID slot and press RETURN or ENTER on the keyboard.

Make sure to add this AI into the FormList added to the NPC Template. The GetIsID will make sure the original traveller will NOT use this AI.

And there we go. If the secondary NPC falls too far behind the primary NPC, this causes her to start following the Player instead. Catch is, The first warrior/traveller must be alive for this to happen.

That package alone works most of the time, but I also back it up with properties and a script, as follows.

5d). With the secondary NPC's Actor panel still open, start a new script. Make properties for the new package (aaaAlternateFollowerPackage), the Actor him or herself (aaaWarrior2Ref), and at least one of the GlobalVariables (aaaAccompanyGlobal).


Scriptname aaaAlternateFollowerScript extends ObjectReference

Actor Property aaaWarrior02Ref Auto
GlobalVariable Property aaaAccompanyGlobal Auto
Package Property aaaAlternateFollowerPackage Auto

Event OnPackageStart(Package akaaaAlternateFollowerPackage)
If aaaAccompanyGlobal.GetValue() == 1
aaaWarrior02Ref.EvaluatePackage()
Debug.Trace("New package starts running")


EndIf
EndEvent


I also added a message in the If/EndIf block so that I know when the package kicks in, but messages are optional.

6). Final step (this time I mean it). Reopen the quest. Go into the "Open Inventory" topic and make an Actor property for the second NPC.

aaaWarrior02.OpenInventory() goes into either box if stuff is to be shared between both NPCs. akSpeaker.OpenInventory() can also be used if only that NPC is to be traded with. The advantage of this second script is properties aren't needed.

Okay NOW we're done.

🍷🍷

This post has been edited by Renee: Mar 28 2024, 04:43 PM


--------------------
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

Posts in this topic
Renee   Renee's Modding Thread   Feb 25 2018, 01:30 PM
Lady Saga   Tip: For Oblivion, Always use [url=https://www.nex...   Feb 25 2018, 01:35 PM
Renee   The Fetch Quest, Game: TES IV: Oblivion. So this...   Feb 25 2018, 01:51 PM
ghastley   The problem with the YouTube tutorials is that the...   Feb 25 2018, 04:25 PM
Renee   Awesome, ghastley. The problem with the YouTube...   Feb 25 2018, 05:18 PM
SubRosa   Excellent fetch tutorial Renee! I will probabl...   Feb 25 2018, 05:41 PM
Renee   Thank you. I tend to write up everything I do step...   Feb 25 2018, 11:40 PM
Renee   [color=green]The Kill Quest, Map Markers, and X ma...   Mar 2 2018, 11:16 PM
Turija   Great thread. I will have to think about what I c...   Mar 7 2018, 11:58 PM
Renee   Sweet Turija! See, I just learned a few new th...   Mar 8 2018, 02:53 AM
Renee   [b]How to repair Hair, Game: TES IV: Oblivion Thi...   Mar 13 2018, 02:27 AM
Renee   [color=#FF6600]How to make an NPC Vendor & Mec...   Mar 18 2018, 06:29 PM
Renee   [color=white]How to fix "Missing flowchartx32...   Mar 25 2018, 05:20 PM
ghastley   FWIW, you CAN paste into the command prompt window...   Mar 26 2018, 03:06 PM
Renee   Okay thanks, ghastley. I'll see if this works ...   Mar 29 2018, 05:18 PM
Renee   How to make a Fetch Quest (with multiple items). G...   Mar 31 2018, 11:36 PM
Renee   Each exterior cell is 4096 units by 4096 units or ...   Apr 3 2018, 02:56 PM
ghastley   At some time in the past I did a tutorial on how t...   Apr 10 2018, 07:33 PM
Renee   That'd be great. :)   Apr 10 2018, 08:15 PM
Renee   [color=#009900]Making a weather-changing item. Gam...   Apr 24 2018, 12:19 AM
Renee   [color=#996633]Faction-changing Armor and Clothing...   May 13 2018, 07:53 PM
Renee   Making an NPC Follower Game: Fallout 3 Note: this...   May 29 2018, 01:25 AM
Renee   Timer Scripts. Game: TES IV: Oblivion or Fallout 3...   Jun 10 2018, 11:53 PM
Renee   [b]Making a house for sale or rent. Game: TES IV: ...   Jun 24 2018, 03:37 AM
Renee   Cripes, it's been since JUNE since I've ad...   Aug 12 2018, 04:13 PM
Renee   [color=#CC9933]Gun Tutorial Game: Fallout 3 This ...   Aug 26 2018, 08:52 PM
SubRosa   Ignores Normal Weapon Resistance is a holdover fro...   Aug 26 2018, 08:59 PM
Renee   Thanks. I changed the info in my previous post. ...   Sep 2 2018, 12:55 PM
Renee   Another tip for making these bounty quests: I like...   Sep 29 2018, 06:50 PM
Renee   This post goes with the one above, and is going to...   Oct 12 2018, 02:41 AM
Renee   [color=green]Lizard Men! -- Game: TES IV: Obli...   Oct 25 2018, 10:59 PM
Lopov   Nice! :goodjob: I'll be using this mod whe...   Oct 25 2018, 11:25 PM
Renee   So it's possible to encounter them in Lake Ru...   Oct 26 2018, 12:04 AM
Renee   Making an NPC Vendor / Repairist. Game: TES IV: Ob...   Oct 28 2018, 02:08 AM
Renee   [b]SEQ Files, Game: TES V: Skyrim Requires the TE...   Oct 29 2018, 12:17 AM
Renee   [color=#996633]Making FOMODs through Fallout Mod M...   Nov 11 2018, 04:32 PM
Renee   ` Making an NPC follower Game: TES V: Skyrim ...   Dec 1 2018, 06:40 PM
Renee   [b]Making an NPC Vendor Game: TES V: Skyrim [b]1...   Dec 5 2018, 02:59 AM
Renee   Making a Book bump a quest stage Game: TESV: Skyri...   Dec 15 2018, 02:39 AM
Renee   [b]Skyrim Quest Tutorial (WORK IN PROGRESS, do no...   Dec 17 2018, 12:02 AM
Renee   Repeatable Bounty Quests II (innkeeper involvemen...   Dec 29 2018, 04:04 PM
mALX   This is an Awesome thread, Renee!!!   Jan 14 2019, 07:56 PM
Renee   Awesome, thanks so much. :) --------------------...   Jan 19 2019, 08:25 PM
Renee   Setting up a gamepad controller Game: Elder Scroll...   May 15 2019, 12:53 AM
mALX   Awesome! You got it working! By the wa...   May 15 2019, 01:55 AM
Renee   Awesome, thanks. I have noticed there's TONS o...   May 15 2019, 01:05 PM
Renee   Game: Fallout 3, How to use Zone Triggers to set q...   Jun 19 2019, 02:28 AM
Renee   How to transfer saves from Xbox to PC, Games: Obli...   Jun 26 2019, 12:10 PM
Renee   Making a generic NPC Enemy, [color=white] Game: TE...   Oct 29 2019, 10:53 PM
Renee   Repeatable Bounty Quests Game: [color=white]TESV: ...   Jan 5 2020, 05:47 AM
Renee   Repeatable Bounty Quests, How to add new locations...   Jan 29 2020, 01:46 AM
mALX   These are awesome tips! Thanks Renee!   Jan 5 2020, 06:26 PM
SubRosa   Wow. That is amazing.   Jan 5 2020, 07:54 PM
Renee   aw, well thanks. I appreciate your encouragement,...   Jan 5 2020, 10:48 PM
Renee   SetActorOwner https://www.creationkit.com/index.p...   Apr 1 2020, 11:43 PM
SubRosa   You can use this at the console. It is a great way...   Apr 2 2020, 12:28 AM
Renee   You can use this at the console. It is a great wa...   Apr 2 2020, 12:33 AM
Renee   USE THIS idea for Fallout3_Jail.esp. We're goi...   May 31 2020, 05:11 PM
Renee   Adding a Jail and enhancing Fallout's Crime Sy...   Jun 4 2020, 08:25 PM
Renee   Making a Patrol package. [color=#993300]Game: Fall...   Jun 20 2020, 04:55 PM
Renee   Horse Rentals. Game: [color=#006600]TES IV: Oblivi...   Jul 26 2020, 06:07 PM
Renee   Getting an Xbox controller to work on PC. Game: [c...   Jun 11 2021, 12:47 AM
Renee   [color=#996633]Trigger Zones, Game: Fallout 3 Fal...   Sep 27 2020, 12:47 AM
Renee   https://www.youtube.com/watch?v=wj6qGCT4isg...nnel...   Sep 28 2020, 02:55 PM
Renee   https://web.archive.org/web/20130429160307/...Obje...   Oct 29 2020, 11:17 PM
Renee   I have found a really good Daggerfall tutorial whi...   Nov 28 2020, 03:00 AM
Renee   More Dynamic NPCs! Game: [color=#663366]TES II...   Jun 24 2021, 02:36 AM
Renee   Getting the Take All button to work, Game: [color=...   Aug 20 2021, 06:40 PM
Renee   Setting fallback cell (instead of Tiber Septim) h...   Sep 1 2021, 01:12 PM
Pseron Wyrd   https://web.archive.org/web/20200218144220/...a-s...   Sep 1 2021, 04:32 PM
Renee   I agree, Wyrd. Now that I know why random stuff sh...   Sep 2 2021, 01:58 AM
Renee   Random Console Commands, Game: TES V: Skyrim This...   Jan 23 2022, 03:36 PM
Renee   How to make a ForceGreet. Game: [color=white]TES V...   Jan 23 2022, 07:24 PM
Lena Wolf   I thought this thread was for Oblivion? ;) Never m...   Jan 25 2022, 03:57 PM
Acadian   I thought this thread was for Oblivion? ;) ... P...   Jan 25 2022, 05:30 PM
Lena Wolf   Well, there are of course a lot of similarities be...   Jan 25 2022, 05:41 PM
Renee   Lena has a point. Maybe this thread can be moved t...   Jan 25 2022, 06:12 PM
Acadian   Okay, the mod projects forum is simply a collectio...   Jan 25 2022, 07:22 PM
Renee   Thanks, paladin!   Jan 25 2022, 08:44 PM
Renee   How to use the PC's face for an NPC. [color=wh...   Mar 13 2022, 10:11 PM
Renee   How to add a bounty to the Player via script. Gam...   Apr 1 2022, 01:21 AM
Renee   How to add the Player or NPC into a Faction via sc...   Apr 3 2022, 02:39 AM
Renee   How to fix "failed to load snowflake: Meshes...   Nov 27 2022, 04:20 PM
Renee   Installing Morrowind from Scratch Recently I had ...   Dec 3 2022, 02:53 AM
macole   Those Intervention scrolls sure come in handy. I ...   Dec 3 2022, 07:59 AM
Renee   Oops, I screwed up. :whistle: Was cleaning the nex...   Dec 3 2022, 02:26 PM
Renee   Get a Job! Game: [color=white]TES V: Skyrim I...   Dec 11 2022, 11:41 PM
Renee   Traveling with an NPC. Game: TES V: Skyrim Here...   Jan 21 2023, 07:32 PM
Renee   Traveling with an NPC, Additional Locations. Game:...   Feb 10 2023, 03:07 PM
Renee   Dialog Speech Checks Game: [color=#FFFFFF]TES V: S...   Mar 3 2023, 03:58 AM
Renee   Map Marker Tutorial, Game: Fallout 3 Firstly, wit...   Mar 19 2023, 05:52 PM
Renee   Repeatable Enemy Raids, Game: Fallout 3 I love ge...   Mar 26 2023, 07:31 PM
Renee   Repeatable Enemy Raids, Additional Locations. Game...   Apr 2 2023, 06:36 PM
Renee   Gray Face bug. Game: [color=#FFFFFF]TES V: Skyrim ...   Apr 23 2023, 01:50 AM
Renee   Script Fragments. Game: [color=white]TES V: Skyrim...   May 19 2023, 06:54 PM
Renee   Fixing the Sideways Glasses Bug, Game: [color=#663...   May 26 2023, 10:29 PM
Renee   Nexus Mod Manager - installing and uninstalling Y...   Jun 8 2023, 08:02 PM
Renee   Breton Magic Resistance Tweak, Game: [color=#66333...   Jun 21 2023, 12:03 PM
Renee   Manipulating Leveled Lists Here is how to change ...   Jun 24 2023, 07:29 PM
2 Pages V  1 2 >


Reply to this topicStart new topic
14 User(s) are reading this topic (14 Guests and 0 Anonymous Users)
0 Members:

 

- Lo-Fi Version Time is now: 27th April 2024 - 11:14 AM