In The Evasion you once again take control of Adrian Shephard set shortly after the nuclear bomb that devastated the Black Mesa Research Facility. The Evasion is a small map pack for Half-Life. Development started in July 2011 and thus far is going slow but surely. Despite some hiatuses I plan on finishing it this year.

tomantoman says

1/10 - Agree Disagree

- (BOOL)textView:(UITextView *)iTextView shouldChangeTextInRange:(NSRange)iRange replacementText:(NSString *)iText {
if (iText.length < 150) {
return YES;
}
iTextView.text = [iText substringToIndex:150];
return NO;
}