Files
HeroesStone_PRC8/_module/nss/trgs_o2_gen_low.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

25 lines
749 B
Plaintext

//::///////////////////////////////////////////////
//:: Treasure Respawn and Generation Script
//:: trgs_02_gen_low
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Spawns consumables and gold of low value
based on the module respawn settings.
*/
//:://////////////////////////////////////////////
#include "nw_o2_coninclude"
#include "trgs_i0_respawn"
#include "x2_inc_compon"
// To modify this script, simply change the values of DoTreasureGeneration.
// TREASURECLASS = LOW|MEDIUM|HIGH
// TREASURETYPE = DISPOSABLES|AMMUNITION|GOLD|EQUIPMENT
void main()
{
craft_drop_placeable();
DoTreasureGeneration( GetLastOpener(), OBJECT_SELF, LOW, DISPOSABLES|GOLD );
ShoutDisturbed();
}