Jump to content

Recommended Posts

Posted

Yes, I know about the NO_Fighters mod that skips random encounters. Don't care about that.

 

I have Googled the best I can and I have found decade-old dead links to mods promising easy turret minigames where you are way tougher and enemies are way easier. Yet I can't find a single working link to a mod that does this. That seems unthinkable to me. Doesn't modding improve with time?

 

I just.. I can't do it. I suck at this minigame and I'm so sick of watching the same cutscenes over and over and over and over. And I know "all the tricks." I've been on Google for an hour. I still die. And I will keep dying and I will never beat this stupid game unless I can find some mod that does something that seems to me to be relatively simple. Given everything PC modding can do, something like "take no damage in a minigame"sounds extremely simple and easy. But I also know nothing about modding so....

 

If anyone can help me out here, I'd be beyond grateful.  If you have a Paypal, I'd even be happy to donate to that in exchange for assistance. I don't bring this up to earn sympathy but I am visually impaired and it's why I love the auto-pause system for real gameplay. I jut can't react to things that quick so it serves me very well. I only beat KOTOR 1 originally because a friend did the turret section for me but I can't jus thope a friend is stopping by whenever I want to replay this game. I need a more permanent solution and a mod is the only solution I can think of.

Posted

The Taris fighter minigame can be skipped, though

 

As soon as you board the Hawk, move the cursor to the top right of the screen. Click an icon. Go to the map. Click Return to Hawk

 

Not only do you skip the "Destroy this planet" cutscene, but you also skip the turret minigame

Posted

There were script edits over at LucasForums which would allow you to skip both the Taris and Leviathan turret sections, but the site appears to be down again. Here it is in the event it comes back up:

 

http://www.lucasforums.com/showthread.php?t=179868

 

