RATDOG/_module/nss/ra_take200gp.nss

18 lines
458 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//:: ra_take200gp.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Remove 200 GP from the PC
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220618
//:://////////////////////////////////////////////
void main()
{
//:: Remove gold from the player
TakeGoldFromCreature(200, GetPCSpeaker(), FALSE);
}