Thread: Does anyone have this area?

Results 1 to 9 of 9
  1. #1 Does anyone have this area? 
    Banned

    Join Date
    Jan 2009
    Age
    31
    Posts
    2,661
    Thanks given
    66
    Thanks received
    207
    Rep Power
    0
    The coordinates are

    2720 5290 0

    EDIT:

    Found the mapdata no longer in need of it.
    Reply With Quote  
     

  2. #2  
    Registered Member lildude783's Avatar
    Join Date
    Jan 2010
    Age
    28
    Posts
    379
    Thanks given
    13
    Thanks received
    7
    Rep Power
    3
    my old 562 has it.. but its packed xtea...
    Quote Originally Posted by Hunter
    Here in America, we dont use the metric system, we use freedom units!
    Reply With Quote  
     

  3. #3  
    Renown Programmer


    Join Date
    Jul 2009
    Posts
    1,846
    Thanks given
    69
    Thanks received
    1,113
    Rep Power
    3170
    Quote Originally Posted by lildude783 View Post
    my old 562 has it.. but its packed xtea...
    so it can be unpacked....
    Reply With Quote  
     

  4. #4  
    Banned

    Join Date
    Jan 2009
    Age
    31
    Posts
    2,661
    Thanks given
    66
    Thanks received
    207
    Rep Power
    0
    Quote Originally Posted by lildude783 View Post
    my old 562 has it.. but its packed xtea...
    post packed please? ill unpack it myself.
    Reply With Quote  
     

  5. #5  
    Registered Member
    bracket's Avatar
    Join Date
    Aug 2009
    Posts
    5,278
    Thanks given
    1,059
    Thanks received
    1,465
    Rep Power
    5000
    I have the 508 Xtea keys
    Reply With Quote  
     

  6. #6  
    Banned

    Join Date
    Jan 2009
    Age
    31
    Posts
    2,661
    Thanks given
    66
    Thanks received
    207
    Rep Power
    0
    Quote Originally Posted by owner pkin View Post
    I have the 508 Xtea keys
    Could you post/pm it please?
    Reply With Quote  
     

  7. #7  
    Registered Member lildude783's Avatar
    Join Date
    Jan 2010
    Age
    28
    Posts
    379
    Thanks given
    13
    Thanks received
    7
    Rep Power
    3
    Quote Originally Posted by mgi125 View Post
    so it can be unpacked....

    im pretty sure i might have the unpacked version too lol.. not sure.. ill look if i release my sh-tty 562 and 562/602 from 2009..
    Quote Originally Posted by Hunter
    Here in America, we dont use the metric system, we use freedom units!
    Reply With Quote  
     

  8. #8  
    Banned

    Join Date
    Jan 2009
    Age
    31
    Posts
    2,661
    Thanks given
    66
    Thanks received
    207
    Rep Power
    0
    Just Execute this code???

    Code:
    import java.io.DataInputStream;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.File;
    
    public class UnPacker {
    
    	public static void main(String[] args) throws IOException {
    		File files[] = (new File("bin/")).listFiles();
    		for (File f : files)
    			unpack(f.getPath());
    	}
    
    	private static void unpack(String file) throws IOException {
    
    		System.out.println("Unpacking File: " + file);
    
    		DataInputStream in = new DataInputStream(new FileInputStream(file));
    		while (in.available() > 23) {
    			int mapId = in.readInt();
    			int keys[] = new int[4];
    			keys[0] = in.readInt();
    			keys[1] = in.readInt();
    			keys[2] = in.readInt();
    			keys[3] = in.readInt();
    			int[] desiredKeys = {10579,10835,11089,11090,11091};
    			for (int key : desiredKeys) {
    				if (key == mapId) {	
    					System.out.println("MapIdx: " + mapId + " Keys: " + keys[0] + " , " + keys[1] + " , " + keys[2] + " , " + keys[3]);
    				}
    			}
    		}
    	
    		System.out.println("\n----------------------------------------------");
    		in.close();
    	}
    }
    Reply With Quote  
     

  9. #9  
    Registered Member lildude783's Avatar
    Join Date
    Jan 2010
    Age
    28
    Posts
    379
    Thanks given
    13
    Thanks received
    7
    Rep Power
    3
    i kno how to unpack them i have them packed and unpacked.. just on a diff comp that i havent used since i ran DesolationScape 562 in 2009 and the beginning of 2010..
    Quote Originally Posted by Hunter
    Here in America, we dont use the metric system, we use freedom units!
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Pvp area [pi]
    By Mark in forum Help
    Replies: 22
    Last Post: 12-07-2015, 12:11 AM
  2. Where is this area?
    By Pblord7 in forum Help
    Replies: 1
    Last Post: 05-02-2011, 05:01 AM
  3. Replies: 5
    Last Post: 05-01-2011, 08:25 AM
  4. [PI] PVP area
    By Mark in forum Help
    Replies: 7
    Last Post: 01-16-2011, 07:51 PM
  5. do something in an area
    By rmb7 in forum Help
    Replies: 7
    Last Post: 04-29-2010, 12:22 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •