Leaderboard
Popular Content
Showing content with the highest reputation on 11/03/2018 in all areas
-
1 point
Version 1.1
334 downloads
Overview Odyssey++ is a set of user-defined languages for Notepad++. Based on Fancy Colors – NWScript support in text editors, Odyssey++ has been updated for the Odyssey Engine games Star Wars: Knights of the Old Republic and Star Wars: Knights of the Old Republic II – The Sith Lords. It seeks to replicate the basic features you’d expect from an integrated development environment, such as syntax highlighting and autocompletion, to make scripting for these games more convenient. When you write scripts using Odyssey++, the program will color-code everything you type and make suggestions based on terms specific to the NWScript language. Features Syntax Highlighting – Words are color-coded based on their role in the NWScript language. Data types, operators, functions, constants, labels, strings, and comments are assigned different colors. This makes it clearer how the parts of your code interact, making it clearer what your code is actually doing, and also helps you make sure you typed things correctly. Code Folding – Text contained within { braces } can be folded and unfolded again. This lets you hide clutter when reading your code and helps keep track of whether you’ve closed everything you’ve opened. { Autocompletion – As you type, you’ll get suggestions for functions, constants, and other terms in the NWScript language. If you choose one of these suggestions by hitting TAB or ENTER, the program will finish typing it for you. This will save you a few precious keystrokes and ensure you don’t misspell things. Parameter Hints – When you type a NWScript function, a window will pop up showing all of the function’s parameters, their default values, and a description of the function from the developer comments in nwscript.nss. File Association – Whenever you open or save a .nss file, Notepad++ will switch to one of Odyssey++’s user-defined languages. Games Supported Star Wars: Knights of the Old Republic Star Wars: Knights of the Old Republic II – The Sith Lords -
1 point
-
1 pointVery nicely done but you already know that as I recommended that you put it up here. I might have to update one of my mods as you gave me permission to use yours. When I'm done, you'll see it uploaded here with the proper credits added. Update: My new version of an old mod now using your texture is up now.
-
1 point
-
1 pointView File Odyssey++ Overview Odyssey++ is a set of user-defined languages for Notepad++. Based on Fancy Colors – NWScript support in text editors, Odyssey++ has been updated for the Odyssey Engine games Star Wars: Knights of the Old Republic and Star Wars: Knights of the Old Republic II – The Sith Lords. It seeks to replicate the basic features you’d expect from an integrated development environment, such as syntax highlighting and autocompletion, to make scripting for these games more convenient. When you write scripts using Odyssey++, the program will color-code everything you type and make suggestions based on terms specific to the NWScript language. Features Syntax Highlighting – Words are color-coded based on their role in the NWScript language. Data types, operators, functions, constants, labels, strings, and comments are assigned different colors. This makes it clearer how the parts of your code interact, making it clearer what your code is actually doing, and also helps you make sure you typed things correctly. Code Folding – Text contained within { braces } can be folded and unfolded again. This lets you hide clutter when reading your code and helps keep track of whether you’ve closed everything you’ve opened. { Autocompletion – As you type, you’ll get suggestions for functions, constants, and other terms in the NWScript language. If you choose one of these suggestions by hitting TAB or ENTER, the program will finish typing it for you. This will save you a few precious keystrokes and ensure you don’t misspell things. Parameter Hints – When you type a NWScript function, a window will pop up showing all of the function’s parameters, their default values, and a description of the function from the developer comments in nwscript.nss. File Association – Whenever you open or save a .nss file, Notepad++ will switch to one of Odyssey++’s user-defined languages. Games Supported Star Wars: Knights of the Old Republic Star Wars: Knights of the Old Republic II – The Sith Lords Submitter JCarter426 Submitted 11/01/2018 Category Modding Tools
-
1 pointI haven't been doing much modding over the last couple weeks because I've been working on this instead: It's a fully-functional user-defined language for Notepad++. It has syntax highlighting and auto-completion based on all the terms found in nwscript.nss. I've done all my coding over the last ten years with Notepad - the regular one - with none of these features, so I think it's pretty cool to have now. (The code I typed is garbage, though. I was just putting stuff down to show a few of the features and I forgot to assign the command to an object.)
-
1 point
-
1 point
-
1 pointIt's been almost exactly one year since I declared the first version of this mod as finished and started testing it. Well, I just fixed the last known bug! That means it's time for the next round of testing to make sure that I didn't screw anything up with the rather extensive bug-fixing after the first round. Once those tests are done, I obviously need to fix all bugs that were discovered and then I can finally get to the voice overs. It's been taking a long time but the mod is slowly getting to where I want it and that's where you come in: I need you guys to help me test this mod. This requires that you do a full playthrough of the game with some specific choices I need you to make. You cannot use other mods in this playthrough (except for texture mods) and I need you to report every issue you find. Keep in mind that the mod is not completed so there are probably several bugs and it will generally not be a polished experience. Also, playing through the game takes time and while I understand this, I don't want to wait a year for you to complete the game or maybe not complete it at all. If none of that discourages you, please send me a PM and I'll let you know what exactly I need. If you don't feel like playing through the game just for this but would still like to help, I could use someone to read through Juhani's party member dialog for me to check for inconsistencies and other errors. If you're interested to do this, send me a PM. Thanks for the interest in my mod, I'll keep you updated on the progress
-
1 pointFrom a quick sample, it looks like the K1 voice files have a fake header of 199 bytes. You can batch convert them with DD - http://www.chrysocome.net/dd (scroll to the bottom of the page). Put the source WAVs and DD in a folder together, open a command window (Start -> Run -> CMD), navigate to the folder, then put in this: for %F in (*.wav) do dd if=%~nF.wav of=%~nF.mp3 bs=1 skip=199That will trim the fake headers. If you want to turn it into a batch file instead, you need to change it slightly: for %%F in (*.wav) do dd if=%%~nF.wav of=%%~nF.mp3 bs=1 skip=199 pausePaste that into a text file, save it out as xxx.BAT, put it in the same folder as the files and double click. The "pause" at the end isn't strictly necessary, but it will leave the window open with a "press any key to continue" so you can see what happened. Edit: Or, if you want something where you can enter whatever number of bytes you want to trim, try this: @echo off set /p byteno="Please enter the number of bytes to trim from the header: " for %%F in (*.wav) do dd if=%%~nF.wav of=%%~nF.mp3 bs=1 skip=%byteno% pauseAlternatively, install Cygwin - https://www.cygwin.com/setup-x86.exe or https://www.cygwin.com/setup-x86_64.exe - making sure to enable XXD in the package list, download the bash scripts I linked to earlier, https://gist.github.com/shmerl/2cec6273ba25dd1486dd and https://gist.github.com/shmerl/30412cda5a5107132a1f, copy the K1 and TSL music files to separate folders under the Cygwin Home directory (e.g. \cygwin64\home\<username>\) and put the appropriate SH script in each. Now open a Cygwin terminal, navigate to the particular music folder (you can use CD to change directory, the same as DOS) and run the bash script using "./", for example, ./gog_kotor_extract_music.sh
-
0 points
2,605 downloads
This mod will add 3 playable male & 3 playable female Echani. It will also change the Echani Mercenaries on Manaan so that they look like Echani, instead of humans (wearing Echani Light Armor). Echani have silver hair, silver eyes, and children of the same parents all have the same face (like twins and triplets, only they are born at different times). The models that I used were comm_a_m, comm_w_m2, & N_BrejikH as well as n_tatcoma_f, n_tatcomw_f, & pfha01. Unfortunately, the 3 males and second female have a small flaw. If you equip goggle or a mask on them, it will not show up on the in-game model, but the stats will still apply to the character. Some players may prefer this, since most masks and goggles are klunky and unattractive. -
0 points