All pastes #2069585 Raw Edit

Someone

public text v1 · immutable
#2069585 ·published 2011-05-26 19:10 UTC
rendered paste body
Function GetValidPlayerName(OtherPlayer:String) : String;
  Var
    PlayerName : String;
  Begin
    Repeat
      Readln(PlayerName);
      If PlayerName = '' OR PlayerName = OtherPlayer
        Then Write('That was not a valid name.  Please try again: ');
    Until PlayerName <> '' AND PlayerName <> OtherPlayer;
    GetValidPlayerName := PlayerName;
  End;