Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/12/13 in all areas

  1. First 20 people to comment a number between 1-100. I will use random.org for 1-100, closest number wins. If two people tie I will re-roll. MUST ONLY PICK ONE NUMBER! You can't comment twice and NO EDITS OCCAZN WON
    4 points
  2. Although I am new to the community, please allow me to introduce myself. I am a free thinker, as the people I have associated myself with over the years, who now are part of an advanced team that uses computers to further us in all types of sciences. The 1000k giveaway The way this will work is rather unique. I'm asking you to come up with a new idea or thought. Whether it be attributed to something physical, or mental. I only ask that you come up with someone that gets you and others thinking in a positive way to further your mind. Below, i'd like you to post your idea or thought. The one that receives the most likes will win the 1000k. You are not allowed to like your own. This will end at 12:00 AM eastern time 7/14/2013. Also, if you do not like anyone else's post, you are not allowed to win. Examples of what your idea can be about, some taken from this forums intellectual discussion section. Other forms of life Life after death & the paranormal Technology Laws Religion [be sensitive, do not bash any other religion in any way] Science World views on what is "right" and "wrong". Use your brain. I made this because I want people to realize how smart they actually are, and what they can actually come up with using nothing other than their own intelligence. Best of luck Add on -> If you're interested in liquid programming, please contact me via private message over this forum. Things we value Intelligence Computer skills Applied science skills Free thinkers Computer graphic skills Scripting skills such as java, css, html, xhtml, etc.
    3 points
  3. I didn't write this. This is from Allan Watts but I'm posting it here because it makes you question life. It makes you... What do you desire? What makes you itch? What sort of a situation would you like? Let’s suppose, I do this often in vocational guidance of students, they come to me and say, well, "we’re getting out of college and we have the faintest idea what we want to do". So I always ask the question, "what would you like to do if money were no object? How would you really enjoy spending your life?" Well, it’s so amazing as a result of our kind of educational system, crowds of students say well, we’d like to be painters, we’d like to be poets, we’d like to be writers, but as everybody knows you can’t earn any money that way. Or another person says well, I’d like to live an out-of-doors life and ride horses. I said you want to teach in a riding school? Let’s go through with it. What do you want to do? When we finally got down to something, which the individual says he really wants to do, I will say to him, you do that and forget the money, because, if you say that getting the money is the most important thing, you will spend your life completely wasting your time. You’ll be doing things you don’t like doing in order to go on living, that is to go on doing things you don’t like doing, which is stupid. Better to have a short life that is full of what you like doing than a long life spent in a miserable way. And after all, if you do really like what you’re doing, it doesn’t matter what it is, you can eventually turn it – you could eventually become a master of it. It’s the only way to become a master of something, to be really with it. And then you’ll be able to get a good fee for whatever it is. So don’t worry too much. That’s everybody is – somebody is interested in everything, anything you can be interested in, you will find others will. But it’s absolutely stupid to spend your time doing things you don’t like, in order to go on spending things you don’t like, doing things you don’t like and to teach our children to follow in the same track. See what we are doing, is we’re bringing up children and educating to live the same sort of lifes we are living. In order that they may justify themselves and find satisfaction in life by bringing up their children to bring up their children to do the same thing, so it’s all retch, and no vomit it never gets there. ------------------------------------------------------- After listening to this speech I got pretty depressed. Why do we just want to be satisfied with having a job and making due to live. Are you breathing right now to survive or to live? The difference is you eat, sleep to live. In a modern world you have to work in order for you to do those things and so you are working to eat and sleep which is to survive. When you should be living. Why can't you pick something and work at it to be the best? What happened in that famous persons life in order for them to be better then everyone else? Why can't you be the best at whatever you want. Everything we do in this world is all created in our mind. You create your life in your mind. You think you're cool because your mind tells you. You think you're bored because your mind tells you. You think your doing good in life because your mind tells you. If a child grew up in a house that had siblings who were failing school and this child was just passing with a 60% they think they are doing good. But in reality they are limiting themselves with their own mind because they think they have done good since people around them are doing worse. If you set a goal and that is what your standard is in life go for it. You live and die. Everything in between in just an illusion. Why can't you make thinks levitate ? Because other peoples minds have forced your mind to believe it's impossible so you limit yourself. We all limit ourselves. It's all illusions of what is real and not.
    3 points
  4. Due to the the recent RuneScape update, various randoms were broken. The following release features: Strange plant fix Frog queen fix Ability to disable specific random event solvers via GUI (go to settings menu) Built-in run away from combat handler (only runs away from the following monsters at the moment: "Rock Golem", "Tree Spirit", "Shade", "Evil Chicken", "Swarm", "River Troll", "Strange Plant") Mouse has been tweaked Remember we encourage you to disable randoms if they interfere with your script. Such as the run away from combat handler or talker handler when using a PK helper script. Note, the following randoms might still be broken: Drill demon (works half of the time) Pinball (broke due to RuneScape's recent update according to various sources) Some other randoms may have been affected as well Thanks, Sincerely, Laz and the OSBot Team. To download, visit our homepage at http://osbot.org
    2 points
  5. public boolean WalkAlongPath(int[][] path, boolean AscendThroughPath, int distanceFromEnd) { if (distanceToPoint(AscendThroughPath ? path[path.length - 1][0] : path[0][0], AscendThroughPath ? path[path.length - 1][1] : path[0][1]) <= distanceFromEnd) return true; else { WalkAlongPath(path, AscendThroughPath); return false; } } public void WalkAlongPath(int[][] path, boolean AscendThroughPath) { int destination = 0; for (int i = 0; i < path.length; i++) if (distanceToPoint(path[i][0], path[i][1]) < distanceToPoint(path[destination][0], path[destination][1])) destination = i; if (script.client.getMyPlayer().isMoving() && distanceToPoint(path[destination][0], path[destination][1]) > (script.isRunning() ? 3 : 2)) return; if (AscendThroughPath && destination != path.length - 1 || !AscendThroughPath && destination != 0) destination += (AscendThroughPath ? 1 : -1); try { log("Walking to node:" + destination); script.walk(new Position(path[destination][0], path[destination][1], 0)); Thread.sleep(700 + MethodProvider.random(600)); } catch (InterruptedException e) { e.printStackTrace(); } } private int distanceToPoint(int pointX, int pointY) { return (int) Math.sqrt(Math.pow(script.client.getMyPlayer().getX() - pointX, 2) + Math.pow(script.client.getMyPlayer().getY() - pointY, 2)); } This allows you to have your character walk along a path, starting at any point along the path. It will walk like a human, not like a bot. This is how you'd use it: private int[][] path1 = new int[][] { { 3206, 3209 }, { 3215, 3211 }, { 3217, 3218 }, { 3225, 3218 }, { 3235, 3220 }, { 3242, 3226 }, { 3252, 3226 }, { 3251, 3235 }, }; public void walkToGoblins() { WalkAlongPath(path1, true); } public void walkToBankFromGoblins() { WalkAlongPath(path1, false); } public void walkToGoblinsThenAttack() { if(WalkAlongPath(path1, true, 1)) //The 1 is the distance away from destination state = State.AttackGoblins; } Enjoy.
    1 point
  6. I think he leaked a trade interface snippet that didn't belong to him
    1 point
  7. Support, PA is just basically a way of using PP without having the risk of chargeback
    1 point
  8. It's common to seasoned market people yes, but there are a huge amount of people who don't know these things which we assume are basic knowledge and get scammed. You'd really be surprised on how many people fall prey to Skype impostors the number is quite high, they check only the display name and not the profile and get fooled. Many new people to the market are also unaware about PayPal not covering virtual goods and getting charged back. Yeah noted down the bit about adding a Skype button to avoid this problem, and I was going to link your thread too, I'll add that now. Yah trust me i know alot of people get scammed from imposters ..... and this is a good thread not undercutting you or anything :P
    1 point
  9. "IF THERE IS A HELL" why are people punished? The "devil" wants you to do the wrong things and bring evil to the world, so why would you be punished for doing bad things when that is what Satan wants you to do? What is the point of doing good when God himself will shut you down if you don't follow his creed? Who made God? How are we sure that there aren't multiple beings that are over all more powerful than him? Everything in the bible could be corrupt, men have lied since the beginning of time, how can we be sure of what the bible says? I know this is more than one thought, and i'm not too deep into religion, but it's shit i wonder at times.
    1 point
  10. Oh sorry will add picture of virus scan
    1 point
  11. Are you really that dumb....... That's how they're supposed to look now TO SAVE YOUR ASS FROM GETTING BANNED, The bot is supposed to be a choppy inaccurate mouse, thats how a HUMAN moves the mouse on a screen, it doesn't move it smoothly and clicks perfectly on EVERY SINGLE THING a Human has mistakes. And so it has errors. I like the new mouse update, ITS A GREAT IMPROVEMENT. If you want to complain about it switch back to .18 But they did it to SAVE YOUR ASS. Are you really that dumb? So you're telling me a human will fail to click a damn NPC 90% of the times? Will follow it slowly as fuck (moving through the screen like 2mm per second) and walking to it with the minimap when it is clearly on the screen and ready to be clicked? I'm sorry but you don't even know what the fuck you're talking about. And I'm pretty sure that we, humans, don't fucking move the mouse so damn slowly and fail to click 1 out of 8 times an object or NPC. I'm sorry but I don't even barely ever fail to click a NPC when I'm playing legit.
    1 point
  12. Are you really that dumb....... That's how they're supposed to look now TO SAVE YOUR ASS FROM GETTING BANNED, The bot is supposed to be a choppy inaccurate mouse, thats how a HUMAN moves the mouse on a screen, it doesn't move it smoothly and clicks perfectly on EVERY SINGLE THING a Human has mistakes. And so it has errors. I like the new mouse update, ITS A GREAT IMPROVEMENT. If you want to complain about it switch back to .18 But they did it to SAVE YOUR ASS.
    1 point
  13. Calm your tits man. Jeesh lol. I was just asking a simple question. We can relax with quoting everything you see. If you looked through the forums you'd see that there are about 100 other posts of people looking for easy money makers. It's pretty logical that if you got something working for you, you don't give it away to be ruined. Try soft clay making or GDK. You want an easy no requirement method go spin flax. Try nature runes.
    1 point
  14. no, only to use more than 1 tab.
    1 point
  15. Yeah and also say I was releasing version 30 of my script, I would write the version as 1.30 but it becomes 1.3
    1 point
  16. http://www.newgrounds.com/portal/view/450670
    1 point
×
×
  • Create New...