Fixed creature hak name, added more quest persistence. Co-Authored-By: Awetizmo <107700980+Awetizmo@users.noreply.github.com>
18 lines
458 B
Plaintext
18 lines
458 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: ra_take100gp.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Remove 100 GP from the PC
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220618
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
|
|
//:: Remove gold from the player
|
|
TakeGoldFromCreature(100, GetPCSpeaker(), FALSE);
|
|
}
|