View Single Post
  #1  
Old 03-01-2011, 02:12 AM
Astram Astram is offline
Era iPhone PR
Astram's Avatar
Join Date: Aug 2010
Posts: 324
Astram can only hope to improve
Send a message via AIM to Astram
Switch and case?

What does this mean, and how do I use it. Its in the end of my staff boots script?
PHP Code:
function onTimeOut()

{

 if (
this.staff_boots == "on")

  {

   for (
a=0a<4a++)

    {

     if (
keydown(a))

      {

       switch(
a)

        {

          case 
"0":

           
player.y-=this.speed;

           break;

          case 
"1":

           
player.x-=this.speed;

           break;

          case 
"2":

           
player.y+=this.speed;

           break;

          case 
"3":

           
player.x+=this.speed;

           break;

        }

      }

    }

  }

 
setTimer(0.05);


__________________
-Toad
The worlds biggest Toad fan...
Era iPhone FTW!


Reply With Quote