Fortunately you can still see it via a Google cache (Wayback Machine doesn't seem to have it). While tygaran provided source for the Taris script k_ren_taris03:

#include "k_inc_debug"
#include "k_inc_stunt"

void main()
{
StartNewModule("ebo_m12aa", "K_TARIS_DESTROYED", "11b", "", "", "", "", "");
}
allowing a new copy of that to be compiled, unfortunately TK102 only attached a ZIP file of the Leviathan script to his post, without posting the source as text or even mentioning the script filename. I had a brief poke through the Leviathan scripts, but didn't see anything obvious. Perhaps someone else can chime in with an independently created script for that.
Posted

There were script edits over at LucasForums which would allow you to skip both the Taris and Leviathan turret sections, but the site appears to be down again. Here it is in the event it comes back up:

 

http://www.lucasforums.com/showthread.php?t=179868

 

Fortunately you can still see it via a Google cache (Wayback Machine doesn't seem to have it). While tygaran provided source for the Taris script k_ren_taris03:

#include "k_inc_debug"
#include "k_inc_stunt"

void main()
{
StartNewModule("ebo_m12aa", "K_TARIS_DESTROYED", "11b", "", "", "", "", "");
}
allowing a new copy of that to be compiled, unfortunately TK102 only attached a ZIP file of the Leviathan script to his post, without posting the source as text or even mentioning the script filename. I had a brief poke through the Leviathan scripts, but didn't see anything obvious. Perhaps someone else can chime in with an independently created script for that.

 

 

Awesome, thank you. I had no idea LucaForums just "went down" periodically. I thought it might be gone forever for some reason or other.

 

The "skip Tarris turret" script works like a charm. Now just need Leviathan.

 

Thank you again.

Posted

Well there was a period where they were still using their own colocated server hardware which would regularly fall over, but supposedly they transitioned to proper virtual server hosting some time back. I don't know what the current issue is, or how long it will last, but the site was up only a few days ago.

Posted

From what I can tell this won't affect anything besides skipping the Leviathan turret session:
 
k_ren_levescape.nss:

//:: k_ren_levescape
/*
     Runs the Leviathan Escape into
     the Mini-Game
*/
//:: Created By: Preston Watamaniuk
//:: Copyright (c) 2002 Bioware Corp.

#include "k_inc_debug"
#include "k_inc_stunt"

void main()
{
    PlayMovie("17a");
//    ST_PlayLeviathanEscape01();
}

The commented-out code looks like this, so I checked the movies it's playing and used the post-shooting movie:

//Goes to the Leviathan Mini-Game covered by the Escape Render
void ST_PlayLeviathanEscape01()
{
    SetGlobalNumber("K_TURRET_SKYBOX", 10);
    StartNewModule("m12ab", "", "17a", "11a");
}
Posted

 

From what I can tell this won't affect anything besides skipping the Leviathan turret session:

 

k_ren_levescape.nss:

//:: k_ren_levescape
/*
     Runs the Leviathan Escape into
     the Mini-Game
*/
//:: Created By: Preston Watamaniuk
//:: Copyright (c) 2002 Bioware Corp.

#include "k_inc_debug"
#include "k_inc_stunt"

void main()
{
    PlayMovie("17a");
//    ST_PlayLeviathanEscape01();
}

The commented-out code looks like this, so I checked the movies it's playing and used the post-shooting movie:

//Goes to the Leviathan Mini-Game covered by the Escape Render
void ST_PlayLeviathanEscape01()
{
    SetGlobalNumber("K_TURRET_SKYBOX", 10);
    StartNewModule("m12ab", "", "17a", "11a");
}

 

 

Is there something I can do with all this? Truth be told, I didn't even really understand what DarthParametric listed. I just was fortunate enough to find this link someone had "compiled" from the script he found on LF. It might be absurdly simple but I've never done anything like this before so I wouldn't even know where to begin.

Posted

Sorry for hijacking this topic but it is related.

 

Where do I find the function that decides whether or not the Ebon Hawk is reaching destination or being met by enemy fighters in space?

 

I kind of like the "NO_Fighters" mod but perhaps it is a bit extreme and I'd rather tweak the odds (originally, way too high).

 

Anyone who knows?

 

Thanks!

 

EDIT: I think I found it.

 

void sub14() {
sub8(" Start: ST_PlayPlanetToPlanet()");
int nRandom = d100(1);
if ((sub15() == 1)) {
if ((nRandom > 50)) {
sub8(" Start: Random Mini-Game Attack");
SetGlobalBoolean("K_RANDOM_MINI_GAME", 1);
StartNewModule("m12ab", "", sub9(), "11a", "", "", "", "");
}
else {
StartNewModule("ebo_m12aa", "", sub9(), "08", sub16(), "", "", "");
SetGlobalNumber("K_CURRENT_PLANET", GetGlobalNumber("K_FUTURE_PLANET"));
}
}
else {
sub17();
}
}
  • 10 months later...
  • 2 weeks later...
Posted

Hmm, the script worked great for Taris, but when leaving the Leviathan the game bugs out right before the turret gun mini-game. The movie plays showing the escape from Malak, and you see the ship fly off, but then the screen goes black, and Carth and Revan are back in the Hangar Bay by the Hawk, unable to board the ship or leave the room. I know it's common to have problems at this point, and I've tried every remedy I could find. Removing the k_ren_levescape.ncs file solves the problem, but throws me into the turret gun, which did I mention drives me insane?   :P 

Is there another mod for this? Any ideas? 

Posted

Hmm, the script worked great for Taris, but when leaving the Leviathan the game bugs out right before the turret gun mini-game. The movie plays showing the escape from Malak, and you see the ship fly off, but then the screen goes black, and Carth and Revan are back in the Hangar Bay by the Hawk, unable to board the ship or leave the room. I know it's common to have problems at this point, and I've tried every remedy I could find. Removing the k_ren_levescape.ncs file solves the problem, but throws me into the turret gun, which did I mention drives me insane?   :P 

 

Is there another mod for this? Any ideas? 

 

Try this:

 

k_ren_levescape.ncs

  • Like 1
Posted

Thank you for responding. It worked! Back to saving the galaxy. :yes

 

Posted 13 June 2017 - 11:06 PM
There's ANOTHER mandatory turret gun sequence as you approach the Star Forge, near the end of the game. Seems to be a little easier than Taris or the Leviathan ones, but a simple mod to bypass ALL the turret gun mini-games would be great. At least for some of us. :D

  • 2 weeks later...
  • 4 months later...
Posted

wait i remeber the EZ turret mod! still have it too! and a fe others that seem to be no were anymore! just need to find my lime green jump drive!

  • 2 months later...
Posted

Just so there is a permanent record to allow people to compile themselves if needs be, here is the source for the scripts required to remove the forced turret sequences:

 

Taris Escape

k_ren_taris03

void main() {
	StartNewModule("ebo_m12aa", "K_TARIS_DESTROYED", "11b", "", "", "", "", "");
}
Leviathan Escape

k_ren_levescape

void main() {
	PlayMovie("17a");
	StartNewModule("ebo_m40ad", "", "11b", "", "", "", "", "");
}
Unknown World

k_ren_unkturret

void main() {
	StartNewModule("STUNT_35", "", "07_2", "", "", "", "", "");
}
You can remove the random turret sequences that pop up when travelling between planets with Kitty Kitty's No Fighters mod.
Posted

Just so there is a permanent record to allow people to compile themselves if needs be, here is the source for the scripts required to remove the forced turret sequences:

 

Taris Escape

k_ren_taris03

void main() {
	StartNewModule("ebo_m12aa", "K_TARIS_DESTROYED", "11b", "", "", "", "", "");
}
Leviathan Escape

k_ren_levescape

void main() {
	PlayMovie("17a");
	StartNewModule("ebo_m40ad", "", "11b", "", "", "", "", "");
}
Unknown World

k_ren_unkturret

void main() {
	StartNewModule("STUNT_35", "", "07_2", "", "", "", "", "");
}
You can remove the random turret sequences that pop up when travelling between planets with Kitty Kitty's No Fighters mod.

 

Thanks a lot for the answer.  

I have just found another mod which makes the minigames easier.  

 

https://www.nexusmods.com/kotor/mods/1179

 

 

I chose this one because the Kitty Kitty's mod didn't work for me. 

  • 1 month later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Guidelines.