Road Speed
#1



<p style="color:#1c1c1c;">
According to the (unmodded) code there are 3 speeds when people are walking:



<pre style="color:#1c1c1c;">
<code style="color:#222222;">float _slowSpeed = 0.75;
float _fastSpeed = 1.2;
float _fastestSpeed = 1.4;
</code></pre>

<p style="color:#1c1c1c;">
Slowspeed is walking on normal grassy ground, fastspeed is walking on a dirt road and fastestspeed is walking on a stone road



<p style="color:#1c1c1c;">
You can only have the 3 speeds, so in <abbr title="Colonial Charter">CC</abbr>, brick road is the same speed as stone road.



<p style="color:#1c1c1c;">
In <abbr title="Colonial Charter">CC</abbr>, we did bump up the road speeds a little bit:



<pre style="color:#1c1c1c;">
<code style="color:#222222;">float _slowSpeed = 0.75;
float _fastSpeed = 1.4;
float _fastestSpeed = 2.0;</code></pre>


In <abbr title="Colonial Charter">CC</abbr>, any road you can build for free is FastSpeed and any road that costs stone, brick or something else to build is FastestSpeed. 






View full article
  Reply