In meinem Player Code hab ich:
Code:
c_trace(player.x,your.x,IGNORE_ME|IGNORE_PASSABLE|ACTIVATE_SHOOT);


und auf eine Tür:
Code:
function shoot_event() 
{
  while (event_type == EVENT_SHOOT) 
  {
    {
               set (scanning_txt, VISIBLE);
               wait (1);
       }
       reset (scanning_txt, VISIBLE);
  }
}
action my_entity() 
{
//  my.ENABLE_SHOOT = ON;
  my.emask |= ENABLE_SHOOT;
  my.event = shoot_event;
}


ich dachte wenn ich die Tür sehe, wird der Text angezeigt

Last edited by rayp; 03/19/14 15:33. Reason: only added code-tags