DEFENCE OF THE ANCIENTS

Size: px
Start display at page:

Download "DEFENCE OF THE ANCIENTS"

Transcription

1 DEFENCE OF THE ANCIENTS Assignment submitted in partial fulfillment of the requirements for the degree of MASTER OF TECHNOLOGY in Computer Science & Engineering by SURESH P Entry No. 2014MCS2144 TANMAY GUPTA Entry No. 2014MCS2145 Under the guidance of Dr. HUZUR SARAN Department of Computer Science and Engineering, Indian Institute of Technology Delhi. November 2014.

2 Certificate This is to certify that the assignment 3 DOTA Game being submitted by Suresh P and Tanmay Gupta as a part of the course CSP701 in Computer Science & Engineering is a record of bona fide work carried out by them under my guidance and supervision at the Department of Computer Science & Engineering. The work presented in this assignment has not been submitted elsewhere either in part or full, for the award of any other degree or diploma. Dr. Huzur Saran Department of Computer Science and Engineering Indian Institute of Technology, Delhi

3 Abstract The DOTA game is a strategy game which can be played as a multiplayer over the network or as a single player where the number of human players can be between 1 and 4. Rest of the players will be BOT. The 4 players will be divided into two teams (with 2 players in each team) namely Galacticos and Aracadians. Each of these teams defends their own regions as well as their temple and the team that is first successful to destroy the enemy team s Temple wins the game. Whole game depends on the hero and strategy choosen by the player that either to attack the temple or destroy the temple. Each hero has some attributes different from the other which make the game unique and there are items in the map to increase the ability.the game screen is divided horizontally into two parts. One of the parts contains the map and the other part displays the details about the player. The second part also contains details about the opposing player(s) including the image of the hero, its abilities and health.

4 Acknowledgments First and foremost, we thank to the Power of Almighty for showing us inner peace and for all blessings. Special gratitude to our Parents, for showing their support and love always. We like to acknowledge the constant support provided by the Course Coordinator Dr. Huzar Saran for his consistent motivation in pursuing our project. We express our sincere thanks to our seniors for providing us their valuable guidance, untiring patience and diligent encouragement during the entire span of this project. We extend our gratitude to our friends especially Kaleeswaran and we feel proud in sharing this success with friends, who helped directly or indirectly in completing this project successfully. SURESH P (2014MCS2144) TANMAY GUPTA (2014MCS2145)

5 Contents 1 Introduction 1 2 User Interface 2 3 Map 4 4 Hero 6 5 Item Items Magical Powers Game Game play BOTS Conclusion 13

6 List of Figures 2.1 Hero selection Game screen

7 List of Tables 5.1 Magical Power

8 Chapter 1 Introduction The DOTA game is a strategy game which can be played as a multiplayer over the network or as a single player where the number of human players can be between 1 and 4. Rest of the players are BOT. The 4 players are divided into two teams (with 2 players in each team) namely Galacticos and Aracadians. Each of these teams defends their own regions as well as their temple and the team that is first successful to destroy the enemy team s Temple wins the game. Whole game depends on the hero and strategy chosen by the player that either to attack the temple or destroy the temple.the game is designed in C++ and OpenGL, features of OpenGL is used to provide game graphics and also handling the mouse and keyboard. Each hero has some attributes different from the other which make the game unique and there are items in the map to increase the ability.the game screen is divided horizontally into two parts. One of the parts contains the map and the other part displays the details about the player. The second part also contains details about the opposing player(s) including the image of the hero, its abilities and health. User Interface is provided to allow user to pick his team and also the hero from the selected list of player. The user makes choices in the menus to pick his team and hero.

9 Chapter 2 User Interface DOTA game is played either as a single player game or multiplayer game. In both the format it requires lot of interactivity with the user. Interactivity is provided through keyboard and mouse. Right from the beginning of the game, a game selection prompt is there which allows user to play game either as a single player or multi player. User can go through the menu either through the mouse or by use of keyboard If user selects the multiplayer game he has the option to create server or to join the existing server. If user joins the game a menu is displayed in which he can enter the IP address of the server to whom he wants to connect to in order to join the game this input is taken through the keyboard. He can enter the game then by pressing enter. At any stage if user wants to go to the main menu, he can do so by clicking on the main menu button provided in every screen. Through main menu user can quit the game by clicking exit button or by pressing ESC key. Once user has entered into the game he can select team of his choice by clicking on the team icon. After that user is redirected to the Hero selection screen through which he can select the hero of his choice by simply clicking on the desired hero. Hero selection screen is divided horizontally to allow user to see the detail of each hero and accordingly a user can select his favourite Hero by comparing them through there ability and type. In the game user interacts with the game through both mouse and keyboard. User can move within the map through Right mouse click and can attack enemy team or temple and pick item through left mouse click. A user

10 3 Figure 2.1: Hero selection can activate and deactivate his hero magical power through SPACEBAR key. User can also pause the game or quit the game by pressing quit button on the right side the screen. On clicking the button a screen appears asking the user whether to resume game or quit game. Over all the game has great aesthetic sense which user will like and everywhere through the game user will find great interactivity while playing the game as well as moving in the game menu. c 2014, Indian Institute of Technology Delhi

11 Chapter 3 Map Game screen is divided into two parts horizontally, with one part containing the information about the attributes of hero, and the enemy team hero. The other part contains the map. The whole map is split into equal size rectangular imaginary tiles implemented as a set such that the tiles are arranged to form a grid. The map is divided into two regions along the diagonal. The region belonging to a team is only visible to itself, whereas the region of the other team is hidden with cloud. However, the war region (including the temples) is visible to both the teams. Each team has a spawn area from where the two players of the team starts and if killed while in the game, again starts the game from the spawn area. Map is divided in a set of rectangular tiles and only the portion of map where the tile is available the hero can move. Map contains obstacles like water, wooden logs, rocks, fires and trees. These obstacles are distributed in one-third of the player s region excluding the war zone and the spawn area. Both the regions are similar in terms of obstacles, spawn area, war zone and temple. The place where the obstacles are placed, Hero can not move there and if user clicks on the obstacle he will move to the nearby place where the obstacle is not present. At a time five items will be in a team s area so that the heroes can pick them up, until their bags become full. Each item is placed on a tile. There are random location on the temple where the item can appear, hero has to click on the item to reach at that place and then again left click to pick the item. In the game two temples occupy a set of tiles clicking on that region will decrease the health of the temple.

