27.09.2012, 18:43
Quote:
You said "prevent",This won't prevent it if somebody said like an example:"OmG PlEzS HeLp!" It will just correct it and make it "Omg plezs help!" this is just a grammar corrector nothing else,you should correct and update your thread.
|
OT: pretty nice, though looking at your source code you do realize you can just use the characters in 'c' things instead of using it's direct ASCII value?
pawn Code:
new i = 65;
// OR
new i = 'A'; (A -> 65 in ASCII)