...can anyon explain what causes these errors?consol wrote:----------------------Z-----------------------
self = distiller_bomb
self.target (flak 88 or other) =
println "self.target.destroyed_model = " self.target.destroyed_model (global/obj_dm.scr, 31)
println "self.target.destroyed_model = " self.target^
^~^~^ Script Error: There are 0 entities with targetname ''. You are using a command that requires exactly one.
self.target.destroyed_model = NIL
println "self.target.target (collision entity) = " self.target.target (global/obj_dm.scr, 32)
println "self.target.target (collision entity) = " self.target^
^~^~^ Script Error: There are 0 entities with targetname ''. You are using a command that requires exactly one.
self.target.target (collision entity) = NIL
self.trigger_name = distiller_trigger
self.exploder_set = 1
self.explosion_fx = models/fx/fx_explosion.tik
self.explosion_sound = NIL
self.killarea = groundzero
----------------------Z-----------------------
self.target.collisionent = self.target.target (global/obj_dm.scr, 40)
self.target.collisionent = self.target^
^~^~^ Script Error: There are 0 entities with targetname ''. You are using a command that requires exactly one.
self.target.collisionent = self.target.target (global/obj_dm.scr, 40)
self.target^
^~^~^ Script Error: There are 0 entities with targetname ''. You are using a command that requires exactly one.
self.target notsolid (global/obj_dm.scr, 41)
self.target ^
^~^~^ Script Error: There are 0 entities with targetname ''. You are using a command that requires exactly one.
It looks like the bomb should have a target... what target would that be? This i someting I missed in my tytorial on objective bombs...

