Thread: how can i edit the zoom

Results 1 to 8 of 8
  1. #1 how can i edit the zoom 
    Registered Member Moofens's Avatar
    Join Date
    Jul 2009
    Posts
    445
    Thanks given
    23
    Thanks received
    12
    Rep Power
    31
    is it possible on a 317 client to edit the zoom or camera to make it first person?
    Reply With Quote  
     

  2. #2  
    Can I Be Vet Pls?

    Trytohaxme's Avatar
    Join Date
    May 2008
    Age
    31
    Posts
    2,401
    Thanks given
    1
    Thanks received
    21
    Rep Power
    1478
    Why would you even want it first person?

    1. You couldn't see the damage that is being dealt.
    2. You could see the text above heads, only far away or chat box.

    Theirs lot's of flaws in having a first person client, but yes you can do it.
    Someone released a client in first person before, I believe it was dragonking?
    Attached image
    Reply With Quote  
     

  3. #3  
    Member

    Join Date
    Jun 2009
    Age
    30
    Posts
    432
    Thanks given
    13
    Thanks received
    2
    Rep Power
    0
    Quote Originally Posted by Trytohaxme View Post
    Why would you even want it first person?

    1. You couldn't see the damage that is being dealt.
    2. You could see the text above heads, only far away or chat box.

    Theirs lot's of flaws in having a first person client, but yes you can do it.
    Someone released a client in first person before, I believe it was dragonking?
    He wants help, not an opinion.

    If you're using a delta client just press F12 and it changes the view if thats what you mean.. then INSERT, HOME, PGE UP, PGE DOWN, END, and DELETE change the height/angle

    Done with rsps
    Living in the real world now.
    Reply With Quote  
     

  4. #4  
    Respected Member


    Josh's Avatar
    Join Date
    Aug 2008
    Age
    29
    Posts
    2,863
    Thanks given
    6
    Thanks received
    1,342
    Rep Power
    5000
    Quote Originally Posted by dark man View Post
    He wants help, not an opinion.

    If you're using a delta client just press F12 and it changes the view if thats what you mean.. then INSERT, HOME, PGE UP, PGE DOWN, END, and DELETE change the height/angle

    If you've got a fresh deob, open applet_sub1 and under public void keyPressed add

    Code:
            if(i == KeyEvent.VK_F12){
            	if(client.cameratoggle == 0){
            		System.out.println("Camera Movement On");
                client.cameratoggle = 1;
              }else
              if(client.cameratoggle == 1){
            		System.out.println("Camera Movement Off");
                client.cameratoggle = 0;
              }
            }
            if(i == KeyEvent.VK_INSERT)
              client.zoom += 15;
            if(i == KeyEvent.VK_PAGE_UP)
              client.zoom -= 15;
            if(i == KeyEvent.VK_HOME)
              client.fwdbwd -= 15;
            if(i == KeyEvent.VK_END)
              client.fwdbwd += 15;
            if(i == KeyEvent.VK_PAGE_DOWN)
              client.lftrit -= 15;
            if(i == KeyEvent.VK_DELETE)
              client.lftrit += 15;
            if(j < 30)
                j = 0;
            if(i == 37)
                j = 1;
            if(i == 39)
                j = 2;
            if(i == 38)
                j = 3;
            if(i == 40)
                j = 4;
            if(i == 17)
                j = 5;
            if(i == 8)
                j = 8;
            if(i == 127)
                j = 8;
            if(i == 9)
                j = 9;
            if(i == 10)
                j = 10;
            if(i >= 112 && i <= 123)
                j = (1008 + i) - 112;
            if(i == 36)
                j = 1000;
            if(i == 35)
                j = 1001;
            if(i == 33)
                j = 1002;
            if(i == 34)
                j = 1003;
            if(j > 0 && j < 128)
                anIntArray30[j] = 1;
            if(j > 4)
            {
                anIntArray31[anInt33] = j;
                anInt33 = anInt33 + 1 & 0x7f;
            }
        }
    And then in the client class add these ints..
    Code:
    	public static int cameratoggle;
    	public static int zoom;
    	public static int lftrit;
    	public static int fwdbwd;
    That code won't do anything, it's just changing the value of an integer..
    There's more to it than that.
    Reply With Quote  
     

  5. #5  
    Member

    Join Date
    Jun 2009
    Age
    30
    Posts
    432
    Thanks given
    13
    Thanks received
    2
    Rep Power
    0
    Hold on, let me test it then. I remember ripping this from an old client onto a deob and it working..

    Done with rsps
    Living in the real world now.
    Reply With Quote  
     

  6. #6  
    Respected Member


    Josh's Avatar
    Join Date
    Aug 2008
    Age
    29
    Posts
    2,863
    Thanks given
    6
    Thanks received
    1,342
    Rep Power
    5000
    Well I'm just saying, if you look at the code you just posted there is nothing about camera movement there, except a few variables.

    Code:
            if(i == KeyEvent.VK_F12){
            	if(client.cameratoggle == 0){
            		System.out.println("Camera Movement On");
                client.cameratoggle = 1;
              }else
              if(client.cameratoggle == 1){
            		System.out.println("Camera Movement Off");
                client.cameratoggle = 0;
              }
            }
            if(i == KeyEvent.VK_INSERT)
              client.zoom += 15;
            if(i == KeyEvent.VK_PAGE_UP)
              client.zoom -= 15;
            if(i == KeyEvent.VK_HOME)
              client.fwdbwd -= 15;
            if(i == KeyEvent.VK_END)
              client.fwdbwd += 15;
            if(i == KeyEvent.VK_PAGE_DOWN)
              client.lftrit -= 15;
            if(i == KeyEvent.VK_DELETE)
              client.lftrit += 15;
    All they do is change the integer values.
    Reply With Quote  
     

  7. #7  
    Member

    Join Date
    Jun 2009
    Age
    30
    Posts
    432
    Thanks given
    13
    Thanks received
    2
    Rep Power
    0
    You're right, I guess whatever I did a few months ago was a little different.

    Done with rsps
    Living in the real world now.
    Reply With Quote  
     

  8. #8  
    Registered Member Moofens's Avatar
    Join Date
    Jul 2009
    Posts
    445
    Thanks given
    23
    Thanks received
    12
    Rep Power
    31
    this "dragonking client" the first person mentioned anyone know where i can get it?
    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

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •