17 lines
482 B
Plaintext
17 lines
482 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName rewardxp_mayor
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 10/22/2002 10:50:10 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker some gold
|
||
|
GiveGoldToCreature(GetPCSpeaker(), 100000);
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
GiveXPToCreature(GetPCSpeaker(), 50000);
|
||
|
|
||
|
}
|