]> git.xonotic.org Git - xonotic/xonotic.wiki.git/blobdiff - Vehicles.md
Added HUD configuration section
[xonotic/xonotic.wiki.git] / Vehicles.md
index 618425225f7ba36212ddced1b3946dcc1b6e5ce7..6440d58a90e6c7639eaa737931dbf1c10fe1ee90 100644 (file)
@@ -2,7 +2,7 @@
 
 # About
 
-## General informatoin
+## General information
 
 Vehicles in Xonotic introduce new dynamics and fun in team play, especially Capture The Flag (CTF), compared to traditional vehicle-free games.
 
@@ -100,8 +100,51 @@ Its primary weapon is machine gun; the aiming direction is shown by the green re
 
 # Unofficial vehicles
 
+**This information is old, maybe there are things that are no longer stable.**
 On [some servers](Special-Servers), one may find experiment vehicles that are not official, such as tanks, helicopters, jets, etc. Please post your opinions on them in [Xonotic Official Forums](http://forums.xonotic.org).
 
+R22 Helicopter and LL48 Tank were used in the SMB modpack and were removed because these are no longer considered part of the core mod. Perhaps these were removed in October 2018.
+
+## Light APC
+
+<img src="uploads/a23dbba1f6aa6d1a272cb57855167dbe/Vehicle-lightapc.jpg" alt="Vehicle-lightapc" width="410"/>
+<br/>
+<img src="uploads/28ea75bd7555021facaf3c93d57cbded/Vehicle-lightapc-cockpit.jpg" alt="Vehicle-lightapc-cockpit" width="410"/>
+
+Up to three players can ride the Light APC, a large tank vehicle, at the same time.
+The first player will be the pilot, who can drive. It can keep more players inside too.
+
+<img src="uploads/85f12623125db9d1e86e8189d5b247ad/Vehicle-lightapc-thirdperson-view.jpg" alt="Vehicle-lightapc-thirdperson-view" width="510"/>
+
+The second player will be the front gunner. The third player will be the back gunner.
+When the pilot leaves Light APC, the second player becomes the pilot.
+There are no secondary weapons for any of the three riders in Light APC.
+
+## R22 Helicopter
+
+<img src="uploads/1576c847ebb254534127bd89cc28e504/Vehicle-r22helicopter.jpg" alt="Vehicle-r22helicopter" width="410"/>
+<br/>
+<img src="uploads/8283fe733167674cd1061fafa93da0a2/Vehicle-r22helicopter-cockpit.jpg" alt="Vehicle-r22helicopter-cockpit" width="410"/>
+
+The R22 Helicopter takes one pilot who can also operate two weapons. There are two different reticles for them. Only two players can ride the R22 Helicopter. The second player will be the cockpit, but this player won't do nothing, only will be the spectator of the vehicle inside and he can get out of the vehicle whenever he wants, the same for the pilot. 
+
+<img src="uploads/92d5842accfd071f8900b689591423df/Vehicle-r22helicopter-thirdperson-view.jpg" alt="Vehicle-r22helicopter-thirdperson-view" width="510"/>
+
+The primary weapon is machine gun and is shot toward the green reticle. The second weapon is remote-controlled missiles that target any nearby object that is around the front, is dropped onto the ground the green reticle is pointing at. The white reticle always points at the head of the vehicle. The green reticle is projected by the movement momentum of the vehicle. The movement controls are the same as [Raptor vehicle](Vehicles#raptor).
+
+## LL48 Tank
+
+<img src="uploads/d259518dd9c920f55b4813e4f9d92461/Vehicle-ll48tank.jpg" alt="Vehicle-ll48tank" width="410"/>
+<br/>
+<img src="uploads/8d007cfbdd179a15ad8d99e9cd18aa06/Vehicle-ll48tank-cockpit.jpg" alt="Vehicle-ll48tank-cockpit" width="410"/>
+
+LL48 Tank takes one rider. It walks on the ground and can jump from very high altitude while protecting the rider.
+
+<img src="uploads/60156ec99cc8e3514341fb69373e4680/Vehicle-ll48tank-thirdperson-view.jpg" alt="Vehicle-ll48tank-thirdperson-view" width="510"/>
+
+Its primary weapon is the HLAC; the aiming direction is shown by the orange reticle, which follows the front of the vehicle, it does the same as Light APC front gunner. The secondary weapon is the Tank Cannonball that are aimed with the red reticle, which always points to the front of the vehicle, reloading ammo takes a bit of time. Press SHIFT to move the secondary weapon down and press SPACE to move up.
+
+
 # Notes for mappers
 
 Vehicle class names for mappers:
@@ -111,6 +154,12 @@ Vehicle class names for mappers:
 - Raptor: "vehicle_raptor"
 - Spiderbot: "vehicle_spiderbot"
 
+Unofficial vehicle class names:
+
+- Light APC: "vehicle_lightapc"
+- R22 Helicopter: "vehicle_r22heli"
+- LL48 Tank: "vehicle_tankll48"
+
 # Notes for developers
 
 `Assault` needs testing, as far as i can tell it should work now.
@@ -119,3 +168,38 @@ Vehicle class names for mappers:
 
 Maps needed, `as` and `ctf` for now - i cant take this much further w/o play testing on a larger scale.
 
+**Official vehicles source codes are in this [directory](https://gitlab.com/xonotic/xonotic-data.pk3dir/-/tree/master/qcsrc/common/vehicles/vehicle).**
+
+There are unofficial vehicles source codes stored in the [SMB modpack](https://github.com/MarioSMB/modpack/tree/master/mod/common/vehicles).
+
+Some unofficial vehicles are in the jeff-modpack.
+
+Remember if you had them installed in the game, to activate those unofficial vehicles:
+
+`g_vehicles 1 // activate the vehicles in the game`
+
+`set g_vehicles_extra 1 // activate the unofficial vehicles in the game`
+
+`set g_vehicle_tankll48 1 // activate LL48 Tank vehicle in the game`
+
+`set g_vehicle_r22heli 1 // activate R22 Helicopter in the game`
+
+`set g_vehicle_lightapc 1 // activate Light APC in the game`
+
+`set g_vehicles_enter 0 // activate enter inside vehicle automatically instead pressing the key to enter inside`
+
+`set g_vehicles_vortex_damagerate 2`
+
+`set g_vehicle_r22heli_shield_regen 20 // energy regeneration quantity`
+
+`set g_vehicle_r22heli_shield 600 // energy shield`
+
+`set g_vehicle_r22heli_health_regen 15 // health regeneration quantity`
+
+`set g_vehicle_r22heli_speed_forward 2500 // R22 Helicopter speed when it's moving forward`
+
+`set g_vehicle_tankll48_health 3500 // LL48 Tank health quantity`
+
+`set g_vehicle_tankll48_cannon_damage 2000 // LL48 Tank Cannon damage quantity`
+
+It's recommended testing those vehicles in a map called **mars** and with mapinfo and entity files.
\ No newline at end of file