12 5 Within the map player moves in the shortest path possible. Shortest path algorithm is implemented using the Breadth first search. Shortest path is computed in the following manner given the starting and final position of the player. An Empty Queue is created. All the nodes in the map are mark as unvisited. If Queue becomes empty or if we cross the screen coordinates it returns null indicating that there is no shortest path. Otherwise we mark the node as visited and enqueue its adjacent nodes excluding the diagonal nodes into the Queue. This process is repeated until we find the shortest available node or the path is unreachable. Here we consider the distance of the feasible path from the start to destination. Finally We generate the stack from the node information stored during the shortest path computation. Finally when the shortest path is computed The hero within the map move towards the destination in the shortest path, in between if player clicks again at different location, again the shortest path is computed and hero moves towards the new destination.

13 Chapter 4 Hero There are 6 heroes in the game all with different abilities and uniqueness which gives user the options to compare and choose the Hero according to his/her liking. Out of the 6 heroes 3 have more defending abilities and they are tagged as defenders. Other 3 have more attacking abilities and they are tagged as attackers. User have the option to choose either both attackers or both defenders in his team or any other combination of player he/she wants. The Heroes with more attacking abilities are Maverick, Conjurer and Talisman and the Heroes with more defending abilities are Dante, Sting and Proteger. Each player can choose one among these 6 heroes. The two members of the team selects the hero and enters the game. Each hero has One unique magical power. An item bag that can contain maximum of three item at a time, by default at the start a hero has a default item in his bag, hero can add use item from his item bag while in the game. Out of the items available hero can use only one item at one time which he can select by clicking on the item on the side bar. Other than that each hero has ability to damage other team hero or the temple, Each hero has attack speed and movement speed and health point.

14 Chapter 5 Item The game includes items which can be picked by the hero in the map to increase his ability, different item in the map has different special attribute which can enhance the hero capability. All hero in the game has a default item from which they begin the game, while in the game hero has the choice to pick some item and go their temple and/or other s. In a map at a time there will be only 5 items available in the map, a hero can pick any of the item by simply going to the location where item is present and the clicking left mouse button over it. Hero has an item bag which can contain maximum of 3 items at a time and to use a item hero can click the item over the item in the bag and use it accordingly. If the item is attacking item then hero after selecting the item in the item bag has to click on other hero or the temple. Item that are available in the map are random and also the location of the item in the map is random so it gives a unique randomness to the game which make the game fun to play and quite enjoyable, as hero can adopt various strategy to win the game. Item in the game add and increase attribute to the hero by either increasing movement speed, attack speed, health, damage etc. Hero can select the item according to his or her requirement during the game. 5.1 Items Potion of Health The potion when picked will increase the health of the hero (who picked it) by 25

15 5.1 Items 8 Temple Healer This temple healer is used to fix the damages caused in the temple. Fixing the damaging will lead to increasing the health of the temple by 10 Speedy Shoes This item is used to increase the movement speed of the hero. picking, the shoes will remain with the hero for 20 units of time. After Feather of Fury This raises the attack speed of the heroes by 1 hit per unit time. Once picked, this item will last with the hero only for 5 units of time. Items that cause damage Spear of Devil When thrown over the target (temple or hero), it will have a damage and decrease their health by 10 War Hammer When hit by hammer, the impact will be more than hitting with bare hands. The damage will add up 20 Blade of Demise It is a sword that can be used to damage the target to a greater extent, which will increase the basic damage capability of the heroes by 10 Amazing Arrow and decrease its health by 3 When thrown on a target, it will cause a damage on it

16 5.2 Magical Powers 9 Armour of Indemnity This gives a protective layer to the heroes so that the attack has effect on the shield instead of having effect on the heroes themselves. Once the shield has lost its health, the shield will be destroyed and any further impact will be over the hero unless he picks another shield. The starting health of armour will be Magical Powers The following table gives the list of the available magic powers, duration for which they will be active after applying them and the duration between the successive usages of the magic power. Magic Power Active time Recovery time (units of time) (units of time) Burst Damage 2 15 Slower 3 15 Disabler 5 15 Stunner 1 20 Table 5.1: Magical Power

17 Chapter 6 Game Player can play this game either as single player that is with bots or with other human player that is by selecting the multiplayer mode. After selecting the team and hero of his liking the game will be played between two teams both containing two heroes each and both have to defend there temple and destroy the enemy temple before the other team destroy there temple. Game will get over one team destroys the temple of other 6.1 Game play If a user has selected a single player game then all the other heroes will be BOTS otherwise number of BOTS depend on the number of human player, if all the four are human player then no BOTS will be selected in any other case slot will be filled by the BOT. If in between one of the player leaves the game after some amount of time that place will be taken by the BOT and game will resume from the previous point. After the start of the game a hero can either first select the items and fill his item bag and then go to temple or he can directly go to his temple or the enemy team temple. Being a strategy game whole strategy depends on the hero what he wants to select either do a full on slaught attack on the other team temple or defend his temple. To attack a temple or a hero of other team, player has to click on the hero or temple by left mouse click, but for that first he has to reach at the location near to the temple or hero, which is the war zone, that is the zone where the other team hero are visible if they are available there, this location also contains the temple. The area of the other team other than the war zone is not visible to the player.

