Call of Duty bo3: Mapping MP: Difference between revisions

From COD Modding & Mapping Wiki
Jump to navigation Jump to search
(11 intermediate revisions by the same user not shown)
Line 5: Line 5:


=== Clipping/Tool Textures ===
=== Clipping/Tool Textures ===
* [[Call of Duty bo3: Clipping Method1|Clipping Method #1]]


=== FXs ===
=== FXs ===
*[[Call of Duty bo3: FX Collisions|Make FXs collide with geo]]


=== Lights ===
=== Lights ===
Line 19: Line 23:


=== Dynamic Entities ===
=== Dynamic Entities ===
== Gametypes ==


=== Fracture ===
*[[Call of duty bo3: spinning models|Add spinning object to your map]]


* To add Fracture Gametype to your map you will need to add some location via script (X,Y and Z origins);
== Gametypes ==
* It uses DeathMatch spawns points (DM_SPAWN in Radiant) for player start / spawn
* To add the drop locations, add this in the function main() of your map GSC (located in /usermaps/mp_yourmap/scripts/mp/mp_yourmap.gsc):


<pre> // Stockpile hub points aka fracture deposit points
*[[Call of Duty bo3: MP Entities|Placing MP Entities]]
    level.cleanDepositPoints = Array ( ( x , y , z ),
*[[Call of duty bo3: Fracture|Fracture]]
                                    ( x , y , z ),
*[[Call of duty bo3: FreerunZ|FreerunZ]]
                                    ( x , y , z ),
                                    ( x , y , z ),
                                    ( x , y , z ),
                                    ( x , y , z ),
                                    ( x , y , z) );
</pre>


The example above has 7 drop points but you can add more. Replace the x,y,z coordinate by your own, found by dropping a script_origin in the map at ground level in Radiant (an FX will spawn there so dead on ground).
[[Category:BO3]]
 
[[Category:Modtools]]
* To test the Gametype you can use the Launcher command line argument and add this:
[[Category:Gametypes]]
 
+set_gametype clean


== Releasing a Map / Workshop ==
== Releasing a Map / Workshop ==


=== Minimap & Loadscreen ===
=== Minimap & Loadscreen ===
*[[Call of Duty bo3:Minimap|Minimap]]
*[[Call of Duty bo3:Loadscreen|Loadscreen]]


=== Readme and Workshop ===
=== Readme and Workshop ===

Revision as of 23:25, 4 September 2017