Jump to content

ProbsNotAssumeTb

Members
  • Posts

    31
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by ProbsNotAssumeTb

  1. Lol fail srry xD but i dont really have much knowledge about processors and video cards, but i am 100% sure than you can get a laptop cheaper elsewhere with comparable specs. Anything becomes 300% more expensive if someone puts a "apple" label on it

    No where did I say specs. I said build quality and design quality.

     

    Every single laptop in the same price range either a) is made of plastic (gross) b) looks like actual shit c) is 12 inches thick for all the bullshit I'll never use or d) is made to look like a fighter jet so looks like shit.

  2. wow.... i took one minute to search what the specs are and i was surprised

     

    The max resolution is 1280 x 800 (ROFL), i5 processor(By far not the best) and only 4gb memory! i know enough.

     

    112223149a.png

    Now I thought we were talking about my laptop.

     

    Late 2013 Retina MacbookPro 15 inch

  3. Would be much cheaper if you bought something else than apple, with the same quality

     

    There are no laptops with a higher quality build or better design than a Macbook Pro. I am required to have an iPad for school or I would not own one.

  4. http://imgur.com/a/LuYJs

     

    Monitors: Dell U2412M * 3

    Keyboard: Filco Majestouch 2 TKL (MX Blue) Mouse: Logitech Performance MX

    Tablet: iPad 3 32GB LTE (required for my school)

    Laptops:

    • Apple Macbook Pro Retina Late 2013 15"

    • Chromebook Pixel 64GB LTE

    • Asus U56E

    Desktop:

    • ASRock Extreme4

    • Intel 3570k

    • EVGA 750w Gold PSU (forgot exact name)

    • Fractal Design DefineR4

    • MSI R7870 HAWK

    • Corsair H80i

    • Intel 330 64GB SSD (x2)

    • WD 500GB Blue HDD

    • 8GB of Crucial Ballistix Tracer RAM

    Headphones:

    • Sennheiser HD 598

    • Sennheiser HDR 160 (wireless)

    Phone: LG G2

    Mic: Blue snowball

    Desk: IKEA Galant center round with 3 extensions

    Chair: A mesh chair I picked up from Office Depot for $350.

  5. Go get 2 accounts, have them both have the same attack, strength, hitpoints. One have 15 defense and the other have 1. Normal DDS to Dscim, no move.

     

    Then sit there for hours on end and stake. Since the the 15 defense account will "supposedly" have 7.7-9.3% odds, you'll have to X. Just do a very miniscule X, such as 1.05. Maybe even 1.03. But that shouldn't matter cause you've got pretty good odds cause of your 15 defense.

     

    Then come back and tell me when you're cleaned.

    You don't have to X.

     

    My script has made 30.5B since December 2013.

     

    all.png

     

    I know what I am talking about.

  6. I've done hundreds of stakes with an account that was 15 defense against accounts will same stats but they had 1 defense instead. Trust me, it makes no difference. You do not have any advantage what so ever. You still get hit as hard and as often as you would on 1 def.

     

    Most people I'd try staking would want me to x because of the 15 def but I never did cause I know it doesn't do anything. And the people that didn't make me x were the people like me who knew it didn't have any affect.

     

    And this isn't an excuse for having 15 def for someone that me be like "Well you got 15 def for a reason, it clearly does something", the account was a 1 def staker but I wanted to ruin it so I wouldn't be tempted to pure stake, as at the time, I hated it.

    You're an idiot.

     

    Values my staking calculator gives that duel:

     

    Default Calculator (Boxing): 63.9%

    Default Calculator (Single Weapon): 62.4%

    Default Calculator (DDSing): 59.3%

     

    Beta Calculator (Boxing): 65%

    Beta Calculator (Single Weapon): 58.1%

    Beta Calculator (DDSing): 57.7%

     

     

    • Like 3
  7. Dis is da shitty way to do eht.

     

    Betta way is dis

     

    Color da_good_good_colla = new Color(178, 163, 132);

     

    use sum dat string metrics shit get dat string pixel length

    oooooo string pixel length

    draw dat nice long rectangle box with dat nice string pixel length plus bout a 2

    damnnnnn

    now u got dat matching color matchin length block ooo

    oooo look how assume did da tellin

  8. Should be getState().toString() buddy happy.png

    You should not be so stupid, buddy.

    For one why are you even call the getState() in paint?

     

    Because if your doing that to get the status/state, that is a horrendous way of doing. Your onPaint is called every loop, so that means your calling your getState every second pretty much, for the how ever long you run your script, that will really start to add up.

     

    At the top of your script you should declare a String like:

    String status = "";

     

    Then in you onLoop, inside of your switch statment, whatever state is called, add what status, so like:

    switch(getState()){

         case ATTACK:

                   status = "Attacking";

                   break;

    }

     

    The finally in your onPaint, take out getState, and replace it with status.

     

    See if that helps, and even if it doesn't, that still a much more efficient way of achieve the same goal.

    (If it still lags, most likely there's some type of error in your getState like @Booch said)

     

     

    Even better.

     

    State state;

     

    onLoop()

    {

    state = getState();

    switch(state){

    case StateY:

    //some code

    break;

    }

     

    }

     

    then in onPaint just draw state instead of getState()

    • Like 1
  9.  

    Wherever you think would be best. Forgot an ArrayList returned the string with brackets though, so you can just pass them in easy and replace the characters you don't want.

    GUILoot.toString().replace("[", "").replace("]", "");
    

    eww why #replace twice? ewwwww

    String#replaceAll("[\\]\\[]", "")

×
×
  • Create New...