Jump to content

Fay

Members
  • Posts

    420
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Posts posted by Fay

  1. I'm gonna do that asap

     

    You are like the United States Department of Defense..

     

    "No we don't need regulations for airlines we will never need them."

    *9/11*

    "We didn't think we needed the process before. Now everyone must be molested for guns, even the grand-mothers."

    • Like 2
  2. I think I took this from a scripter a while back so no credit of my own:

     

    function for formatting time string.

    	public String format(long time) {
    		StringBuilder string = new StringBuilder();
    		long totalSeconds = time / 1000L;
    		long totalMinutes = totalSeconds / 60L;
    		long totalHours = totalMinutes / 60L;
    		int seconds = (int) totalSeconds % 60;
    		int minutes = (int) totalMinutes % 60;
    		int hours = (int) totalHours % 24;
    		if (hours > 0) {
    			string.append((new StringBuilder(String.valueOf(hours))).append(
    					":").toString());
    		}
    		if (minutes > 0) {
    			string.append((new StringBuilder(String.valueOf(minutes))).append(
    					":").toString());
    		}
    		string.append((new StringBuilder(String.valueOf(seconds))).append(":")
    				.toString());
    		return string.toString();
    	}
    

    onStart function:

    	@Override
    	public void onStart() {
    		startTime = System.currentTimeMillis();
    	}
    

    onPaint function:

    	public void onPaint(Graphics2D g) {
    		long elapsed = System.currentTimeMillis() - startTime;
    		g.drawString((new StringBuilder("Time: ")).append(format(elapsed)).toString(), 50, 50);
    	}
    
  3. Or just memorize the cycles.

     

    A yellow light takes by general recommendations from the federal government, 3 seconds to cycle to red. A green will always be green unless the sensor trips it to turn red. Red will stay red until the perpendicular light turns yellow>red+3 seconds so you have 9 seconds to wait from the start of a yellow.

  4. I wouldn't buy a wifi repeater if given the money for it.1 For the same price (or less) I can buy:

    http://www.amazon.com/Alfa-AWUS036NHA-Wireless-Adaptor-Compatible/dp/B004YDT758/ref=sr_1_3?s=electronics&ie=UTF8&qid=1393468220&sr=1-3&keywords=Alfa+AWUS036NHA

     

    When using the large antenna, you could be 5 stories higher and still get 100% signal. If that is not good enough you can always buy a better antenna or a movable one.

     

    Also if you are into hacking this is your go to antenna, Alfa adapters are great for passive capture mode and what not, pairing it with Kali Linux is a great investment.

     

    1. They cause latency (lag), trim your bandwidth, and provide a greater range for your neighbors to access.

  5. I'm beginning to think that this client is produced and maintained by Jagex and these scripts are instantly detectable by them whenever you use them and that the mods and community here is just some cloak they put over the website to make it seem legit...

     

    It's all lies, you have found us out. I botted 18 hours straight on a F2P account training defense. Quite possibly THE RISKIEST thing to do (f2p and all), no ban. The problem was you or the script, not the client. 1500 people use that one script. All doing the same thing at eventually the same intervals. You are bad because you chose that script.

    • Like 1
  6. how?  i tried several key combos found from internet and it didnt work, cant access my bios, can u tell me how to or where can i find out what keys  should i press to access BIOS?

    alright ill try

    shiet, didnt work, do i have to hold fn key down when pressing those? i spammed f2, f10, f12 and fn but nothing appeared.

     

    It is one of the F keys that will open your BIOS on restart. 

     

    Read through:

    http://www.pcworld.com/article/241032/how_to_enter_your_pcs_bios.html

×
×
  • Create New...