-
Notifications
You must be signed in to change notification settings - Fork 44
Add boat spawner entries for downstream mission editing #194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: development
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -495,8 +495,53 @@ class vehicles { | |||||||||
| class vnx_b_air_ac119_04_01 { | ||||||||||
| tags[] = {"c119", "firesupport", "plane"}; | ||||||||||
| }; | ||||||||||
|
|
||||||||||
|
|
||||||||||
| ///////////////////////////////////////// | ||||||||||
| //THEY FLOAT NOW? THEY FLOAT NOW(BOATS)// | ||||||||||
| ///////////////////////////////////////// | ||||||||||
|
|
||||||||||
| // Large boats (all armed) | ||||||||||
| class vn_b_boat_05_01 { | ||||||||||
| tags[] = {"boat", "large", "mortar"}; | ||||||||||
| }; | ||||||||||
| class vn_b_boat_05_02 { | ||||||||||
| tags[] = {"boat", "large", "mortar"}; | ||||||||||
| }; | ||||||||||
| class vn_b_boat_06_01 { | ||||||||||
| tags[] = {"boat", "large", "40mm"}; | ||||||||||
| }; | ||||||||||
| class vn_b_boat_06_02 { | ||||||||||
| tags[] = {"boat", "large", "40mm"}; | ||||||||||
| }; | ||||||||||
|
|
||||||||||
| // Light boats (all armed and transport) | ||||||||||
| class vn_b_boat_10_01 { | ||||||||||
| tags[] = {"boat", "light", "armed", "m2"}; | ||||||||||
| }; | ||||||||||
| class vn_b_boat_09_01 { | ||||||||||
| tags[] = {"boat", "light", "armed", "m60"}; | ||||||||||
| }; | ||||||||||
| class vn_b_boat_11_01 { | ||||||||||
| tags[] = {"boat", "light", "armed", "mk18"}; | ||||||||||
| }; | ||||||||||
|
|
||||||||||
| // Small boats (all armed) | ||||||||||
| class vn_b_boat_12_01 { | ||||||||||
| tags[] = {"boat", "small", "m60"}; | ||||||||||
| }; | ||||||||||
| class vn_b_boat_13_01 { | ||||||||||
| tags[] = {"boat", "small", "mk18"}; | ||||||||||
| }; | ||||||||||
| }; | ||||||||||
|
|
||||||||||
|
|
||||||||||
|
|
||||||||||
|
|
||||||||||
|
|
||||||||||
|
|
||||||||||
|
|
||||||||||
|
|
||||||||||
| class spawn_point_types { | ||||||||||
| class light_transport { | ||||||||||
| name = "Light transport"; | ||||||||||
|
|
@@ -933,4 +978,63 @@ class spawn_point_types { | |||||||||
| }; | ||||||||||
| }; | ||||||||||
| }; | ||||||||||
|
|
||||||||||
| class boat_light { | ||||||||||
| name = "Light Boats"; | ||||||||||
|
Comment on lines
+982
to
+983
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are all STAB boats, so might make a bit more sense to have it like this
Suggested change
|
||||||||||
| RESPAWN_MEDIUM; | ||||||||||
|
|
||||||||||
| class categories { | ||||||||||
| class light_transport_m2 { | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. naming convention
Suggested change
|
||||||||||
| name = "STAB M2"; | ||||||||||
| icon = VEHICLE_ICON_BOAT; | ||||||||||
| include[] = { { "light", "boat", "m2" } }; | ||||||||||
| }; | ||||||||||
| class light_transport_m60 { | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. naming convention
Suggested change
|
||||||||||
| name = "STAB M60"; | ||||||||||
| icon = VEHICLE_ICON_BOAT; | ||||||||||
| include[] = { { "light", "boat", "m60" } }; | ||||||||||
| }; | ||||||||||
| class light_transport_mk18 { | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. naming convention
Suggested change
|
||||||||||
| name = "STAB MK18"; | ||||||||||
| icon = VEHICLE_ICON_BOAT; | ||||||||||
| include[] = { { "light", "boat", "mk18" } }; | ||||||||||
| }; | ||||||||||
| }; | ||||||||||
| }; | ||||||||||
|
|
||||||||||
| class boat_large { | ||||||||||
| name = "Large Boats"; | ||||||||||
|
Comment on lines
+1005
to
+1006
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are all nasty boats, so might make a bit more sense to have it like this
Suggested change
|
||||||||||
| WRECK_LONG; | ||||||||||
|
|
||||||||||
| class categories { | ||||||||||
| class large_boat_40mm { | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. naming convention
Suggested change
|
||||||||||
| name = "Nasty Boat-40mm"; | ||||||||||
| icon = VEHICLE_ICON_BOAT; | ||||||||||
| include[] = { { "large", "boat", "40mm" } }; | ||||||||||
| }; | ||||||||||
| class large_boat_mortar { | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. naming convention
Suggested change
|
||||||||||
| name = "Nasty Boat-Mortar"; | ||||||||||
| icon = VEHICLE_ICON_BOAT; | ||||||||||
| include[] = { { "large", "boat", "mortar" } }; | ||||||||||
| }; | ||||||||||
| }; | ||||||||||
| }; | ||||||||||
|
|
||||||||||
| class boat_small { | ||||||||||
| name = "Small Boats"; | ||||||||||
|
Comment on lines
+1023
to
+1024
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are all PBRs, so might make a bit more sense to have it like this
Suggested change
|
||||||||||
| RESPAWN_SHORT; | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PBRs have more firepower than the STAB rigs, so might make more sense to default them to a longer respawn time?
Suggested change
|
||||||||||
|
|
||||||||||
| class categories { | ||||||||||
| class small_transport { | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. naming convention
Suggested change
|
||||||||||
| name = "PBR M60"; | ||||||||||
| icon = VEHICLE_ICON_BOAT; | ||||||||||
| include[] = { { "small", "boat", "m60" } }; | ||||||||||
| }; | ||||||||||
| class small_transport_MK18 { | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. naming convention
Suggested change
|
||||||||||
| name = "PBR MK18"; | ||||||||||
| icon = VEHICLE_ICON_BOAT; | ||||||||||
| include[] = { { "small", "boat", "mk18" } }; | ||||||||||
| }; | ||||||||||
| }; | ||||||||||
| }; | ||||||||||
| }; | ||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removal of empty space