Search the Community
Showing results for tags 'utility'.
Found 3 results
-
Version 1.1.0
19 downloads
Ever wanted to bring back that broken GONK droid from the Ebon Hawk prologue? No? Too bad, I did. Because why wouldn’t the Ebon Hawk have a backup power droid? This half-joke, half-cheat mod allows you to repair and reactivate the useless GONK droid found in the Ebon Hawk's floor. Once restored, this little power pack becomes an infinite energy source, letting you recharge personal shields, droid shields, and droid utility items for free. The mod works only on saves where you did not leave Peragus yet. Once you board the ship, you can find the droid at the same place as during the prologue. Requirements: None! Modder's Tool: Power/Gonk Droid from newbiemodder is already included withing the mod. Bugs: The droid is a bit stupid (or is it me), so he does not diffirintiate between your fully and partially charged items. You should have the exact amount of 1 of the item you want to recharge, or the droid will just do its thing on random. Credits: newbiemodder, for Modder's Tool: Power/Gonk Droid zbyl2, for M4-78 Enhancement Project Fred Tetra, for KOTOR Tool TK102, for DLGEditor Torlack, stoffe & TK102, for NWNSSCOMP JdNoa & Dashus, for DeNCS Cortisol, for Holocron Toolset -
View File AxC's GONK and Loaded Ever wanted to bring back that broken GONK droid from the Ebon Hawk prologue? No? Too bad, I did. Because why wouldn’t the Ebon Hawk have a backup power droid? This half-joke, half-cheat mod allows you to repair and reactivate the useless GONK droid found in the Ebon Hawk's floor. Once restored, this little power pack becomes an infinite energy source, letting you recharge personal shields, droid shields, and droid utility items for free. The mod works only on saves where you did not leave Peragus yet. Once you board the ship, you can find the droid at the same place as during the prologue. Requirements: None! Modder's Tool: Power/Gonk Droid from newbiemodder is already included withing the mod. Bugs: The droid is a bit stupid (or is it me), so he does not diffirintiate between your fully and partially charged items. You should have the exact amount of 1 of the item you want to recharge, or the droid will just do its thing on random. Credits: newbiemodder, for Modder's Tool: Power/Gonk Droid zbyl2, for M4-78 Enhancement Project Fred Tetra, for KOTOR Tool TK102, for DLGEditor Torlack, stoffe & TK102, for NWNSSCOMP JdNoa & Dashus, for DeNCS Cortisol, for Holocron Toolset Submitter AxConsortium Submitted 05/23/2025 Category Mods TSLRCM Compatible Yes
-
This is not in any way your go-to modding tools, though perhaps closer to *amazing new discoveries*, lol - so I dropped it here. 🍻 So, this list of texts and numbers below -- //::////////////////////////////////////////////////////////////// //:: [TSL] PlaySound Utility Script //::////////////////////////////////////////////////////////////// //:: File Name : eb_playsound_wav //::////////////////////////////////////////////////////////////// /* Param1/P1 - Delay that will be applied before playing the sound string sSoundName - sTemplate of the Sound in the game files to play Created By : ebmar [based on OEI's implementation] Created On : May 05, 2020 Modified On : June 11, 2020 -- v1.0.0 Credits : JCarter426 -- Odyssey++ : Fred Tetra -- KotOR Tool : tk102 -- DLGEditor : Don Ho -- Notepad++ */ //::////////////////////////////////////////////////////////////// void main() { int nDelay = GetScriptParameter(1); string sSoundName = GetScriptStringParameter(); DelayCommand(IntToFloat(nDelay), PlaySound(sSoundName)); } - is an equivalent to a_playsndobj, a TSL's utility script that plays the sound objects indicated by tag passed in. On the other hand, instead of using the oTag of sound objects/UTS in the game-world like its older-brother, this will use the sString that it gets from the String Param of the DLG. To use it is fairly simple: Drop the compiled script/NCS to the Override folder Insert the script name [default eb_playsound_wav] to either Script #1/#2 field in the relevant node of the DLG Use P1 to determine the delay applied before playing the sound Use String Param to determine which sound to play, based on their template/file name Notes: In my experience using this script -which is in TSL, and not K1- PlaySound action can only play custom files that placed in the Override. I have tried with customs placed in StreamSounds but I can't seem get it to work. You might though, perhaps I was missing something You can't input decimals. I don't know what the legit term is but you can only insert integers/INT; something like 0, 1, or 2, and not FLOAT, like 0.2, 1.25, or 4.20. You can though - but not with this script and using the DLG as the medium Anyway, here's the compiled script if you don't feel like compiling yourself -- eb_playsound_wav.ncs Hope that helps anything of your projects, and may the Force be with you!