Also ich habe jezt mehrere Varianten ausprobiert, aber keine hat bisher funktioniert, hier die Syntaxbeispiele:

1.
Code:
PANEL sidebar
{
 flags = visible;
 if (mouse_ent != NULL)
 {
  bmap = bmap_for_entity(mouse_ent,1);
 }
}


FEHLER:
Quote:
<bmap=^bamp_for_entity(mouse_ent,1);>
GAME.WDL 37:2 Error(137): Bitmap unknown bmap_for_entity

Syntax Error sidebar


2.
Code:
function mouse_move()
{
 MOUSE_POS.X = POINTER.X;
 MOUSE_POS.Y = POINTER.Y;
 if (mouse_ent != NULL)
 {
  sidebar.bmap = bmap_for_entity(mouse_ent,1);
 }
 RETURN;
}


FEHLER:
Quote:
<sidebar.bmap=bmap_for_entity(mouse_ent,1)>
GAME:WDL 22:0 Error(58): Parameter unknown sidebar Keyword


Bin für jede Hilfe dankebar smile

MfG Usche