Page 1 of 1

Video Tutorials

Posted: Mon Sep 24, 2012 8:57 pm
by hallsofvallhalla

Re: Video Tutorials

Posted: Tue Sep 25, 2012 1:24 am
by hallsofvallhalla
reserved I guess

Re: Video Tutorials

Posted: Tue Sep 25, 2012 1:58 am
by OldRod
Awesome!

Re: Video Tutorials

Posted: Tue Sep 25, 2012 2:41 am
by Jackolantern
Very cool! Is the source being released to Github? :D

Re: Video Tutorials

Posted: Tue Sep 25, 2012 3:38 pm
by hallsofvallhalla
yes but I needed to add a couple more things. Will be released today for sure!!!

Re: Video Tutorials

Posted: Tue Sep 25, 2012 9:44 pm
by hallsofvallhalla
added video

Re: Video Tutorials

Posted: Wed Jan 23, 2013 12:38 am
by Sanity
Would this be the desired way to make a chat system for an HTML5 game with impact going off your tutorials or would you use a different method as this is more for a text based game?

P.S.
I saw how you were debugging your server crashing in the 4th video, i think i remember you mentioning reopening command prompt in another video, and there is a simple way to keep the window from closing and that is just adding "pause" below the line in the .bat file.

Code: Select all

c:\wamp\www\impacttut\node app.js
pause
Im sure you already know this, im just curious why you haven't been using it as its easier than opening command prompt and searching for the folder and then rerunning the server.

Re: Video Tutorials

Posted: Wed Jan 23, 2013 2:51 pm
by hallsofvallhalla
I actually never thought of that. :oops: Thanks!


Yes this is definitely a great way to do a chat system and I already have rooms and things set up/

Re: Video Tutorials

Posted: Tue Sep 24, 2013 4:05 am
by Epiales
Do you have current files that match video? I'm completely lost and nothing is working except the server. The index.html is completely different, and by the time you got through with video 3, it showed the map and stats and such, and mine didn't show anything except the css. I just gave up on it LOL

I even changed:

Code: Select all

	<script type="text/javascript">
	  var socket = io.connect('http://localhost:8080');
	//////////////Assign each session the player name/////
	  var randid = Math.floor(Math.random() * 9999);
	  //var playername = "player" + randid;
	 var playername = "<?php echo $user['username']; ?>";
	///////////////////////////////////////////////////
///////////////////////////////////////Modules Includes/////////////////////////////
	</script>
And it refuses to put the username. It just says 'joined' with no name :lol:

Re: Video Tutorials

Posted: Tue Sep 24, 2013 2:58 pm
by hallsofvallhalla
The files should match the videos. Let me take a look. I know it works as I am using it in the new videos.