1 |
I doubt every small change will ever be documented in great detail.
|
1 |
I doubt every small change will ever be documented in great detail.
|
2 |
Since it seems somewhat common question...
|
2 |
Since it seems somewhat common question...
|
3 |
[b]How to look up balance chances:[/b]
|
3 |
[b]How to look up balance chances:[/b]
|
4 |
(for players, without previous knowledge, without installing anything)
|
4 |
(for players, without previous knowledge, without installing anything)
|
5 |
\n
|
5 |
\n
|
6 |
1) units files are stored in this folder
|
6 |
1) units files are stored in this folder
|
7 |
https://github.com/ZeroK-RTS/Zero-K/tree/master/units
|
7 |
https://github.com/ZeroK-RTS/Zero-K/tree/master/units
|
8 |
\n
|
8 |
\n
|
9 |
2) There is no file named "Dagger", so where to look at:
|
9 |
2) There is no file named "Dagger", so where to look at:
|
10 |
2.a) Use the search at top of the page, just type in "Dagger".
|
10 |
2.a) Use the search at top of the page, just type in "Dagger".
|
11 |
\n
|
11 |
\n
|
12 |
Sometimes code-store-web-sites remove/disable their search (because can be abused), so another way is:
|
12 |
Sometimes code-store-web-sites remove/disable their search (because can be abused), so another way is:
|
13 |
2.b) Go to http://zero-k.info/Static/UnitGuide & look up "Dagger"
|
13 |
2.b) Go to http://zero-k.info/Static/UnitGuide & look up "Dagger"
|
14 |
[img]http://manual.zero-k.info/unitpics/corsh.png[/img]
|
14 |
[img]http://manual.zero-k.info/unitpics/corsh.png[/img]
|
15 |
Its picture is named: corsh
|
15 |
Its picture is named: corsh
|
16 |
(does not alwas work, but often)
|
16 |
(does not alwas work, but often)
|
17 |
\n
|
17 |
\n
|
18 |
3) Click on
|
18 |
3) Click on
|
19 |
[url=https://github.com/ZeroK-RTS/Zero-K/blob/master/units/corsh.lua]units/corsh.lua[/url]
|
19 |
[url=https://github.com/ZeroK-RTS/Zero-K/blob/master/units/corsh.lua]units/corsh.lua[/url]
|
20 |
\n
|
20 |
\n
|
21 |
4) Click on button:
|
21 |
4) Click on button:
|
22 |
[url=https://github.com/ZeroK-RTS/Zero-K/commits/master/units/corsh.lua]"History"[/url]
|
22 |
[url=https://github.com/ZeroK-RTS/Zero-K/commits/master/units/corsh.lua]"History"[/url]
|
23 |
\n
|
23 |
\n
|
24 |
5) Click the (...) to expand the details. If dev has entered a decription to the change, you can just read it.
|
24 |
5) Click the (...) to expand the details. If dev has entered a decription to the change, you can just read it.
|
25 |
(Sometimes multiple files are changed at once, and description is a combination of that.)
|
25 |
(Sometimes multiple files are changed at once, and description is a combination of that.)
|
26 |
\n
|
26 |
\n
|
27 |
6) So on Nov 22, 2014 one can read:
|
27 |
6) So on Nov 22, 2014 one can read:
|
28 |
[quote]Dagger:
|
28 |
[quote]Dagger:
|
29 |
* Range 220 -> 205[/quote]
|
29 |
* Range 220 -> 205[/quote]
|
30 |
\n
|
30 |
\n
|
31 |
7) Sometimes the description is not very detailed:
|
31 |
7) Sometimes the description is not very detailed:
|
32 |
On Aug 8, 2014 it just reads:
|
32 |
On Aug 8, 2014 it just reads:
|
33 |
[quote]Sea Rework V2[/quote]
|
33 |
[quote]Sea Rework V2[/quote]
|
34 |
\n
|
34 |
\n
|
35 |
8) On right side, click the button with the
|
35 |
8) On right side, click the button with the
|
36 |
[url=https://github.com/ZeroK-RTS/Zero-K/commit/f7d56822ff1783c24f1ceba922cdd3ad3798db24#diff-8637d6cd2de0068b1bfec7b89f12c4cb]funny random numbers.[/url]
|
36 |
[url=https://github.com/ZeroK-RTS/Zero-K/commit/f7d56822ff1783c24f1ceba922cdd3ad3798db24#diff-8637d6cd2de0068b1bfec7b89f12c4cb]funny random numbers.[/url]
|
37 |
\n
|
37 |
\n
|
38 |
9) Now you see for units/corsh.lua what got changed, even without description:
|
38 |
9) Now you see for units/corsh.lua what got changed, even without description:
|
39 |
[quote]- sonarDistance = 300,
|
39 |
[quote]- sonarDistance = 300,
|
40 |
+ sonarDistance = 250,[/quote]
|
40 |
+ sonarDistance = 250,[/quote]
|
41 |
Most balance-relevant variable-names are self-explaining.
|
41 |
Most balance-relevant variable-names are self-explaining.
|
42 |
"red
minus"
means
deleted
line,
"green
plus"
means
new
line.
|
42 |
"red
minus"
means
deleted
line/old,
"green
plus"
means
new
line/new.
|
43 |
\n
|
43 |
\n
|
44 |
10) Repeat until balanced.
|
44 |
10) Repeat until balanced.
|