GiveXPToCreature()
Zephirius
Member Posts: 419
Having a hell of a time awarding a player with XP.
Tried RewardPartyXP() as well. No luck with either. Never had this problem before?
Tried RewardPartyXP() as well. No luck with either. Never had this problem before?
void main() { object oPC = GetPCSpeaker(); if (!GetIsPC(oPC)) return; if (GetItemPossessedBy(oPC, "GREY_RENDERS_HEAD")!= OBJECT_INVALID) { AddJournalQuestEntry("Friendly Fire", 2, oPC, FALSE, TRUE); GiveXPToCreature(oPC, 100); } }
0
Comments