Jump to content

Home

Sith pregstige item pack


Recommended Posts

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

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

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

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...