18 6.1 Game play 11 Figure 6.1: Game screen To move to a particular location, either to pick an item or attacking a hero or temple player has to click with right mouse button over the place where he wants to go. Over the side bar hero can see the details about his item in the item bag, his health as well as enemy players health to give him the idea what he can do. Also over the temple a health bar is there which depicts the current health of the temple. Each hero in the game has unique magical power associated with him, each magical power has some time over which it is active on the victim and once used over the enemy it takes some time to rejuvenate. Hero can use his magical power by pressing space bar, once hero presses the space bar he can see that in the Side bar that magical power is activated the next time he clicks with the left mouse button over the enemy team player, the magical power will be cast over the other player, but with burst damage magical power hero can click anywhere and power will be applicable over a radius and it can affect multiple player. while in the game player can quit at any time by clicking on the quit button and he will be replaced by the BOTS. c 2014, Indian Institute of Technology Delhi

19 6.2 BOTS BOTS As game can be played with BOTS they are coded so that the game still remains interesting and fair and enjoyable to play. BOTS are coded such that one of the BOT will go to defend his temple and the other BOT will go to attack the enemy team player. While moving towards the temple BOT can pick item in the path and BOT will use the item according to requirement. The BOT which is attacking the temple if an enemy team hero comes switches his attack to the other hero and if he kills the player, he again start attacking the temple. In the start of the game BOT are assigned random hero.

20 Chapter 7 Conclusion We have successfully developed a strategy game in C++ language and used OpenGL for providing graphics and keyboard and mouse handling. We have tried to include all the features that are required for a game to be interesting, fair, enjoyable as well as user friendly. The game is highly interactive in nature and is enjoyable to play. This game includes the networking feature to play in multiplayer. The game can be played in two mode single player with bots or in mulitplayer over network.

Gnome Wars User Manual

Gnome Wars User Manual Gnome Wars User Manual Contents Game Installation... 2 Running the Game... 2 Controls... 3 The Rules of War... 3 About the Game Screen... 3 Combat Progression... 4 Moving Gnomes... 5 Fighting... 5 Characters...

More information

The purpose of this document is to help users create their own TimeSplitters Future Perfect maps. It is designed as a brief overview for beginners.

The purpose of this document is to help users create their own TimeSplitters Future Perfect maps. It is designed as a brief overview for beginners. MAP MAKER GUIDE 2005 Free Radical Design Ltd. "TimeSplitters", "TimeSplitters Future Perfect", "Free Radical Design" and all associated logos are trademarks of Free Radical Design Ltd. All rights reserved.

More information

Table of Contents. TABLE OF CONTENTS 1-2 INTRODUCTION 3 The Tomb of Annihilation 3. GAME OVERVIEW 3 Exception Based Game 3

Table of Contents. TABLE OF CONTENTS 1-2 INTRODUCTION 3 The Tomb of Annihilation 3. GAME OVERVIEW 3 Exception Based Game 3 Table of Contents TABLE OF CONTENTS 1-2 INTRODUCTION 3 The Tomb of Annihilation 3 GAME OVERVIEW 3 Exception Based Game 3 WINNING AND LOSING 3 TAKING TURNS 3-5 Initiative 3 Tiles and Squares 4 Player Turn

More information

System Requirements...2. Installation...2. Main Menu...3. New Features...4. Game Controls...8. WARRANTY...inside front cover

System Requirements...2. Installation...2. Main Menu...3. New Features...4. Game Controls...8. WARRANTY...inside front cover TABLE OF CONTENTS This manual provides details for the new features, installing and basic setup only; please refer to the original Heroes of Might and Magic V manual for more details. GETTING STARTED System

More information

SUPER-COLLOSAL TITAN WARFARE

SUPER-COLLOSAL TITAN WARFARE Lokaverkefni 2017 Háskólinn í Reykjavík SUPER-COLLOSAL TITAN WARFARE user manual Hermann Ingi Ragnarsson Jón Böðvarsson Örn Orri Ólafsson table of Contents 1. System Requirements...3 Minimum System Requirements...

More information

Tower Defense. CSc 335 Fall Final Project

Tower Defense. CSc 335 Fall Final Project Tower Defense CSc 335 Fall 2013 - Final Project Overview RTS (Real-Time Strategy) games have become popular due to their demanding nature in requiring players to employ a long-term strategy with upkeep

More information

Spell Casting Motion Pack 8/23/2017

Spell Casting Motion Pack 8/23/2017 The Spell Casting Motion pack requires the following: Motion Controller v2.50 or higher Mixamo s free Pro Magic Pack (using Y Bot) Importing and running without these assets will generate errors! Why can

More information

Risk. CSc 335 Final Project

Risk. CSc 335 Final Project Risk CSc 335 Final Project Overview Risk is a popular board game of strategy that has been around since 1957 and is known throughout the world by a variety of names. The basis of the game is to conquer

More information

For more information on how you can download and purchase Clickteam Fusion 2.5, check out the website

For more information on how you can download and purchase Clickteam Fusion 2.5, check out the website INTRODUCTION Clickteam Fusion 2.5 enables you to create multiple objects at any given time and allow Fusion to auto-link them as parent and child objects. This means once created, you can give a parent

More information

Final Project Specification

Final Project Specification Rebellion Final Project Specification CSS 450 Fall 2010 Alexander Dioso Table of Contents Table of Contents Purpose Objective Objects Units Idle Move Attack Coerce Buildings Train Unit / Train All Remove

More information

BF2 Commander. Apply for Commander.

BF2 Commander. Apply for Commander. BF2 Commander Once you're in the game press "Enter" unless you're in the spawn screen and click on the "Squad" tab and you should see "Commander" with the option to apply for the commander, mutiny the

More information

User manual of Vairon's Wrath.

User manual of Vairon's Wrath. User manual of Vairon's Wrath. Vairon s Wrath Summary. Prologue. Description of the Hero 1. Before start 2. Viewing the main screen and the action bar 3. Using the keyboard 4. Hero's equipement 5. Life,

More information

