Jump to content

AresScripts

Members
  • Posts

    1770
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by AresScripts

  1. can i use this in my scripts?
  2. Just wait for the prices to adjust. Things will work themselves out
  3. Npc NpcVariableName = getNpcs().closest("NPC GAME NAME"); if(NpcVariableName != null && !myPlayer().isInteracting(NpcVariableName){ NpcVariableName.interact("Talk-to"); }
  4. yup lol EDIT: oh i just saw what he said...
  5. Im looking for someone to make me a script logo. I can pay $5. Are you interested?
  6. its so hard that they added a new block to minecraft thats stronger than diamondEDIT: I cant tell if that was a funny joke or just really nerdy...
  7. I could really use this right now... LOL cant wait to use it
  8. Yeah. Ill run it again and show u a screenshot Only the north one and i think its because it logs before it executes the method.
  9. That has to do with what direction the player is facing. (north, south, east, and west)
  10. Do you have a time frame for when the Client Mirror system will come out?
  11. Lol k. Not sure what im doing wrong then Its not that important though. Thanks for ur help!
  12. private void checkCamera() { if (s.myPlayer().getRotation() == northRotation) { if (s.getCamera().getYawAngle() < 360 - 45 && s.getCamera().getYawAngle() > 45) { s.log("turn north"); int number = s.random(360 - 45, 360 + 45); if (number > 360) number -= 360; s.getCamera().moveYaw(number); } } if (s.myPlayer().getRotation() == eastRotation) { if (s.getCamera().getYawAngle() < 45 && s.getCamera().getYawAngle() > 90 + 45) { s.getCamera().moveYaw(s.random(45, 90 + 45)); s.log("turn east"); } } if (s.myPlayer().getRotation() == southRotation) { if (s.getCamera().getYawAngle() < 90 + 45 && s.getCamera().getYawAngle() > 180 + 45) { s.getCamera().moveYaw(s.random(90 + 45, 180 + 45)); s.log("turn south"); } } if (s.myPlayer().getRotation() == westRotation) { if (s.getCamera().getYawAngle() < 90 + 45 && s.getCamera().getYawAngle() > 180 + 45) { s.getCamera().moveYaw(s.random(180 + 45, 360 - 45)); s.log("turn west"); } } s.getCamera().toTop(); }
  13. Has anyone else had problems with this method not doing anything?
  14. I had this problem earlier. You need to make the distance between tiles smaller. Try making it less than 10
  15. i would love to know how to make 180x180 pictures like the one in my signature
  16. I like it alot better. I would flip, but right not im spendinf every waking moment on scripting
  17. From the mouth of god humself
×
×
  • Create New...