17 lines
466 B
Plaintext
17 lines
466 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName mared_give_gold
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7/15/2003 7:34:55 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
GiveGoldToCreature(GetPCSpeaker(), 75000);
|
|
|
|
// Give the speaker some XP
|
|
GiveXPToCreature(GetPCSpeaker(), 500);
|
|
|
|
}
|