The game unfortunately can't have more than 4 vehicles at once as it checks if it exceeds that value. This code sets the value it checks with to 255 instead of 4.
Advanced Explanation: Seems the spawn limit for vehicles is 2 bytes even though this file only has space for 1 byte. Another funny thing is that values bigger than 127 don't need this code because it compares the value as a signed integer. So typing 255 actually means you want 0xFFFF max vehicles instead of 0xFF. My website will not handle this case.
Code Explanation: The first line checks if its Vs mode, the second line sets the value of max possible vehicles to 255, and the third line is an endif
282A2C9C FF000001
002A2E45 000000FF
E2000001 00000000
The reversal weapon won't spawn even if its in the file. To fix that we set a flag to true. I also write custom code to allow the pickup to give one ammo instead of 0. The maximum amount of ammo is 3.
C2084D04 00000004
A0DE023A 38C60001
2C060003 41810008
38C00003 B0DE023A
887E01FA 00000000
This dropdown allows you to choose the map file to download and/or copy as a Gecko Code. Select "----" for the Gecko code to work on all maps.
Be warned of large file sizes! It might causes problems if it exceeds the file's normal length and Gecko Codes can only support so many lines at once!!!