I started editing my game and i notice it made the game alot "funnier" for me.. Here, im going to show you some of the things i have change within the game files.
[Walking Speed] I like my game fast.
Open the file livingentities.xml (towns folder/data)
First, look for this code in livingentities.xml
- Code: Select all
<citizenmale>
<type>CITIZEN</type>
<altGraphics>citizenmale2</altGraphics>
<altGraphics>citizenmale3</altGraphics>
<altGraphics>citizenmale4</altGraphics>
<altGraphics>citizenmale5</altGraphics>
<altGraphics>citizenmale6</altGraphics>
<attack>1d599+1700</attack>
<attackSpeed>5</attackSpeed>
<defense>1d599+1700</defense>
<healthPoints>1d599+1700</healthPoints>
<attackVerb esES="golpea">punches</attackVerb>
<attackVerbInfinitive esES="golpear">punch</attackVerbInfinitive>
<damage>1d59+170</damage>
<LOS>1d3+2</LOS>
<movePCT>1d4+3</movePCT>
<walkSpeed>60</walkSpeed>
<facingDirections>true</facingDirections>
<drop>
<item>corpse</item>
<PCT>100</PCT>
</drop>
</citizenmale>
Where you see
- Code: Select all
<walkSpeed>60</walkSpeed>
Change it too
- Code: Select all
<walkSpeed>200</walkSpeed>
So now we have change the male walkspeed, we need to change female walkspeed. Look for
- Code: Select all
<citizenfemale>
<type>CITIZEN</type>
<altGraphics>citizenfemale2</altGraphics>
<altGraphics>citizenfemale3</altGraphics>
<altGraphics>citizenfemale4</altGraphics>
<altGraphics>citizenfemale5</altGraphics>
<altGraphics>citizenfemale6</altGraphics>
<attack>1d599+1700</attack>
<attackSpeed>5</attackSpeed>
<defense>1d599+1700</defense>
<healthPoints>1d599+1700</healthPoints>
<attackVerb esES="patea">kicks</attackVerb>
<attackVerbInfinitive esES="patear">kick</attackVerbInfinitive>
<damage>1d59+170</damage>
<LOS>1d3+2</LOS>
<movePCT>1d4+3</movePCT>
<walkSpeed>60</walkSpeed>
<facingDirections>true</facingDirections>
<drop>
<item>corpse</item>
<PCT>100</PCT>
</drop>
</citizenfemale>
Where you see
- Code: Select all
<walkSpeed>60</walkSpeed>
Change it too
- Code: Select all
<walkSpeed>200</walkSpeed>
Now male and female has a walkspeed of 200! F>A>S>T>!
Note: Any armor equipped male/female, their walkspeed will become normal.

Stupid people are dangerous in large groups. Especially when we live in a world with water pockets in jungles.