Skip to content

Latest commit

 

History

History
35 lines (19 loc) · 1.09 KB

README.md

File metadata and controls

35 lines (19 loc) · 1.09 KB

#CoderClicker

By Edward Jiang

CoderClicker is a game inspired by Cookie Clicker. It's a multiplayer clicking game built with Meteor.js to use as a workshop for CodeDay!

Here's a tutorial on how to build this.

#Trying out CoderClicker

##Install Meteor

Install Meteor using the Meteor Docs, if you haven't already.

##Deploy Locally

git clone https://github.com/edjiang/CoderClicker.git
cd CoderClicker
meteor

Visit http://localhost:3000/ to play!

##Deploy Online

meteor deploy [YOURPROJECTNAME].meteor.com

Replace [YOURPROJECTNAME] with something suitable.

Visit http://[YOURPROJECTNAME].meteor.com/ to play, and share with all of your friends!

#Adding Items

Open up CoderClicker.js:

After {name: "Monkey", cost: 500}, add: , {name: "[ITEMNAME]", cost: [COST]}. There is no current way to change the DPS of an item. If you want, you should figure out how to do it! =]