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.
		
			
				
	
	
		
			23 lines
		
	
	
		
			463 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			463 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // Written by Stratovarius
 | |
| // Turns Bloodseeking Spell on and off.
 | |
| 
 | |
| void main()
 | |
| {
 | |
| 
 | |
|      object oPC = OBJECT_SELF;
 | |
|      string nMes = "";
 | |
| 
 | |
|      if(!GetLocalInt(oPC, "BloodSeeking"))
 | |
|      {    
 | |
| 	SetLocalInt(oPC, "BloodSeeking", TRUE);
 | |
|      	nMes = "*Blood Seeking Activated*";
 | |
|      }
 | |
|      else     
 | |
|      {
 | |
| 	// Removes effects
 | |
| 	DeleteLocalInt(oPC, "BloodSeeking");
 | |
| 	nMes = "*Blood Seeking Deactivated*";
 | |
|      }
 | |
| 
 | |
|      FloatingTextStringOnCreature(nMes, oPC, FALSE);
 | |
| } |