13 lines
424 B
Plaintext
13 lines
424 B
Plaintext
|
Scriptname _00E_A2_StarlingDummySpiderCleanupSC extends objectreference
|
||
|
{This script moves the scrap metal into which the Spider explodes to the Dump Marker. The cleanup of the markers that are used to place the scrap metal happens in _00E_A2_StarlingdummySpiderSC.}
|
||
|
|
||
|
Event OnUnload()
|
||
|
|
||
|
If bDone == false
|
||
|
self.MoveTo(_00E_NPCDumpMarker)
|
||
|
EndIf
|
||
|
|
||
|
EndEvent
|
||
|
|
||
|
ObjectReference Property _00E_NPCDumpMarker Auto
|
||
|
bool bDone = false
|