|
From: | Ronald Lamprecht |
Subject: | Re: [Enigma-devel] new level proposal rhythm of ...by mecke |
Date: | Wed, 12 Mar 2008 23:27:31 +0100 |
User-agent: | Thunderbird 2.0.0.12 (Windows/20080213) |
Hi, address@hidden wrote:
here is another level for you in order to test it.
O.k. - the ASCII mail with attachments do get posted!"rhythm of space" and your yet unpublished "enigmaparcour" do contain a small problem due to a bug in BBE105:
Horse actors are set by BBE with code like:
function ac_horse(x,y) n="" t1="" t2="" t3="" t4="" f=0 if (x==6) and (y==43) then n="ac6x43" t1="fl(101 101)" t2="fl(101 101)" t3="fl(101 101)" t4="fl(101 101)" f=0 end set_actor("ac-horse",x+0.5,y+0.5,{target1=t1,target2=t2,target3=t3,target4=t4,force=f,name=n})
Of course the used coordinates {101,101} are invalid. Enigma 1.0* did not complain about it. But Enigma 1.1* does by throwing an exception with a proper error message. Please delete the faulty, unused target definitions:
function ac_horse(x,y) n="" t1="" t2="" t3="" t4="" f=0 if (x==6) and (y==43) then n="ac6x43" f=0 end set_actor("ac-horse",x+0.5,y+0.5,{force=f,name=n})
Greets, Ronald
[Prev in Thread] | Current Thread | [Next in Thread] |