Jump to content

Lemons

Lifetime Sponsor
  • Posts

    620
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Posts posted by Lemons

  1. Firewall is completely turned off, and I've tried resetting my internet/PC, and redownloading the client

     

    Something is blocking access to OSBot. Try on a different computer on the same network, this will tell you if its PC related or network related.

    • Like 1
  2. macro major ban = manuel ban and always perm.

    macro minor aka bot busting ban = automated ban by the botwatch ( 2 days )

     

    Pretty sure 2 day ban is because its not automated, and given by mods (aka not 100%). Botwatch is "100%" sure when it bans therefore its perm, which is a macro major. Think you can also get a diff type which means a perm ban came from a jmod (forget the type tho).

  3. Osbot is promoting scripter 2+ supremacy doge.png

     

    whoever said the "i bought sponsor and then i could see the other pips" I think it was lemons xD you just made mald an argument doge.png

    He will now say "buy sponsor and it'll get fixed" Troll.png  ggwp

      

    rip s1's we were all there tho once feels.png

     

    I'm still there :doge:

  4. Check for players chopping around the tree. You could do a simple check of any Player within 3 tiles of the tree and if they are animating, a better check would be to check the trees perimeter and possibly if they are facing the tree (since trees can be close to eachother). Depends how specific you need to get.

     

    For the fire, just keep watching the Position you are attempting to light on (not your current position as you will move) for a fire, or just check when your done animating (might not work if theres a break in the animation).

     

    Sorry for no code, I'm sure someone else can help :p.

  5. - Any mobo is going to have a decent onboard ethernet/sound card, so your basically throwing money away there.

    - The 140mm fan is too big for the cases 120mm fan slots, get a 120mm fan.

    - Unless you watch DVDs you prob don't need the DVD Drive, use a USB Drive for installation.

    - The Hyper EVO 212 CPU Cooler is probably unneeded unless your going to be folding, can use the stock CPU Cooler or get a H80/premade watercooling loop if anything. Also be wary that this thing is HUGE, I have one and there is about 2mm of space between the side of my case and this thing in a mid-size tower. Since that case is 200mm wide and the cooler is 160mm tall, with the space for the mobo tray and risers there *should* be enough room, maybe.

    - Get 2 sticks of ram. Dual-channel ram (DDR and up) work best on 2 sticks of ram, as they can allow simultaneous read/writes instead of waiting on either operation. Otherwise your ram is gonna act like garbage, and 8GB is small these days :p

    - Consider a SSD instead of a HDD. Unless you plan on torrenting everything, you prob don't need this much room :p SSD will help your load times and make the computer feel faster.

     

    Other than that, don't see any problems. The GPU/CPU are good picks, nice power for the value. Good PSU with 80+ Gold, modular is nice. Built in wifi is nice as well :p

    • Like 1
  6. g.drawString("" + getExperienceTracker().getGainedXPPerHour(Skill.ATTACK), 346, 415);
    

    This gets the experience of one skill, but I want multiple skills in paint, so I tried 

    g.drawString("" + getExperienceTracker().getGainedXPPerHour(Skill.ATTACK) + getExperienceTracker().getGainedXPPerHour(Skill.DEFENCE), 346, 415);
    

    But it doesn't start on 0 and it starts at 9000 and something.

     

     

    This is due to the String thinking + is concatenation, and you figuring the 2 Integers would be added. How java reads this is:

    "" + "900" + "0"

    Where you want code like:

    Integer totalXpPerHour = getExperienceTracker().getGainedXPPerHour(Skill.ATTACK) + getExperienceTracker().getGainedXPPerHour(Skill.DEFENCE);
    g.drawString("" + totalXpPerHour, 346, 415);
    

    You could also do it like this, but I feel it is messier:

    g.drawString("" + (getExperienceTracker().getGainedXPPerHour(Skill.ATTACK) + getExperienceTracker().getGainedXPPerHour(Skill.DEFENCE)), 346, 415);
    

    Note the parenthesis around the addition parts, then the "" + to make it a String.

    • Like 3
  7. It was added a few updates ago, this version only changed widget debugger and command line args. 

     

    Yeah, more of meant the recent push from the dev to stable is why users will be experiencing this. Its easier to understand for them :p

  8. The new stable version of OSBot (2.4.58) added permissions to scripts, so they can only read/write to "OSBot/data". Please wait until these scripts are updated for the new permissions.

  9. By purchasing sponsor :doge:

     

    On a serious note, you get trust by being active and getting feedback. This can result in recognition throughout the community, but just being known doesn't imply trust (though it happens enough).

    • Like 1
  10. wut?

    the clocks are all less then 50mhz difference, and the only "noticeable" difference which would be the memory interface.

    both are 4gig cards, for $100 usd less, why would you not take the 960 on a budget :x

    [unless you are doing VR, but NO one is doing VR on a budget lol]

    $300 970 (thats being nice) or $200 for a 960 (thats HIGH)

    https://us.msi.com/Graphics-card/GTX-960-GAMING-4G.html#hero-specification

    https://us.msi.com/Graphics-card/GTX-970-GAMING-4G.html#hero-specification

     

    VYppXpb.png

     

    its a decent difference in performance actually, but the 960 is a better value for the power

×
×
  • Create New...