22 lines
527 B
Plaintext
22 lines
527 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName dissedthebear
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 3/7/2003 4:29:43 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_generic"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
// Remove some gold from the player
|
||
|
TakeGoldFromCreature(10000, GetPCSpeaker(), TRUE);
|
||
|
|
||
|
// Remove some xp from the player
|
||
|
GiveXPToCreature(GetPCSpeaker(), -15000);
|
||
|
|
||
|
|
||
|
|
||
|
}
|