01-22-2013, 10:55 PM 
(This post was last modified: 01-22-2013, 10:56 PM by Jacob__mybb_import1.)
		
	
	(01-21-2013, 09:26 PM)Leonartist Wrote: [link deleted] --This was a moderative tool link. GOODBYE SPAMMER TOOL IS POWERFUL. -G
He can't use it, but there's no easy way to stop the URL from showing up in the who's online link.
I'm having to write 3 files of code like this for homework. Suddenly adding multiplayer to 2DWorlds doesn't seem so hard anymore...
Code:
    public static int get(int num, int which)
    {
            int numMask = 0xFFFF << (which << 4);
            num = num & numMask;
            num = num >> (which << 4);
            if(num < 0)
                num = num & ~numMask;
            return num;
    }
 
 

 
