Advertisement
Guest User

callTimer

a guest
Mar 15th, 2015
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1. public static void callTimer(Player p, String colors, String spawner, String worlds)
  2.     {
  3.         Main.p = p;
  4.         colors = color;
  5.         spawner = spawn;
  6.         worlds = world;
  7.         System.out.println("TEST");
  8.         System.out.println(p.getName());
  9.         System.out.println(colors);
  10.         System.out.println(spawner);
  11.         System.out.println(worlds);
  12.         if(colors.equalsIgnoreCase("Red"))
  13.         {      
  14.             Main.running[0] = true;
  15.         }
  16.         if(colors.equals("Blue"))
  17.         {
  18.             Main.running[1] = true;
  19.         }
  20.         if(colors.equals("Green"))
  21.         {
  22.             Main.running[2] = true;
  23.         }
  24.         if(colors.equals("Black"))
  25.         {
  26.             Main.running[3] = true;
  27.         }
  28.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement