15 lines
464 B
Plaintext
15 lines
464 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName cho_xp_give_good
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 13/07/2003 17:19:36
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker some XP
|
||
|
object oPC = GetPCSpeaker();
|
||
|
GiveXPToCreature(oPC, 5000);
|
||
|
AdjustAlignment(oPC, ALIGNMENT_GOOD, 50);
|
||
|
}
|