ObjectExists
Author: KilledWhale
Added: 17. huhtikuuta 2011 kello 11.42
Edited: 17. huhtikuuta 2011 kello 11.42
Category: Objektit
Description
Funktio, jolla voit tarkistaa onko objekti olemassa. Objektiloopin vuoksi hyödyllinen lähinnä mavien metsästämiseen ja satunnaiseen debuggaukseen.
Code
Select all1 2 3 4 5 6 7 8 9 10 11 12 13 14 | a = MakeObject()
Repeat
If objectExists(a) Then DeleteObject a
Forever
Function objectExists(obj)
InitObjectList
Repeat
object = NextObject()
If object = obj Then Return True
If object = 0 Then Return False
Forever
EndFunction
|
Comments
Leave a comment
You must be logged in to comment.
#30 Sent by: Konstaduck, 3. helmikuuta 2012 kello 17.40
Yksinkertaisuus on hyvästä =D