Quote:
Originally Posted by Hansrutger
Код:
SomeFunction(maybe, some, parameters);
{
SendClientMessage(maybe, COLOR_SOME, "Text");
}
Can make your compiler go bananas and you end up spending some great time on finding what the heck is wrong since the compiler just stops working. Eventually you see that you added an unnecessary semicolon to the function. Sadly this has happened to me in the past but I had forgotten what it was, luckily it didn't take way too long time figuring it out since I had been compiling frequently!
Protip: Compile as much as you can! :P
|
These things happen with me frequently, usually in format when i have too much parameters, sometimes i miss a comma, or some times a parenthesis. But, the major problem pawno gives irreleavent errors.