PoA_PRC8/_module/nss/gen_xp.nss

34 lines
654 B
Plaintext
Raw Permalink Normal View History

2022-10-07 14:20:31 -04:00
/*--------------------------------------------------------
Script Name: gen_xp
----------------------------------------------------------
Created By: Genisys(Guile)
Created On: 4/01/09
----------------------------------------------------------
This script is executed from these bioware scripts:
nw_c2_default7
To utilize simply place this function in the script after void main()
ExecuteScript("gen_xp", OBJECT_SELF);
----------------------------------------------------------*/
//Declare Prototypes
void CalculateReward(object oPC);
void main()
{
object oPC = GetLastKiller();
CalculateReward(oPC);
}
void CalculateReward(object oPC)
{
}