Introduction Installation Switch Skills 1 Windows Auto-run CDs My Computer Setup.exe Apple Macintosh Switch Skills 1

Introduction Installation Switch Skills 1 Windows Auto-run CDs My Computer Setup.exe Apple Macintosh Switch Skills 1 Introduction This collection of easy switch timing activities is fun for all ages. The activities have traditional video game themes, to motivate students who understand cause and effect to learn to press

More information

Notes about the Kickstarter Print and Play: Components List (Core Game)

Notes about the Kickstarter Print and Play: Components List (Core Game) Introduction Terminator : The Board Game is an asymmetrical strategy game played across two boards: one in 1984 and one in 2029. One player takes control of all of Skynet s forces: Hunter-Killer machines,

More information

In the event that rules differ in the app from those described here, follow the app rules.

In the event that rules differ in the app from those described here, follow the app rules. In the event that rules differ in the app from those described here, follow the app rules. Setup In the app, select the number of players and the quest. Place the starting map tiles as displayed in the

More information

Steamalot: Epoch s Journey

Steamalot: Epoch s Journey Steamalot: Epoch s Journey Game Guide Version 1.2 7/17/2015 Risen Phoenix Studios Contents General Gameplay 3 Win conditions 3 Movement and Attack Indicators 3 Decks 3 Starting Areas 4 Character Card Stats

More information

Joshua Nuernberger DESMA 157A Eddo Stern Fall Marathon Running Game The Road Based on the Novel by Cormac McCarthy

Joshua Nuernberger DESMA 157A Eddo Stern Fall Marathon Running Game The Road Based on the Novel by Cormac McCarthy Joshua Nuernberger DESMA 157A Eddo Stern Fall 2010 Marathon Running Game The Road Based on the Novel by Cormac McCarthy THE ROAD GAME DESCRIPTION The near future -- gray skies, barren wastelands, and abandoned

More information

LATE 19 th CENTURY WARGAMES RULES Based on and developed by Bob Cordery from an original set of wargames rules written by Joseph Morschauser

LATE 19 th CENTURY WARGAMES RULES Based on and developed by Bob Cordery from an original set of wargames rules written by Joseph Morschauser LATE 19 th CENTURY WARGAMES RULES Based on and developed by Bob Cordery from an original set of wargames rules written by Joseph Morschauser 1. PLAYING EQUIPMENT The following equipment is needed to fight

More information

VARIANT: LIMITS GAME MANUAL

VARIANT: LIMITS GAME MANUAL VARIANT: LIMITS GAME MANUAL FOR WINDOWS AND MAC If you need assistance or have questions about downloading or playing the game, please visit: triseum.echelp.org. Contents INTRODUCTION... 1 MINIMUM SYSTEM

More information

Introduction Choose and Tell: Legends

Introduction Choose and Tell: Legends Introduction This beautifully illustrated story program allows the learner to select a legendary hero and create their own adventure. This CD takes your learners on a magical adventure based on legends

More information

Star Defender. Section 1

Star Defender. Section 1 Star Defender Section 1 For the first full Construct 2 game, you're going to create a space shooter game called Star Defender. In this game, you'll create a space ship that will be able to destroy the

More information

2014 One-bit Punch ABOUT

2014 One-bit Punch ABOUT 2014 One-bit Punch Shadowcrypt is a challenging arcade game of tactical sword & shield combat. Quick reflexes, timing, and keen observation of enemies are key to survive the deadly catacomb! You play as

More information

NWN ScriptEase Tutorial

NWN ScriptEase Tutorial Name: Date: NWN ScriptEase Tutorial ScriptEase is a program that complements the Aurora toolset and helps you bring your story to life. It helps you to weave the plot into your story and make it more interesting

More information

This board game adaptation of Team Fortress 2 puts two players controlling 6 Team Fortress 2 class units from Team RED and Team BLU against each

This board game adaptation of Team Fortress 2 puts two players controlling 6 Team Fortress 2 class units from Team RED and Team BLU against each 1 2 This board game adaptation of Team Fortress 2 puts two players controlling 6 Team Fortress 2 class units from Team RED and Team BLU against each other in a battle for Capture Points. Team RED defends

More information

20 LINES CREDITS PER LINE

20 LINES CREDITS PER LINE VINTAGE GAME RULES VINTAGE is a 5-reel, 20-payline slots game based on the popular show Vintage by Gregory Charles. Vintage features a wild symbol and 3 bonus features with novel ways to win! Betting Limits

More information

CONTENTS. 1. Number of Players. 2. General. 3. Ending the Game. FF-TCG Comprehensive Rules ver.1.0 Last Update: 22/11/2017

CONTENTS. 1. Number of Players. 2. General. 3. Ending the Game. FF-TCG Comprehensive Rules ver.1.0 Last Update: 22/11/2017 FF-TCG Comprehensive Rules ver.1.0 Last Update: 22/11/2017 CONTENTS 1. Number of Players 1.1. This document covers comprehensive rules for the FINAL FANTASY Trading Card Game. The game is played by two

More information

Getting Started with Panzer Campaigns: Budapest 45

Getting Started with Panzer Campaigns: Budapest 45 Getting Started with Panzer Campaigns: Budapest 45 Welcome to Panzer Campaigns Budapest 45. In this, the seventeenth title in of the Panzer Campaigns series of operational combat in World War II, we are

More information

04. Two Player Pong. 04.Two Player Pong

04. Two Player Pong. 04.Two Player Pong 04.Two Player Pong One of the most basic and classic computer games of all time is Pong. Originally released by Atari in 1972 it was a commercial hit and it is also the perfect game for anyone starting

More information

Emoji Planet Video Slot Game Rules

Emoji Planet Video Slot Game Rules Emoji Planet Video Slot Game Rules Emoji Planet Video Slot is a 6-reel, 5-row video slot with the Cluster Pays mechanics. The game boasts of the Avalanche Feature, Wild and Sticky Wild substitutions, and

