LoT_PRC8/_module/nss/pgs_award_50xp.nss

25 lines
724 B
Plaintext
Raw Permalink Normal View History

2023-09-25 21:32:17 -04:00
//::///////////////////////////////////////////////
//:: 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);
}