04.10.2014, 14:20
Quote:
Your script is clearly not the "best" and you should know that. Yes you can share your script and tell us its features, but you shouldn't say that other scripts are bad or "shitty", because it won't make yours sound better.
Besides, you should know the differences between this: Code:
if (a == 1) { } else if (a == 2) { } Code:
if (a == 1) { } if (a == 2) { } Code:
switch (a) { case 1: {} case 2: {} // ... } |