More information

CONCEPTS EXPLAINED CONCEPTS (IN ORDER)

CONCEPTS EXPLAINED CONCEPTS (IN ORDER) CONCEPTS EXPLAINED This reference is a companion to the Tutorials for the purpose of providing deeper explanations of concepts related to game designing and building. This reference will be updated with

More information

Welcome to the Sudoku and Kakuro Help File.

Welcome to the Sudoku and Kakuro Help File. HELP FILE Welcome to the Sudoku and Kakuro Help File. This help file contains information on how to play each of these challenging games, as well as simple strategies that will have you solving the harder

More information

Vectrex Dark Tower. The games are as follows: Skill Level Keys Provided. Vectrex Dark Tower

Vectrex Dark Tower. The games are as follows: Skill Level Keys Provided. Vectrex Dark Tower Vectrex Dark Tower The Dark Tower Vectrex game (circa 1983) was based on the electronic board game of the same name, but never commercially released. A single prototype was found, and an image of the ROM

More information

LATE 19 th CENTURY WARGAMES RULES Based on and developed by Bob Cordery from an original set of wargames rules written by Joseph Morschauser

LATE 19 th CENTURY WARGAMES RULES Based on and developed by Bob Cordery from an original set of wargames rules written by Joseph Morschauser LATE 19 th CENTURY WARGAMES RULES Based on and developed by Bob Cordery from an original set of wargames rules written by Joseph Morschauser 1. PLAYING EQUIPMENT The following equipment is needed to fight

More information

Kodu Game Programming

Kodu Game Programming Kodu Game Programming Have you ever played a game on your computer or gaming console and wondered how the game was actually made? And have you ever played a game and then wondered whether you could make

More information

A video game by Nathan Savant

A video game by Nathan Savant A video game by Nathan Savant Elevator Pitch Mage Ball! A game of soccer like you've never seen, summon walls, teleport, and even manipulate gravity in an intense multiplayer battle arena. - Split screen

More information

NWN Toolset Module Construction Tutorial

NWN Toolset Module Construction Tutorial Name: Date: NWN Toolset Module Construction Tutorial Your future task is to create a story that people will not only be able to read but explore using the Neverwinter Nights (NWN) computer game. Before

More information

Hero Dungeon: Hell Mode

Hero Dungeon: Hell Mode Hero Dungeon: Hell Mode Hero Dungeon: How to Enter Hero Dungeon: Quests Hero Dungeon: Burden System Hero Dungeon: Equipment Specifications Hero Dungeon: Drops Hero Dungeon: Dismantling Hero Dungeon: Trade

More information

Primo Victoria. A fantasy tabletop miniatures game Expanding upon Age of Sigmar Rules Compatible with Azyr Composition Points

Primo Victoria. A fantasy tabletop miniatures game Expanding upon Age of Sigmar Rules Compatible with Azyr Composition Points Primo Victoria A fantasy tabletop miniatures game Expanding upon Age of Sigmar Rules Compatible with Azyr Composition Points The Rules Creating Armies The first step that all players involved in the battle

More information

SimSE Player s Manual

SimSE Player s Manual SimSE Player s Manual 1. Beginning a Game When you start a new game, you will see a window pop up that contains a short narrative about the game you are about to play. It is IMPERATIVE that you read this

More information

Fairytale Legends: Hansel and Gretel Game Rules

Fairytale Legends: Hansel and Gretel Game Rules Fairytale Legends: Hansel and Gretel Game Rules Fairytale Legends: Hansel and Gretel is a 5-reel, 3-row video slot with Random Features, Bonus Features, Free Spins, Stacked Wild Re-Spins and Wild Substitutions.

More information

facewho? Requirements Analysis

facewho? Requirements Analysis facewho? Requirements Analysis Prompt Facebook Log in Select Opponent / Send Game Invite Respond to Invite / Start Game Flip Game Tile Expand Image / Make Guess Send Question Respond to Question Exit Index

More information

Introduction. Contents

Introduction. Contents Introduction Side Quest Pocket Adventures is a dungeon crawling card game for 1-4 players. The brave Heroes (you guys) will delve into the dark depths of a random dungeon filled to the brim with grisly

More information

Importing and processing gel images

Importing and processing gel images BioNumerics Tutorial: Importing and processing gel images 1 Aim Comprehensive tools for the processing of electrophoresis fingerprints, both from slab gels and capillary sequencers are incorporated into

More information

Band New guild creation Less than 10 players in a guild. Order 10 or more players in a guild Guild monument was destroyed

Band New guild creation Less than 10 players in a guild. Order 10 or more players in a guild Guild monument was destroyed Purpose of guilds Player's owned organization to collaborate and work together. Additional functions become available as guild level increases. Guild management is available both from an external browser

More information

Getting Started with Modern Campaigns: Danube Front 85

Getting Started with Modern Campaigns: Danube Front 85 Getting Started with Modern Campaigns: Danube Front 85 The Warsaw Pact forces have surged across the West German border. This game, the third in Germany and fifth of the Modern Campaigns series, represents

More information

Play by . Board Gaming System. for Windows. CyberBoard Play Program Module User Guide

Play by  . Board Gaming System. for Windows. CyberBoard Play Program Module User Guide Play by e-mail Board Gaming System for Windows By Dale Larson CyberBoard Play Program Module User Guide By Chris Fawcett Page 2 of 30 Table of Contents What is CyberBoard?...3 What are its Features?...3

More information

Educational Technology Lab

Educational Technology Lab Educational Technology Lab National and Kapodistrian University of Athens School of Philosophy Faculty of Philosophy, Pedagogy and Philosophy (P.P.P.), Department of Pedagogy Director: Prof. C. Kynigos

More information

Era of Mages User Manual

Era of Mages User Manual Era of Mages User Manual Early draft ($Date: 2002/01/07 15:32:42 $,$Revision: 1.1 $) Frank CrashChaos Raiser Era of Mages User Manual: Early draft ($Date: 2002/01/07 15:32:42 $,$Revision: 1.1 $) by Frank

