Jump to content

filestealer

Members
  • Posts

    10
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

562 profile views

filestealer's Achievements

Newbie

Newbie (1/10)

0

Reputation

  1. Thank you so much for your help, I will monitor it and see how it works in the situation. I appreciate all your help.
  2. Actually this did not work due to the fact that the name of the ent is the same as the tree. Okay well the ent is an NPC not an RSObject right? (yellow text instead of blue) so try: if(myPlayer().getFacing() != null) { if(myPlayer().getFacing().getName().equals("Tree") && myPlayer().getFacing() instanceof NPC) ) { //chop a new tree } } The text becomes yellow whenever the tree becomes an ent Then it is an NPC and the code I posted should work. using this code, i got an 2 errors NPC cannot be resolved to a type Incompatible conditional operand types Character<capture#3-of ?> I appreciate any help, I have been coding java for just over a year now, im just unfamiliar with osbot methods. I have coded about 12 basic scripts over the course of about 2 weeks of learning how to code on osbot. So any methods you can teach me to help figure this out would be very much appreciated.
  3. Actually this did not work due to the fact that the name of the ent is the same as the tree. Okay well the ent is an NPC not an RSObject right? (yellow text instead of blue) so try: if(myPlayer().getFacing() != null) { if(myPlayer().getFacing().getName().equals("Tree") && myPlayer().getFacing() instanceof NPC) ) { //chop a new tree } } The text becomes yellow whenever the tree becomes an ent using this code, i got an 2 errors NPC cannot be resolved to a type Incompatible conditional operand types Character<capture#3-of ?>
  4. How would this fix the problem? The ent doesnt put you in combat. It just breaks your axe if you continue to try and chop it, and this does not identify if you are facing the ent or not.
  5. Actually this did not work due to the fact that the name of the ent is the same as the tree.
  6. Anyone have a snippet to find an Ent (random wcing tree that damages your axe) and avoid it? I tried many different ideas of how to make this work, they never seemed to be successful. Any suggestions? EDIT: DUE TO A LAG, THIS WAS POSTED 3 TIMES. I APOLOGIZE.
×
×
  • Create New...