Advertisement
ktostam450

EE Snake

Jun 4th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  1.            if (m.Type == "b") //94 i 88
  2.           {
  3.                 whatblock = m.GetInt(3);
  4.                 whatblock2 = Convert.ToString(whatblock);
  5.                 whatblockx = m.GetInt(1);
  6.                 whatblockx2 = Convert.ToString(whatblockx);
  7.                whatblocky = m.GetInt(2);
  8.                 whatblocky2 = Convert.ToString(whatblocky);
  9.                 if (whatblock == 94)
  10.                 {
  11.                     Thread.Sleep(sped);
  12.                     con.Send(wkey, new object[] { 0, whatblockx, whatblocky, 88 });
  13.  
  14.                 }
  15.                 if (whatblock == 88)
  16.                 {
  17.                     Thread.Sleep(sped);
  18.                     con.Send(wkey, new object[] { 0, whatblockx, whatblocky, 0 });
  19.  
  20.                 }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement