LoT_PRC8/_module/nss/pgs_award_50xp.nss
Jaysyn904 ec287507a1 Initial upload
Initial upload.
2023-09-25 21:32:17 -04:00

25 lines
724 B
Plaintext

//::///////////////////////////////////////////////
//:: Name: pgs_award_50xp
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Attempt to award the targeted player with 50
experience points.
*/
//:://////////////////////////////////////////////
//:: Created By: Samius Maximus
//:: Created On:
//:://////////////////////////////////////////////
#include "inc_gsystem"
void main()
{
object oPlayer = GetPCSpeaker();
//--------------------------------------------
//Award the experience to the target player.
//--------------------------------------------
AwardTargetPlayerWithGuildXP (oPlayer, GetLocalObject (oPlayer,
"Object_Target"), 50);
}