Quote:
Originally Posted by Angel_Light
//#CLIENTSIDE
if (created) {
timeout = 0.05;
}
if (timeout) {
playermp = 100;
timeout = 0.05;
}
-_- Use brackets right
|
You don't need brackets after the if (created). I normally do the same when it's just one command following the statement. i.e.
PHP Code:
if (playerchats) setplayerprop #c,omg!;
Adding brackets to just one line when it's already easily understood is just a waste of time and space.