PoA_PRC8/module/nss/gen_xp.nss
Jaysyn904 128e7e59a4 Initial upload
Initial upload
2022-10-07 14:20:31 -04:00

34 lines
654 B
Plaintext

/*--------------------------------------------------------
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)
{
}