More information

Silhouette Connect Layout... 4 The Preview Window... 5 Undo/Redo... 5 Navigational Zoom Tools... 5 Cut Options... 6

Silhouette Connect Layout... 4 The Preview Window... 5 Undo/Redo... 5 Navigational Zoom Tools... 5 Cut Options... 6 user s manual Table of Contents Introduction... 3 Sending Designs to Silhouette Connect... 3 Sending a Design to Silhouette Connect from Adobe Illustrator... 3 Sending a Design to Silhouette Connect from

More information

Toothbrush Holder. A drawing of the sheet metal part will also be created.

Toothbrush Holder. A drawing of the sheet metal part will also be created. Prerequisite Knowledge Previous knowledge of the following commands is required to complete this lesson; Sketch (Line, Centerline, Circle, Add Relations, Smart Dimension,), Extrude Boss/Base, and Edit

More information

Frontier/Modern Wargames Rules

Frontier/Modern Wargames Rules Equipment: Frontier/Modern Wargames Rules For use with a chessboard battlefield By Bob Cordery Based on Joseph Morschauser s original ideas The following equipment is needed to fight battles with these

More information

Solid Part Four A Bracket Made by Mirroring

Solid Part Four A Bracket Made by Mirroring C h a p t e r 5 Solid Part Four A Bracket Made by Mirroring This chapter will cover the following to World Class standards: Sketch of a Solid Problem Draw a Series of Lines Finish the 2D Sketch Extrude

More information

REFERENCE CARD. Welcome to the Early Beta and Thank You for Your Continued Support!

REFERENCE CARD. Welcome to the Early Beta and Thank You for Your Continued Support! REFERENCE CARD Welcome to the Early Beta and Thank You for Your Continued Support! As we get further into development, we will, of course, have tutorials explaining all of Wasteland 2 s features, but for

More information

**IT IS STRONGLY RECOMMENDED THAT YOU WATCH THE HOW-TO VIDEOS (BY PROF. SCHULTE-GRAHAME), POSTED ON THE COURSE WEBSITE, PRIOR TO ATTEMPTING THIS LAB

**IT IS STRONGLY RECOMMENDED THAT YOU WATCH THE HOW-TO VIDEOS (BY PROF. SCHULTE-GRAHAME), POSTED ON THE COURSE WEBSITE, PRIOR TO ATTEMPTING THIS LAB **IT IS STRONGLY RECOMMENDED THAT YOU WATCH THE HOW-TO VIDEOS (BY PROF. SCHULTE-GRAHAME), POSTED ON THE COURSE WEBSITE, PRIOR TO ATTEMPTING THIS LAB GETTING STARTED Step 1. Login to your COE account with

More information

Photoshop CS2. Step by Step Instructions Using Layers. Adobe. About Layers:

Photoshop CS2. Step by Step Instructions Using Layers. Adobe. About Layers: About Layers: Layers allow you to work on one element of an image without disturbing the others. Think of layers as sheets of acetate stacked one on top of the other. You can see through transparent areas

More information

High Point Communications Authorized dealer for USA Fleet Services

High Point Communications Authorized dealer for USA Fleet Services Summary of Display Features Idle Alert - Idle alerts can be sent every 10 minutes (up to 60 minutes) Stop Duration Alert Stop Duration alerts can be sent every 10 minutes (up to 60 minutes), after 24 hours,

More information

Module 1 Introducing Kodu Basics

Module 1 Introducing Kodu Basics Game Making Workshop Manual Munsang College 8 th May2012 1 Module 1 Introducing Kodu Basics Introducing Kodu Game Lab Kodu Game Lab is a visual programming language that allows anyone, even those without

More information

Tonight you sit quietly in a dark corner of the Inn s large common room, with a cup of ale and a piece of hard, brown bread in front of you.

Tonight you sit quietly in a dark corner of the Inn s large common room, with a cup of ale and a piece of hard, brown bread in front of you. For 2-5 players ages 4+, including at least one adult Average game time: 30-40 minutes for one map level Heroes & Treasure is a fantasy role-playing game system that can be used with a number of different

More information

Introduction to CATIA V5

Introduction to CATIA V5 Introduction to CATIA V5 Release 17 (A Hands-On Tutorial Approach) Kirstie Plantenberg University of Detroit Mercy SDC PUBLICATIONS Schroff Development Corporation www.schroff.com Better Textbooks. Lower

More information

Student + Instructor:

Student + Instructor: BLUE boxed notes are intended as aids to the lecturer RED boxed notes are comments that the lecturer could make Show 01 Solid Modeling Intro slides quickly. SolidWorks Layout slides are on EEIC for reference

More information

Introduction to Turtle Art

Introduction to Turtle Art Introduction to Turtle Art The Turtle Art interface has three basic menu options: New: Creates a new Turtle Art project Open: Allows you to open a Turtle Art project which has been saved onto the computer

More information

Experiment 1 Half-wave dipole

Experiment 1 Half-wave dipole Experiment 1 Half-wave dipole In this work we will simulate a half-wave antenna in free space, comparing the results obtained via the simulation with the theoretical ones. We will analyze the variations

More information

READ THIS FIRST, IF YOU HAVE NEVER PLAYED THE GAME BEFORE! World of Arch, First Days of Survival F.A.Q.

READ THIS FIRST, IF YOU HAVE NEVER PLAYED THE GAME BEFORE! World of Arch, First Days of Survival F.A.Q. READ THIS FIRST, IF YOU HAVE NEVER PLAYED THE GAME BEFORE! World of Arch, First Days of Survival F.A.Q. Q: How do I pick up an item? A: First you go on top of the item you wish to pick and perform a left

More information

Comprehensive Rules Document v1.1

