Code:
function create_paddle_big()
{
   paddlebig_pan.flags |= SHOW; 
   paddlebig_pan.pos_x = "deine Startposition x";
   paddlebig_pan.pos_y = "deine Startposition y";
   while(is(paddlebig_pan,SHOW))
   {
      paddlebig_pan.pos_x += 2*time_step;
      paddlebig_pan.pos_y += 2*time_step;
      if ((paddlebig_pan.pos_x >= 931) || (paddlebig_pan.pos_y >= 664))        
      {
         paddlebig_pan.flags &= ~SHOW;
      }
      if ((paddlebig_pan.pos_y > right_pan.pos_y - 12) && (paddlebig_pan.pos_y < right_pan.pos_y + 96) && (paddlebig_pan.pos_x > 943) && (paddlebig_pan.pos_x < 955))
      {
         big_paddle();
         paddlebig_pan.flags &= ~SHOW;
      }
      wait(1);
   }
}
   

...
if (itemhilfe == 1) // wenn die itemhilfe kleiner oder gleich 10 ist, aktiviere das PaddleBig-Item
{
   create_paddle_big();
}



das Ganze musst du für alle Items machen. Die positionsänderung muss in einer while schleife sein.