Skip to content

Commit

Permalink
add some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
oscar-broman committed Jul 10, 2012
1 parent c76da35 commit 377d035
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions gamemodes/modules/Demo/callbacks/OnGameModeInit.inc
Expand Up @@ -7,25 +7,32 @@
*/

{
// Set the gamemode's name to MODE_NAME and version information (from gamemodes/header.inc).
SetGameModeText(MODE_NAME " v" #SCRIPT_VERSION_MAJOR "." #SCRIPT_VERSION_MINOR "." #SCRIPT_VERSION_BUILD);

new pizza_place = CreateSpawnLocation(
// Spawn locations
new pizza_place, ammu_nation, container;

// Outside of pizza place in Blueberry
pizza_place = CreateSpawnLocation(
.interior = 0,
.x = 203.7050,
.y = -205.3500,
.z = 1.5781,
.rot = 180.0
);

new ammu_nation = CreateSpawnLocation(
// Outside of Ammu-Nation in Blueberry
ammu_nation = CreateSpawnLocation(
.interior = 0,
.x = 240.0390,
.y = -178.2970,
.z = 1.5781,
.rot = 90.0
);

new container = CreateSpawnLocation(
// On top of a container in Blueberry
container = CreateSpawnLocation(
.interior = 0,
.x = 164.0287,
.y = -239.0828,
Expand Down

0 comments on commit 377d035

Please sign in to comment.