23 lines
527 B
Plaintext
23 lines
527 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: cv_take_1000gp.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Takes 1000 GP from the PC.
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Tolen
|
|
//:: Created On: 8/28/2005 10:06:04 PM
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
//:: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
|
|
//:: Remove 1000 gold from the PC
|
|
TakeGoldFromCreature(1000, oPC, FALSE);
|
|
|
|
}
|