Added character deleter
Added character deleter. Updated aps_include. Updated NWNxEE. Boosted XP rewards. Added XP reward for skinnable creatures. Full compile. Updated release archive.
This commit is contained in:
@@ -2,8 +2,10 @@
|
||||
void main()
|
||||
{
|
||||
ExecuteScript("prc_npc_death", OBJECT_SELF);
|
||||
|
||||
|
||||
object oKiller = GetLastKiller();
|
||||
object oVictim = OBJECT_SELF;
|
||||
|
||||
int noleech = 0;
|
||||
int nClass = GetLevelByClass(CLASS_TYPE_COMMONER);
|
||||
int nAlign = GetAlignmentGoodEvil(OBJECT_SELF);
|
||||
@@ -18,9 +20,9 @@ void main()
|
||||
{
|
||||
SignalEvent(OBJECT_SELF, EventUserDefined(1007));
|
||||
}
|
||||
float BaseEXP = ((GetChallengeRating(OBJECT_SELF)*3.0)+5);
|
||||
float BonusEXP = GetChallengeRating(OBJECT_SELF)+5;
|
||||
float BaseMonEXP = BaseEXP;
|
||||
float BaseEXP = ((GetChallengeRating(oVictim)*5.0)+2);
|
||||
float BonusEXP = ((GetChallengeRating(oVictim)*2.0)+5);
|
||||
float BaseMonEXP = BaseEXP;
|
||||
int NumOfParty = 0;
|
||||
float PartyLevelSum = 0.0;
|
||||
object oPartyMember = GetFirstFactionMember(oKiller, TRUE);
|
||||
|
Reference in New Issue
Block a user