Ornamental Posted March 15, 2016 Posted March 15, 2016 (edited) Dear friends, I ran into a problem while trying to figure out how webwalking works in eclipse. So basicly i'm still learning java and scripting so please tell me what i can do better and what is wrong All the help is welcome ! Any idea what this means or how i fix this ? Thanks Edited March 15, 2016 by Takes A Nap
lisabe96 Posted March 15, 2016 Posted March 15, 2016 (edited) Dear friends, I ran into a problem while trying to figure out how webwalking works in eclipse. So basicly i'm still learning java and scripting so please tell me what i can do better and what is wrong All the help is welcome ! Any idea what this means or how i fix this ? Thanks What you're trying to do doesn't exist. Please refer to the API docs: http://osbot.org/api/ As you can see for walking: http://osbot.org/api/org/osbot/rs07/api/Walking.html There is no method available as you are trying to use. Edited March 15, 2016 by lisabe96
Vilius Posted March 15, 2016 Posted March 15, 2016 (edited) getWalking().webWalk(new Position(x,y,z)); The webWalk method needs a Position object to be passed into its parameters. Someone didn't want to overload the method much more Edited March 15, 2016 by Vilius 1
Ornamental Posted March 15, 2016 Author Posted March 15, 2016 getWalking().webWalk(new Position(x,y,z)); The webWalk method needs a Position object to be passed into its parameters. Someone didn't want to overload the method much more What do you mean by this ? getWalking().webWalk(new Position(x,y,z)); The webWalk method needs a Position object to be passed into its parameters. Someone didn't want to overload the method much more Omg thanks alot that worked ! 1