Comprehensive Rules Document v1.1 Comprehensive Rules Document v1.1 Contents 1. Game Concepts 100. General 101. The Golden Rule 102. Players 103. Starting the Game 104. Ending The Game 105. Kairu 106. Cards 107. Characters 108. Abilities

More information

Cannon Ball User Manual

Cannon Ball User Manual Cannon Ball User Manual Darrell Westerinen Jae Kim Youngwouk Youn December 9, 2008 CSS 450 Kelvin Sung Cannon Ball: User Manual Page 2 of 8 Table of Contents GAMEPLAY:... 3 HERO - TANK... 3 CANNON BALL:...

More information

Using the Desktop Recorder

Using the Desktop Recorder Mediasite Using the Desktop Recorder Instructional Media publication: 09-Students 9/8/06 Introduction The new Desktop Recorder from Mediasite allows HCC users to record content on their computer desktop

More information

welcome to the world of atys! this is the first screen you will load onto after logging.this is the character-generating screen.

welcome to the world of atys! this is the first screen you will load onto after logging.this is the character-generating screen. welcome to the world of atys! this is the first screen you will load onto after logging.this is the character-generating screen. Choose an empty slot. This is where your character will be placed after

More information

Self Learning Game Software Requirements Specification Joint Document Version 1

Self Learning Game Software Requirements Specification Joint Document Version 1 Self Learning Game Software Requirements Specification Joint Document Version 1 Janusz Zalewski with CNT 4104 Class Members February 9, 2011 General Description This is an educational game about learning

More information

Dota2 is a very popular video game currently.

Dota2 is a very popular video game currently. Dota2 Outcome Prediction Zhengyao Li 1, Dingyue Cui 2 and Chen Li 3 1 ID: A53210709, Email: zhl380@eng.ucsd.edu 2 ID: A53211051, Email: dicui@eng.ucsd.edu 3 ID: A53218665, Email: lic055@eng.ucsd.edu March

More information

for Solidworks TRAINING GUIDE LESSON-9-CAD

for Solidworks TRAINING GUIDE LESSON-9-CAD for Solidworks TRAINING GUIDE LESSON-9-CAD Mastercam for SolidWorks Training Guide Objectives You will create the geometry for SolidWorks-Lesson-9 using SolidWorks 3D CAD software. You will be working

More information

NOVA. Game Pitch SUMMARY GAMEPLAY LOOK & FEEL. Story Abstract. Appearance. Alex Tripp CIS 587 Fall 2014

NOVA. Game Pitch SUMMARY GAMEPLAY LOOK & FEEL. Story Abstract. Appearance. Alex Tripp CIS 587 Fall 2014 Alex Tripp CIS 587 Fall 2014 NOVA Game Pitch SUMMARY Story Abstract Aliens are attacking the Earth, and it is up to the player to defend the planet. Unfortunately, due to bureaucratic incompetence, only

More information

Tac Due: Sep. 26, 2012

Tac Due: Sep. 26, 2012 CS 195N 2D Game Engines Andy van Dam Tac Due: Sep. 26, 2012 Introduction This assignment involves a much more complex game than Tic-Tac-Toe, and in order to create it you ll need to add several features

More information

AutoCAD LT 2012 Tutorial. Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS. Schroff Development Corporation

AutoCAD LT 2012 Tutorial. Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS.   Schroff Development Corporation AutoCAD LT 2012 Tutorial Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS www.sdcpublications.com Schroff Development Corporation AutoCAD LT 2012 Tutorial 1-1 Lesson 1 Geometric Construction

More information

CS180 Project 5: Centipede

CS180 Project 5: Centipede CS180 Project 5: Centipede Chapters from the textbook relevant for this project: All chapters covered in class. Project assigned on: November 11, 2011 Project due date: December 6, 2011 Project created

More information

Welcome to the Early Beta and Thank You for Your Continued Support!

Welcome to the Early Beta and Thank You for Your Continued Support! REFERENCE CARD Welcome to the Early Beta and Thank You for Your Continued Support! In addition to the information below, we ve recently added tutorial messages to the game. Remember to look for the in-game

More information

AutoCAD Tutorial First Level. 2D Fundamentals. Randy H. Shih SDC. Better Textbooks. Lower Prices.

AutoCAD Tutorial First Level. 2D Fundamentals. Randy H. Shih SDC. Better Textbooks. Lower Prices. AutoCAD 2018 Tutorial First Level 2D Fundamentals Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following websites to

More information

Photoshop Backgrounds: Turn Any Photo Into A Background

Photoshop Backgrounds: Turn Any Photo Into A Background Photoshop Backgrounds: Turn Any Photo Into A Background Step 1: Duplicate The Background Layer As always, we want to avoid doing any work on our original image, so before we do anything else, we need to

More information

Guns N' Roses Video Slots Game Rules

Guns N' Roses Video Slots Game Rules Guns N' Roses Video Slots Game Rules Guns N' Roses Video Slots is a 5-reel, 3-row, 20-line video slot featuring substitutions, Expanding s, the Appetite for Destruction, Bonus symbols, Encore Free Spins,

More information

How to Survive Your First Night in Minecraft

How to Survive Your First Night in Minecraft How to Survive Your First Night in Minecraft Survival Mode Lizza Igoe, Colleen Griffiths, Becky Hayes Objectives 1. 2. 3. 4. 5. Explore Your Surroundings Gather Resources Build a Shelter Craft Tools Avoid

More information

Supreme Hot Video Slot. Introduction. How to Bet. Gamble Feature

Supreme Hot Video Slot. Introduction. How to Bet. Gamble Feature Supreme Hot Video Slot Introduction How to Bet Gamble Feature Game Controls Rules Jackpot Cards Bonus Game Interruptions Return to Player Introduction Supreme Hot video slot is a 3-reel. The slot consists

More information

Chapter 2. Drawing Sketches for Solid Models. Learning Objectives

