Jump to content

Extreme Scripts

Trade With Caution
  • Posts

    10702
  • Joined

  • Last visited

  • Days Won

    27
  • Feedback

    96.2%

Everything posted by Extreme Scripts

  1. If you could confirm for us does it capture the paint also?
  2. Well the issue is that you are instantiating objects before the script even loads. You need to declare them in the scope then instantiate them in the onLoop()/onStart(). Something to this effect if you don't get what I mean: class FlaxSpinner extends Script{ public Player myPlayer; public void onLoop(){ myPlayer = getPlayer(); //or whatever you call the method } } Hopefully you get the idea, you need to do this for all the objects created. This is bad practice assigning a new object every call of the loop so I would recommend you put it in a statement block where if you reach a certain area lets say then it will create the object. if(myPlayer.isInArea(BANK)){ bankBooth = objects.closest("bank booth"); if(bankBooth != null){ bankBooth.interact("Use"); } } Don't copy n paste pulled the API from my head and it's not doubt wrong
  3. Thanks @Maxi, nice to see you around so much!
  4. @TiempoSales has been banned again due to not appealing his ban in the correct manner (Bans are to be appealed through the appropriate section and not via another user through PM) with sufficient evidence that he has refunded both you and . If he wishes to return he will need to refund you also and post the evidence of doing so in the Refunds/Appeals section for all staff to see. PS: I have removed some of your original post and hidden for Staff to see as it may contain sensitive information you do not wish to be publicised.
  5. Also null check before interacting with it otherwise you will get horrible NPE's.
  6. If he wishes to be unbanned there is a Appeal section for that, his IP is not banned so he should be able to post get him to post there with evidence.
  7. We use to have 150 average users a day now its getting back to what it was slowly.
  8. You need 100 post count to sell an account. The rule is there to prevent new comers from scamming from the get go ^_^
  9. Rising from the ashes, keep it up Devs ^_^: Obviously with its two favourite Staff members
  10. I assume it will just select the first interaction available in the menu?
  11. N as always thanks @Zach just cos.
  12. Removed the feedback as the reasoning wasn't valid for a neutral feedback. If @Aggre wishes to leave a neutral he should take a look at the guidelines.
  13. You have a lot of NPE's in your script. Post the code.
  14. Try the solution which @Khaleesi mentioned, if that doesn't work just try leaving it on that screen for 10 minutes. It may seem like its doing nothing but in fact its downloading the client.
  15. Removed, script comments are not meant for the feedback tab.
  16. I deleted your posts cos you spammed the exact same reply across two of my threads stating things which I had already told you is not script related. You have been using the scripts for months without any script related issue (you probably got banned hence copy pasting ur reply). I already told you the interface interactions is not within my control, I use the default OSBot interface interactions and if it overshoots sometimes (1/10000 chance) then thats not a script related issue, I didn't develop the client to be able to fix it. Just so you know, I hid your post for a reason, its still visible to the Staff to view in case of threads like this... It was one post not all the posts you are claiming to have been "removed". We have ACP which keeps track of exactly what actions where performed on posts.
  17. The payment shows to have been paid successfully. Refresh your script page in the client and it will be there ^_^
  18. Think he's talking about kWarriors.
  19. Apologies for the inconvenience on our end. It seems the issue was sorted and you no longer require TWC unless further tangible evidence is given. Closed.
  20. The scripting API has changed from when that video was made, API is the new API for OSBot 2. Also there are tons of tutorials in the scripting section with guides from various scripters taking you through the steps of making your first script ^_^
  21. I think our forums are as clean as they will be, what suggestions did you have in mind.
×
×
  • Create New...