Darth Rancorous Posted April 17, 2005 Share Posted April 17, 2005 I've started creating a mod that will give you items based on your sith prestige class. My goal is to have the items given to you by Kreia when you choose a sith class. So far I've finished the sith lord items and all of the sith assassin items except the robe. In order for me to continue I need to know what model the sith assassin uses (for some reason the ubese model is titled sith assassin 01) and what model the sith masters inside the freedon nadd's tomb uses? After I've finished with making the items for the sith lord, assassin, and marader (SP?) I'll release a demo of just the items and start working on the scripting. Link to comment Share on other sites More sharing options...
DarthRevan2102 Posted April 18, 2005 Share Posted April 18, 2005 sounds cool..... which robes will will be assigned to each prestige class? Link to comment Share on other sites More sharing options...
RevanA4 Posted April 18, 2005 Share Posted April 18, 2005 Originally posted by Darth Rancorous I've started creating a mod that will give you items based on your sith prestige class. My goal is to have the items given to you by Kreia when you choose a sith class. So far I've finished the sith lord items and all of the sith assassin items except the robe. In order for me to continue I need to know what model the sith assassin uses (for some reason the ubese model is titled sith assassin 01) and what model the sith masters inside the freedon nadd's tomb uses? After I've finished with making the items for the sith lord, assassin, and marader (SP?) I'll release a demo of just the items and start working on the scripting. err um redhalke has a prestige item's pack that gives you items based on the prestige class you choose Link to comment Share on other sites More sharing options...
Darth Rancorous Posted April 18, 2005 Author Share Posted April 18, 2005 I plan on having the sith lord have a normal looking robe. The assassin's robe will make the user look like a sith assassin and the marader's robe will look like one of the sith masters inside freedon Nadd's tomb on duxn. PS: I didn't know something like this was already made, but most of redhawks mods are too powerful (although there still good mods). My mod will be a bit more balanced where only skilled players will need the hardcore mod. Link to comment Share on other sites More sharing options...
RevanA4 Posted April 18, 2005 Share Posted April 18, 2005 you need to know scripting to pull this off and redhalke has the script source in his mod that i named above which will show you how to make here give them to you Link to comment Share on other sites More sharing options...
Darth Rancorous Posted April 19, 2005 Author Share Posted April 19, 2005 I'll have to ask him how he did it. Link to comment Share on other sites More sharing options...
RevanA4 Posted April 19, 2005 Share Posted April 19, 2005 Originally posted by Darth Rancorous I'll have to ask him how he did it. I assume that since he had the source with it he won't mind me posting it void main() { // Grab the Parameter. int nScriptNumber = GetScriptParameter( 1 ); object oPC=GetFirstPC(); // If Param = 0, then make him a Jedi Weaponmaster. if ( nScriptNumber == 0 ) { AddMultiClass (CLASS_TYPE_JEDIWEAPONMASTER, GetFirstPC () ); CreateItemOnObject("rh_robe_jwm", oPC); CreateItemOnObject("rh_robe_wht", oPC); CreateItemOnObject("g_dbl_wpnmstr001", oPC); CreateItemOnObject("g_mlk_wpnmstr001", oPC, 2); CreateItemOnObject("g_lng_wpnmstr001", oPC); CreateItemOnObject("color_wpnmstr_01", oPC, 3); CreateItemOnObject("u_l_wpnmstr_01", oPC, 3); } // If Param = 1, then make him a Jedi Watchman. if ( nScriptNumber == 1 ) { AddMultiClass (CLASS_TYPE_JEDIWATCHMAN, GetFirstPC () ); CreateItemOnObject("rh_robe_jw", oPC); CreateItemOnObject("rh_robe_wht", oPC); CreateItemOnObject("g_dbl_wtchmn001", oPC); CreateItemOnObject("g_lng_wtchmn001", oPC, 2); CreateItemOnObject("g_srt_wtchmn001", oPC); CreateItemOnObject("color_wtchmn_01", oPC, 3); CreateItemOnObject("u_l_wtchmn_01", oPC, 3); } // If Param = 2, then make him a Jedi Master. if ( nScriptNumber == 2 ) { AddMultiClass (CLASS_TYPE_JEDIMASTER, GetFirstPC () ); CreateItemOnObject("rh_robe_jm", oPC); CreateItemOnObject("rh_robe_wht", oPC); CreateItemOnObject("g_dbl_jedimst001", oPC); CreateItemOnObject("g_lng_jedimst001", oPC, 2); CreateItemOnObject("g_srt_jedimst001", oPC); CreateItemOnObject("color_jedimst_01", oPC, 3); CreateItemOnObject("u_l_jedimstr_01", oPC, 3); } // If Param = 3, then make him a Sith Marauder. if ( nScriptNumber == 3 ) { AddMultiClass (CLASS_TYPE_SITHMARAUDER, GetFirstPC () ); CreateItemOnObject("rh_robe_sm", oPC); CreateItemOnObject("dt_robe_vdr", oPC); CreateItemOnObject("g_dbl_sthmrdr001", oPC); CreateItemOnObject("g_mlk_sthmrdr001", oPC, 2); CreateItemOnObject("g_lng_sthmrdr001", oPC); CreateItemOnObject("color_sthmrdr_01", oPC, 3); CreateItemOnObject("u_l_sthmrdr_01", oPC, 3); } // If Param = 4, then make him a Sith Assassin. if ( nScriptNumber == 4 ) { AddMultiClass (CLASS_TYPE_SITHASSASSIN, GetFirstPC () ); CreateItemOnObject("rh_robe_sa", oPC); CreateItemOnObject("dt_robe_vdr", oPC); CreateItemOnObject("g_dbl_sthassn001", oPC); CreateItemOnObject("g_lng_sthassn001", oPC, 2); CreateItemOnObject("g_srt_sthassn001", oPC); CreateItemOnObject("color_sthassn_01", oPC, 3); CreateItemOnObject("u_l_sthassn_01", oPC, 3); } // If Param = 5, then make him a Sith Lord. if ( nScriptNumber == 5 ) { AddMultiClass (CLASS_TYPE_SITHLORD, GetFirstPC () ); CreateItemOnObject("rh_robe_sl", oPC); CreateItemOnObject("dt_robe_vdr", oPC); CreateItemOnObject("g_dbl_sthlrd001", oPC); CreateItemOnObject("g_lng_sthlrd001", oPC, 2); CreateItemOnObject("g_srt_sthlrd001", oPC); CreateItemOnObject("color_sthlrd_01", oPC, 3); CreateItemOnObject("u_l_sthlrd_01", oPC, 3); } } Link to comment Share on other sites More sharing options...
Darth Rancorous Posted April 22, 2005 Author Share Posted April 22, 2005 Argg... I can't find the sith assassin model. The only one titled sith assassin is actually a ubese. Does anyone know what the sith assassin modal is called? Link to comment Share on other sites More sharing options...
Darmoth Posted April 23, 2005 Share Posted April 23, 2005 Someone had list of them, 'unused armors' or such. I'll see if I can find the link for you. Link to comment Share on other sites More sharing options...
Darmoth Posted April 23, 2005 Share Posted April 23, 2005 This has pictures of the armor models, and it gives 'refference numbers' or whatever they're called about 2 or three posts down. http://www.lucasforums.com/showthread.php?s=&threadid=147459 Link to comment Share on other sites More sharing options...
Darth Rancorous Posted April 24, 2005 Author Share Posted April 24, 2005 Thanks that helps alot. Now that I have the script and the models it shouln't be long before I complete the mod. Link to comment Share on other sites More sharing options...
Darmoth Posted April 25, 2005 Share Posted April 25, 2005 Originally posted by Darth Rancorous Thanks that helps alot. Now that I have the script and the models it shouln't be long before I complete the mod. Woo! I call first dibs! Link to comment Share on other sites More sharing options...
RevanA4 Posted April 25, 2005 Share Posted April 25, 2005 Originally posted by Darth Rancorous Thanks that helps alot. Now that I have the script and the models it shouln't be long before I complete the mod. no problem Woo! I call first dibs! no i do Link to comment Share on other sites More sharing options...
Darth Rancorous Posted April 29, 2005 Author Share Posted April 29, 2005 How do you convert tga files to jpegs so I can finally post screen shots. Link to comment Share on other sites More sharing options...
Lorden Darkblade Posted April 29, 2005 Share Posted April 29, 2005 Originally posted by Darth Rancorous How do you convert tga files to jpegs so I can finally post screen shots. You need a program like PhotoShop, or any other program to modify pictures. Link to comment Share on other sites More sharing options...
stoffe Posted April 29, 2005 Share Posted April 29, 2005 Originally posted by Uchiha Itachi You need a program like PhotoShop, or any other program to modify pictures. Photoshop is rather expensive and getting it just to convert screenshots is like swatting a fly with a thermonuclear warhead. This program is a rather nice image viewer that can crop screenshots and save images in a variety of formats. And it's freeware. Link to comment Share on other sites More sharing options...
Darth Rancorous Posted May 7, 2005 Author Share Posted May 7, 2005 Thanks, I'll be posting screen shots soon, as well as the non-scripted items. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.