25 lines
724 B
Plaintext
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);
|
|
}
|