17 lines
464 B
Plaintext
17 lines
464 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName lostplayer_give
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 04/10/2003 23:24:11
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker some gold
|
||
|
GiveGoldToCreature(GetPCSpeaker(), 500);
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
GiveXPToCreature(GetPCSpeaker(), 1000);
|
||
|
|
||
|
}
|