Advertisement
xlrnxnlx

none

Aug 12th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.18 KB | None | 0 0
  1. private string getPlayerTeam()
  2. {
  3.     int s = getPlayerSlot( true );
  4.    
  5.     if( s >= 0 && s <=14 )
  6.     {
  7.         if( s % 2 == 0 )
  8.             return "blue";
  9.         else return "red";
  10.     }
  11.     return null;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement