Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
		
			
				
	
	
		
			30 lines
		
	
	
		
			872 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			872 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| //:://////////////////////////////////////////////
 | |
| //:: Change Shape - Start options conversation
 | |
| //:: prc_chngshp_opts
 | |
| //:://////////////////////////////////////////////
 | |
| /** @file
 | |
|     Starts the Change Shape Options dynamiv conversation.
 | |
| 
 | |
| 
 | |
|     @author Shane Hennessy
 | |
|     @date   Modified - 2006.10.08 - rewritten by Ornedan - modified by Fox
 | |
| */
 | |
| //:://////////////////////////////////////////////
 | |
| //:://////////////////////////////////////////////
 | |
| 
 | |
| //#include "prc_inc_shifting"
 | |
| #include "inc_dynconv"
 | |
| #include "prc_alterations"
 | |
| 
 | |
| 
 | |
| void main()
 | |
| {
 | |
|     object oPC = OBJECT_SELF;
 | |
|     
 | |
|     SetLocalInt(oPC, "ChangeShapeConfig", GetSpellId());
 | |
|     
 | |
|     if(GetSpellId() == SPELL_IRDA_CHANGE_SHAPE_OPTIONS)
 | |
|         IncrementRemainingFeatUses(oPC, FEAT_IRDA_CHANGE_SHAPE);
 | |
| 
 | |
|     StartDynamicConversation("prc_chngshp_conv", oPC, DYNCONV_EXIT_ALLOWED_SHOW_CHOICE, TRUE, FALSE, oPC);
 | |
| } |