Chapter 2. Drawing Sketches for Solid Models. Learning Objectives Chapter 2 Drawing Sketches for Solid Models Learning Objectives After completing this chapter, you will be able to: Start a new template file to draw sketches. Set up the sketching environment. Use various

More information

Z-Town Design Document

Z-Town Design Document Z-Town Design Document Development Team: Cameron Jett: Content Designer Ryan Southard: Systems Designer Drew Switzer:Content Designer Ben Trivett: World Designer 1 Table of Contents Introduction / Overview...3

More information

User Guide V10 SP1 Addendum

User Guide V10 SP1 Addendum Alibre Design User Guide V10 SP1 Addendum Copyrights Information in this document is subject to change without notice. The software described in this document is furnished under a license agreement or

More information

Official Documentation

Official Documentation Official Documentation Doc Version: 1.0.0 Toolkit Version: 1.0.0 Contents Technical Breakdown... 3 Assets... 4 Setup... 5 Tutorial... 6 Creating a Card Sets... 7 Adding Cards to your Set... 10 Adding your

More information

Introduction. The basics

Introduction. The basics Introduction Lines has a powerful level editor that can be used to make new levels for the game. You can then share those levels on the Workshop for others to play. What will you create? To open the level

More information

Contents. Introduction

Contents. Introduction Rules of Play Introduction 2 Game Components 3 Game Overview 4 Game Setup 5 The Golden Rule 8 The Hero Area 9 Dungeon Room Features 9 Player Turn 9 Action Phase 9 Boosting Actions 10 Skill Symbols 10 Contents

More information

Tanki online unblocked 66

Tanki online unblocked 66 > > Tanki online unblocked 66 Though it has been mentioned how games are really common nowadays, but let us look even deeper. There are places such as schools, offices where computers may not be allowed

More information

Alibre Design Exercise Manual Introduction to Sheet Metal Design

Alibre Design Exercise Manual Introduction to Sheet Metal Design Alibre Design Exercise Manual Introduction to Sheet Metal Design Copyrights Information in this document is subject to change without notice. The software described in this documents is furnished under

More information

Player s Guides. Powers: Errata and Clarifications... 1 Abilities: Errata and Clarifications... 3 Powers: Reference... 4 Abilities: Reference...

Player s Guides. Powers: Errata and Clarifications... 1 Abilities: Errata and Clarifications... 3 Powers: Reference... 4 Abilities: Reference... Player s Guides 01 Player s Guide to Playing HeroClix 02 Player s Guide to Powers and Abilities Powers: Errata and Clarifications... 1 Abilities: Errata and Clarifications... 3 Powers: Reference... 4 Abilities:

More information

RPG CREATOR QUICKSTART

RPG CREATOR QUICKSTART INTRODUCTION RPG CREATOR QUICKSTART So you've downloaded the program, opened it up, and are seeing the Engine for the first time. RPG Creator is not hard to use, but at first glance, there is so much to

More information

Contents. Scrolls...9. Standard attacks Combos...14

Contents. Scrolls...9. Standard attacks Combos...14 User Manual Epilepsy Warning Certain individuals have a condition which may cause them to experience epileptic fits and which could also include loss of consciousness, particularly when exposed to certain

More information

Distributed Slap Jack

Distributed Slap Jack Distributed Slap Jack Jim Boyles and Mary Creel Advanced Operating Systems February 6, 2003 1 I. INTRODUCTION Slap Jack is a card game with a simple strategy. There is no strategy. The game can be played

More information

Making Your World - the world building tutorial

Making Your World - the world building tutorial Making Your World - the world building tutorial The goal of this tutorial is to build the foundations for a very simple module and to ensure that you've picked up the necessary skills from the other tutorials.

More information

Getting Started with Panzer Campaigns: Stalingrad 42

Getting Started with Panzer Campaigns: Stalingrad 42 Getting Started with Panzer Campaigns: Stalingrad 42 Welcome to Panzer Campaigns Stalingrad 42. As winter began to close, the instruction came forward from OKH to von Paulus and the Sixth Army capture

More information

SIGNAL-MATCHED WAVELETS: THEORY AND APPLICATIONS

SIGNAL-MATCHED WAVELETS: THEORY AND APPLICATIONS SIGNAL-MATCHED WAVELETS: THEORY AND APPLICATIONS by Anubha Gupta Submitted in fulfillment of the requirements of the degree of Doctor of Philosophy to the Electrical Engineering Department Indian Institute

More information

Pass-Words Help Doc. Note: PowerPoint macros must be enabled before playing for more see help information below

Pass-Words Help Doc. Note: PowerPoint macros must be enabled before playing for more see help information below Pass-Words Help Doc Note: PowerPoint macros must be enabled before playing for more see help information below Setting Macros in PowerPoint The Pass-Words Game uses macros to automate many different game

More information

Dragon Born is a six-reel video slot featuring Big Time Gaming s unique Megaways.

Dragon Born is a six-reel video slot featuring Big Time Gaming s unique Megaways. Dragon Born Dragon Born is a six-reel video slot featuring Big Time Gaming s unique Megaways. Megaways A Megaways slot can produce up to 7 icons per reel each spin. Wild multipliers also increase the ways

More information

5.0 Events and Actions

5.0 Events and Actions 5.0 Events and Actions So far, we ve defined the objects that we will be using and allocated movement to particular objects. But we still need to know some more information before we can create an actual

More information

Civil War Battles Main Program Help File

Civil War Battles Main Program Help File Civil War Battles Main Program Help File Introduction This help file is a common help file for the main programs of the Campaign Series of Civil War games. All menus and dialogs associated with the Main

More information

ARMY COMMANDER - GREAT WAR INDEX

ARMY COMMANDER - GREAT WAR INDEX INDEX Section Introduction and Basic Concepts Page 1 1. The Game Turn 2 1.1 Orders 2 1.2 The Turn Sequence 2 2. Movement 3 2.1 Movement and Terrain Restrictions 3 2.2 Moving M status divisions 3 2.3 Moving

More information