-
Content Count
2,339 -
Joined
-
Last visited
-
Days Won
73
Content Type
Profiles
Forums
Blogs
Forum & Tracker Requests
Downloads
Gallery
Store
Calendar
Everything posted by Fair Strides
-
In that case I apologize. I'd add ", miss" to that, but I recently learned that not every woman likes being referred to that way. If you're okay with editing the globalcat.2da file, then you can add a boolean called something like "LEI_650END_DISCTALK" and then edit your a_load262 this way: Edit: By the way, it took me forever to learn, but when posting the code snippets, if you set the Code Type to XML, you don't get the annoying color-coding.
-
In that case, we can do it with either local variables or global ones, but I'm just trying to keep it as simple as possible since the guy wants to avoid editing any dialogs at all for some reason. Otherwise I'd just tell him to replace the a_load262 in Visas' dialog with both discadm on one node and discstart on the next one.
-
Right now the EU stream date is very fluid. I wasn't planning for the change in date, so it's thrown a wrench into it. I'm thinking it could be January 7th if that wouldn't be much trouble for anyone. I start school on the 9th, so I want to try to do it before then. If not, that's fine and I'll manage.
-
EDIT: The EU Stream will be January 7th, 2017 at 9AM PST (UTC-8) unless anything comes up! Hi everyone! Staying warm and avoiding the ice out there? We were supposed to be getting a news update from our Editor Xuul, but it seems he misplaced the draft. So I'm here mentioning two pieces we know for sure were going to be in the draft. First up is a trip down memory lane and a look at the past. By now, many people probably know about the M4-78 Enhancement Project mod. This was an attempt at a restoration of a droid planet in KotOR 2, and while it was a very good attempt, it was not the only one. There have been others throughout the years and all have been unique in their own ways, even in their pitfalls. This comes about due to a lot of research and dedication from our very own Sith Holocron. He's done a lot of work tracking people down, gathering info, and narrating the videos themselves. Xuul did the editing and hosting for it, which was very nice of him. You can watch the first episode (and see the playlist as a whole for later updates) here: https://www.youtube.com/playlist?list=PL4turVkHE16-SoTV-rIbSSihGLLRfMbj3 The second thing I wanted to mention is an upcoming event very soon. I have decided to hold an experiment of sorts where I will be streaming to try to teach people something about KotOR modding. If this experiment goes well, there is a very good chance of future streams over more areas of modding. For now though, the first stream will be focusing on Scripting. It might seem like I'm tossing people into the deep end by starting with this area, but the reasons are simple: 1) this is my forte, so it's my most confident area to start off with and 2) if you can understand this stuff, even if you can't do it yourself, it'll help tie other parts of modding together for you. I am planning to hold two streams, though the plans have changed a little bit. After one or both streams, I'll be editing the footage to more of a tutorial format and will upload it to Youtube afterwards for anyone to reference and learn from as needed. The first stream will be held at 5PM PST (UTC-8) Thursday December 15th. This one is aimed mostly at those in the US, though anyone who can make it is welcome. The second stream I'm not sure on yet. It was going to be this Saturday, the 17th, but I need to get home to my uncle's place and take care of some things. The next weekend is Christmas, so I am not expecting or trying anything at that point. So preliminary estimates are looking like 9AM PST (UTC-8) Saturday December 31. It wasn't the plan, but this Saturday Stream is for anyone who can't make the first one (which for timezones, means Europe and beyond). If anyone is curious about this topic of modding or just want to show some support for the modders, we'd be glad to see you at the streams! You can watch it here: http://www.youtube.com/user/TristanGoucher/live
-
In that case, debug time! Add this to a_load262, before the Disciple distance check: SendMessageToPC(GetFirstPC(), "Distance between Disciple and his needed location: " + FloatToString(GetDistanceBetweenLocations(GetLocation(GetObjectByTag("WP_650END_1")), Location(Vector(54.839211, 59.720371, 1.8), 0.0))); This will print a message to the Feedback screen in-game. We need to know what the answer is.
-
My only nitpick on the video is that the new hangar isn't cooperating in time to be in the video...
-
This is the part where you cheat and get sneaky. Visas and Disciple were meant to be a one-or-the-other scenario, so they spawn at the same waypoint. Edit the k_attonend script to change the sub2 part that spawns Disciple so that the "" part is "mn_comm" (I looked at the waypoints in the .git file and found this one. It's out of the way in the Communications room). This will make sure we're good to go. In the a_load262 script, try changing the second ExecuteScript to be this: DelayCommand(0.25, ExecuteScript("discstart", OBJECT_SELF));
-
You're on the right track, though I notice you cut out the gender check in a_load006end.nss. About the only way I could see doing this without modifying any dialogs would be to modify a_load262.ncs. When you decompile it, you'll get this: The only good thing is that Disciple has to move for his cutscene. So we need to check his location compared to where he needs to be.
-
Need help on the populate function
Fair Strides replied to maltron66's topic in General Kotor/TSL Modding
A quick way to check is to open populate.nss and check the listed parameters for the Populate function. Regardless of whatever is in the example.nss, the populate.nss's layout is law in regards to the parameters needed. -
I'm pretty sure the game is hardcoded for 5 attacks per round max. // 485: Create a Modify Attacks effect to add attacks. // - nAttacks: maximum is 5, even with the effect stacked effect EffectModifyAttacks(int nAttacks);
- 30 replies
-
- 1
-
-
- kotor mod
- kotor modding
-
(and 8 more)
Tagged with:
-
Need help on the populate function
Fair Strides replied to maltron66's topic in General Kotor/TSL Modding
I don't know where you found it (as it's not in the example.nss Tim put with the Populate Function), but you don't need the TRUE on the end at all. -
I do not have all of my resources on me at the moment (you'd think I had them all on a flashdrive around my neck by now...), but I can tell you the basic idea of it: 1. Make X waypoints in the .git file of the level in question. You'd change the tag of the waypoint, but the basic theory on the waypoints: "wp_ marks>_##" where ## is between "01" (yes, the 0 is required if it's under 10) and X. 2. Copy the k_def_spawn01.nss file (I think that's the name?) and rename it. Open it up and there should be several lines about walking, so listen to the comments and do what they say. At or near the bottom should be something like "GN_WalkWayPoints();". This needs to be uncommented (so no // marks). 3. Compile the script and enter the new filename, minus the extension, in the OnSpawn Script Slot of the .utc file. Put everything in the Override folder (unless you want to put the .git file in the .mod or .rim) and test. *crosses fingers* Edit: In lieu of my resources, I will use my past self! http://deadlystream.com/forum/topic/2776-npc-waypoint-walking/?hl=%2Bwalk+%2Bwaypoints
-
- 17 comments
-
- Head
- The Sith Lords
-
(and 2 more)
Tagged with:
-
Was this edited from the version Quanon's already uploaded? And if so, what was changed? http://deadlystream.com/forum/files/file/936-quanons-mission-vao-reskin/
-
Part 1 of 2 or 3: Talking with Malkior on Skype, I wanted to see how many posts I had made
-
Part 2: in 2016 alone and checked the wayback machine for my profile. https://web.archive.org/web/20150815000000*/http://deadlystream.com/forum/user/9107-fair-strides/ That's when I got a surprise.
Someone felt the need to archive my specific profile page 41 time in a four year period? Why?! It's not like it gets updated that often...
-
-
The 8 and 64 were named according to their use. Since this game has no concept whatsoever of ammo, those slots were skipped over and probably disabled. As to the other slots, I know you don't need the info, but I'll give it anyway to explain. The slots actually do exist and the items in them are real items. There are 4 "invisible"/hidden slots that you physically cannot access in-game. Three of these are for weapons and the last for an armor slot. These are the Creature slots. Each of those slots are in my previous post. As far as how I figured it out, I literally just used the .UTC editor in KT and some old format docs from Never Winter Nights to get an idea of the slots by entering an item in one slot, saving the file, opening in K-GFF to check the number, then writing it down. I had to for KSE. Though when you think about it... They were smart. The started with 1 and literally just doubled the number for each slot's ID.
-
Jekk'Jekk Tarr (Mira Space Suit) Private Lounge Door Glitch
Fair Strides replied to npetkovic10's topic in TSLRCM
At the very very least, it sounds like you're getting caught on a door collision/walkmesh edge and the game is hiccuping, which has been known to happen at various random times in both games. Approaching the door from various angles/from the side might yield better results. Also, what were the mods you used? Though it's already been mentioned, a lot of data is saved into the save game, including the current state of every level you've entered. So the only way to reset an area completely when uninstalling mods is to use a save from before ever entering the level before.- 11 replies
-
- glitch
- Private Lounge
-
(and 4 more)
Tagged with:
-
Two dialogues with the same name?
Fair Strides replied to DarthRevan101's topic in General Kotor/TSL Modding
Sorry for the delay. Sadly I don't know that this is possible to do quickly/easily. As an alternative solution, you could probably rename one of the two dialogs (I imagine the second is the less-edited version...) and then edit the OnEnter script for the module to fire the renamed dialog instead. Unless the dialog is listed in the .utc file, in which case you have to do it a bit differently. -
Depends on what mods you have installed. And the removed .utc files... Did you try it with a save from before entering the Bridge level ever before?