Page 1 of 1

Ajax/Javascript Vid Tuts

Posted: Sun Sep 19, 2010 10:56 pm
by hallsofvallhalla

Re: Ajax/Javascript Vid Tuts

Posted: Mon Sep 20, 2010 2:18 am
by hallsofvallhalla
done!

Re: Ajax/Javascript Vid Tuts

Posted: Mon Sep 20, 2010 9:21 am
by OldRod
Great job Halls! :)

Re: Ajax/Javascript Vid Tuts

Posted: Mon Sep 20, 2010 10:47 am
by hallsofvallhalla
thanks, I hope they help get people started on the right track.

Re: Ajax/Javascript Vid Tuts

Posted: Mon Sep 20, 2010 2:21 pm
by OldRod
Only had a chance to watch the first one so far... do later ones show you how to get free time to actually work on a project? :lol:

Re: Ajax/Javascript Vid Tuts

Posted: Mon Sep 20, 2010 2:52 pm
by hallsofvallhalla
those are videos I need to watch!

Re: Ajax/Javascript Vid Tuts

Posted: Sun Oct 03, 2010 2:20 pm
by alexrules01
Oh wow new tutorials! Once my internet usage is reset, i will have to watch them!

Re: Ajax/Javascript Vid Tuts

Posted: Sun Apr 17, 2011 4:41 pm
by UnknownUser
Hey guys haven't been active for a long time here on the forums, but i decided to login again and join the party ;)
i will start of with a simple share to all of you ;) (sorry if this has already been shared).

in the netmap.js file, open it up -> search for ->

function getgoods(goods,tag)
{
above that make some space and add this,

Code: Select all

document.onkeyup = KeyCheck;       
 
	function KeyCheck(e)
		{
		   var KeyID = (window.event) ? event.keyCode : e.keyCode;
 
		   switch(KeyID)
		   {
 
		      case 37:
		      traveled(4);
		      break;
 
		      case 38:
		      traveled(1);
		      break;
 
		      case 39:
		      traveled(2);
		      break;
 
		      case 40:
                      traveled(3);
		      break;
 
		   }
		}
Happy times now you can walk with your keys ;)
and you can search for key codes for AWSD keys then you can walk with that.
And also, this is simple as hell & I'm sure you can do it better etc, but
this does the trick for now :) i might edit it to make it better or wait to see if others change it :)

PS: I'm back ;) cya at the forums ppl!

-UnknownUser

Re: Ajax/Javascript Vid Tuts

Posted: Mon Apr 18, 2011 6:11 pm
by UnknownUser
Hello heres an update post, working on a chat system for this :) //it's not near ready still need to change, pimp it etc :) (add time/name etc etc)..
heres how it looks now not that big of a deal yet :)
full-size-pic:http://oi51.tinypic.com/13z48ir.jpg
Image

Re: Ajax/Javascript Vid Tuts

Posted: Tue Apr 26, 2011 11:16 am
by hallsofvallhalla
nice stuff!