Thread: how can i fix this

Results 1 to 6 of 6
  1. #1 how can i fix this 
    Banned
    Join Date
    Jan 2014
    Posts
    23
    Thanks given
    1
    Thanks received
    4
    Rep Power
    0
    how can i add :ataon to see fps/mem usage etc?
    how to disable godsword dismantling?
    Reply With Quote  
     

  2. #2  
    Banned

    Join Date
    Jul 2009
    Posts
    3,999
    Thanks given
    1,003
    Thanks received
    1,028
    Rep Power
    0
    Quote Originally Posted by dingorider22 View Post
    i need to disable teleporting from fight pits and fix every fight pits dupe/bugs
    and how can i add :ataon to see fps/mem usage etc?
    how to disable godsword dismantling?
    Something like this to stop teleporting in ClickingButtons on every teleport button

    Code:
    if (c.inPits) {
    				c.sendMessage("You can't use this spell in the Fight Pits minigame.");
    				return;
    The dataon command is Client sided not server sided

    Quote Originally Posted by Pea2nuts View Post
    dotn ahve noclip
    Code:
                if(inputString.equals("::dataon"))
                    clientData = true;
                if(inputString.equals("::dataoff"))
                    clientData = false;
    or
    Code:
     if(inputString.equals("data"))
    clientData = !clientData;

    should find the other commands by searching if(inputString.equals

    in draw3dscreen
    Code:
            if(clientData)
            {
                char c1 = '\u01FB';
                int i2 = 20;
                int j;
                if(super.fps < 15)
                    j = 0xff0000;
                aTextDrawingArea_1271.method385(0xffff00, (new StringBuilder()).append("Fps: ").append(super.fps).toString(), 285, 5);
                Runtime runtime1 = Runtime.getRuntime();
                int k2 = (int)((runtime1.totalMemory() - runtime1.freeMemory()) / 1024L);
                j = 0xffff00;
                if(k2 > 0x2000000 && lowMem)
                    j = 0xff0000;
                i2 += 15;
                aTextDrawingArea_1271.method385(0xffff00, (new StringBuilder()).append("Mem: ").append(k2).append("k").toString(), 299, 5);
                aTextDrawingArea_1271.method385(0xffff00, (new StringBuilder()).append("Mouse X: ").append(super.mouseX).append(" , Mouse Y: ").append(super.mouseY).toString(), 314, 5);
                aTextDrawingArea_1271.method385(0xffff00, (new StringBuilder()).append("Coords: ").append(l).append(", ").append(j1).toString(), 329, 5);
            }
    Disable dismantling Godswords ItemAssistant I believe.
    Reply With Quote  
     

  3. #3  
    don't leech guys

    ANTILEECH's Avatar
    Join Date
    Jun 2013
    Posts
    736
    Thanks given
    171
    Thanks received
    196
    Rep Power
    129
    Much fanboys
    Wow
    Reply With Quote  
     

  4. #4  
    Banned
    Join Date
    Jan 2014
    Posts
    23
    Thanks given
    1
    Thanks received
    4
    Rep Power
    0
    Quote Originally Posted by Emma Stone View Post
    Something like this to stop teleporting in ClickingButtons on every teleport button

    Code:
    if (c.inPits) {
    				c.sendMessage("You can't use this spell in the Fight Pits minigame.");
    				return;
    The dataon command is Client sided not server sided



    Disable dismantling Godswords ItemAssistant I believe.
    I fixed the fight pits teleporting by myself, going to try dataon now, thanks
    Reply With Quote  
     

  5. #5  
    Banned

    Join Date
    Jul 2009
    Posts
    3,999
    Thanks given
    1,003
    Thanks received
    1,028
    Rep Power
    0
    Quote Originally Posted by dingorider22 View Post
    I fixed the fight pits teleporting by myself, going to try dataon now, thanks
    No problem.
    Reply With Quote  
     

  6. #6  
    Banned
    Join Date
    Jan 2014
    Posts
    23
    Thanks given
    1
    Thanks received
    4
    Rep Power
    0
    thread updated, need help
    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. How can i fix this error??[ WILL REP!!!!]
    By CASHMAGE in forum Help
    Replies: 4
    Last Post: 11-19-2009, 04:23 AM
  2. Replies: 3
    Last Post: 08-07-2009, 03:46 AM
  3. how can i fix this
    By darky in forum Help
    Replies: 1
    Last Post: 05-05-2009, 02:54 AM
  4. how can i fix this? giving rep++
    By Darkie in forum Help
    Replies: 0
    Last Post: 02-24-2009, 05:48 PM
  5. How can I fix this...?
    By Josh™ in forum Help
    Replies: 6
    Last Post: 01-31-2009, 01:17 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
  •