Biker gang

  • Thread starter Thread starter crazyrobban
  • Start date Start date
C

crazyrobban

Guest
Hi everyone,

Fantastic site, I was really happy when I found it.
But I have to admit, I am surprised that no one has asked for this before.

How come it's possible to have your gang look like bikers, but there's no way they can drive bikes?

And I'm wondering, would it be hard to mod the game to allow you to select a bike for the gang vehicle customization?

Other than that, it would be nice with more options for making your crew look more biker-like.

And yes, I've watched way to much Sons of Anarchy...

Thanks!
 
This was something I was able to add easily to GotR for SR2. Unfortunately, any new vehicle added in SR3 completely locks up the menu and game when you choose it from the list. I'm not sure why.

If anyone else wants to look at it, the file in question is gang_customization.xtbl in misc_tables.vpp_pc. The gang_vehicles section right below taunts and compliments should be where the new vehicles go. Here's the code for the bikes added which lock up the game on selection:
Code:
                    <Vehicle>
                        <Vehicle>bike_dirt01</Vehicle>
                        <Variant>ultimate</Variant>
                        </Vehicle>
                    <Vehicle>
                        <Vehicle>bike_exotic01</Vehicle>
                        <Variant>ultimate</Variant>
                        </Vehicle>
                    <Vehicle>
                        <Vehicle>bike_moped01</Vehicle>
                        <Variant>ultimate</Variant>
                        </Vehicle>
                    <Vehicle>
                        <Vehicle>bike_rocket02</Vehicle>
                        <Variant>average</Variant>
                        </Vehicle>
 
Back
Top