Advertisement
Guest User

Untitled

a guest
Apr 5th, 2015
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.97 KB | None | 0 0
  1. myIndex = 0;
  2.             foreach (var myName in myTradeItems)
  3.             {
  4.                 if (myName == myCheck)
  5.                 {
  6.                     if (myIndex != 75)
  7.                     {
  8.                         theirIndex = 0;
  9.                     }
  10.                     foreach (var theirName in theirTradeItems)
  11.                     {
  12.                         if (theirName == theirCheck)
  13.                         {
  14.                             if (theirIndex == myIndex)
  15.                             {
  16.                                 break;
  17.                             }
  18.                         }
  19.                         else
  20.                         {
  21.                             theirIndex++;
  22.                             continue;
  23.                         }
  24.                     }
  25.                     continue;
  26.                 }
  27.                 else
  28.                 {
  29.                     myIndex++;
  30.                     continue;
  31.                 }
  32.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement