Jump to content

Lemons

Lifetime Sponsor
  • Posts

    620
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Lemons

  1. Yes, Scripter 1 can only see 1 pip, I never knew until I bought sponsor lol.
  2. 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.
  3. - 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
  4. 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.
  5. http://osbot.org/forum/index.php?app=nexus&module=clients&section=purchases Should list when it expires, else mald will have to fix it.
  6. File myFile = new File(System.getProperty("user.home") + "/OSBot/Data/JGhost/Area/Area661830290.txt"
  7. Yep, might help to let them know in their respective threads as well.
  8. Please see http://osbot.org/forum/topic/97479-weird-permissions-error/
  9. 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
  10. 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.
  11. This, just use a fake email and don't confirm it.
  12. By purchasing sponsor 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).
  13. The proxy is fine, proxies only affect chain bans. Onces the bans happen, the IP is essentially new.
  14. pause the script and do it, else you'd have to get pretty fancy with a paint.
  15. Lemons

    Gaming pc

    its a decent difference in performance actually, but the 960 is a better value for the power
  16. Get a dedicated server, VPS are oversold and tend to be crap, not to mention the waste of resources on the overhead :x Should be able to find a decent dedi in the $20-$30/mo range, I can run 15-20 bots on mine easy.
  17. That still causes it to spawn a new java instance, running the filter_*.jar file.
  18. This is related: http://osbot.org/forum/topic/94935-arguments-to-start-bot/ Short answer: At the moment you can't (or noone knows how really).
  19. just to let you know, managing 100 different OSs and system is a pain in the arse. Best off getting dedicated and having a subnet added onto it, then using local proxies to use those IPs. Shared resources suck, especially over sold one. And 100 diff VNC clients is rough too haha.
×
×
  • Create New...