Quote:
Originally Posted by Freaksken
See Tip 2 in my post in this thread.
EDIT:
You also forgot to uncomment this:
Код:
//#define FILTERSCRIPT
EDIT 2:
If you are using the same code for different cases, use this:
Код:
switch(...) {
case 3, 4, 5, 6, 7, 8, 9: {
...
}
}
|
Fixed TIP 2 on the other code. For your EDIT 2, I'm not using the code in the case that I feel I want a quick way to edit certain damage values per the weapon. Easier in the long run so I don't have to rewrite it entirely if I choose to change it again. Thanks for your indept tips though! VERY helpful.