24 lines
606 B
Plaintext
24 lines
606 B
Plaintext
|
/*--------------------------------------------------------
|
||
|
|
||
|
Script Name: trashbarrel
|
||
|
----------------------------------------------------------
|
||
|
Created By: Genisys(Guile)
|
||
|
Created On: 2/09/09
|
||
|
----------------------------------------------------------
|
||
|
|
||
|
This script goes in the OnClose Event of a container, it
|
||
|
will destroy everything inside upon closing.
|
||
|
|
||
|
----------------------------------------------------------*/
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oMe = OBJECT_SELF;
|
||
|
object oItem = GetFirstItemInInventory(oMe);
|
||
|
while(GetIsObjectValid(oItem))
|
||
|
{
|
||
|
DestroyObject(oItem, 0.0f);
|
||
|
oItem = GetNextItemInInventory(oMe);
|
||
|
}
|
||
|
}
|