18 lines
458 B
Plaintext
18 lines
458 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: 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);
|
||
|
}
|