Quest persistence work
Quest persistence work. Added new salamander model.
This commit is contained in:
22
_module/nss/cv_take_1000gp.nss
Normal file
22
_module/nss/cv_take_1000gp.nss
Normal file
@@ -0,0 +1,22 @@
|
||||
//::///////////////////////////////////////////////
|
||||
//:: 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);
|
||||
|
||||
}
|
Reference in New Issue
Block a user