2026/06/09 Update

Moved Player Tool check from Heartbeat to onEnter & onLevelup.
Added Trash Barrel to several areas.
Updated ms_name_inc
This commit is contained in:
Jaysyn904
2026-06-09 08:41:07 -04:00
parent 0c2162046d
commit 22d435b0f1
147 changed files with 9533 additions and 183 deletions

View File

@@ -0,0 +1,15 @@
// This script will destroy any item placed inside of the trash barrel.
// Place OnClosed of placeable.
// Created by Zunath on August 12, 2007
void main()
{
object oItem = GetFirstItemInInventory(OBJECT_SELF);
while (GetIsObjectValid(oItem))
{
DestroyObject(oItem);
oItem = GetNextItemInInventory(OBJECT_SELF);
}
}