I can't do anything about particles now no time... Maybe later tonight


my function had a problem this should fix it. But please if you tell me what went wrong it helps track down the bug.

Code:
var time_passed_old =0 ;
var loop_count = 0;
var loop_lock =1;

 while(time_passed < 20)
   {
   	movie_camera1.pan -= 0.5*time_step;
   	time_passed += time_step/16;
        if(time_passed - time_passed_old > 0.5)
          {
             loop_count += 1;
             loop_lock = 0;
           }
        if(!loop_lock)
        {
        switch(loop_count)
          {
             case 1: 
             time_passed_old = time_passed;
             loop_lock =1;
             str_cat((location_info.pstring)[0],"o");
             break;

             case 2:
             time_passed_old = time_passed;
             loop_lock = 1;
             str_cat((location_info.pstring)[0],"c");
             break;
              
             // you should get the idea I don't have time to finish this snip //
             }
            }
        wait(1);
          }



you can replace str_cat with the str_cpy of course.

@Run thanks for the walk through.

Last edited by Malice; 06/19/13 20:33.