17 lines
480 B
Plaintext
17 lines
480 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName alteroflaw
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 1/10/2006 6:50:50 AM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
|
|
// Remove some gold from the player
|
|
TakeGoldFromCreature(500, GetPCSpeaker(), TRUE);
|
|
|
|
// Remove some xp from the player
|
|
GiveXPToCreature(GetPCSpeaker(), -500);
|
|
}
|