MassRS Posted March 9, 2015 Share Posted March 9, 2015 How do I check if my player is in a area? like this? if (!WEBAREA.contains(players.myPosition()){ } Quote Link to comment Share on other sites More sharing options...
Extreme Scripts Posted March 9, 2015 Share Posted March 9, 2015 if(!AREA.contains(myPlayer()){ //execute } Quote Link to comment Share on other sites More sharing options...
Mysteryy Posted March 9, 2015 Share Posted March 9, 2015 How do I check if my player is in a area? like this? if (!WEBAREA.contains(players.myPosition()){ } The best way to learn is to find out for yourself. Run that code and inside of it put a log, "In area" If it logs then you know that is how to do it. Seeing and finding out how to do things yourself will make a much larger impact and improved impression in your memory than if someone just tells you. Quote Link to comment Share on other sites More sharing options...
Joseph Posted March 9, 2015 Share Posted March 9, 2015 The best way to learn is to find out for yourself. Run that code and inside of it put a log, "In area" If it logs then you know that is how to do it. Seeing and finding out how to do things yourself will make a much larger impact and improved impression in your memory than if someone just tells you. on top of that if using logs get tiring and annoying you can use onPaint to display results. IF you are like me, i like to see it 2 Quote Link to comment Share on other sites More sharing options...
Twin Posted March 9, 2015 Share Posted March 9, 2015 The best way to learn is to find out for yourself. Run that code and inside of it put a log, "In area" If it logs then you know that is how to do it. Seeing and finding out how to do things yourself will make a much larger impact and improved impression in your memory than if someone just tells you. If he doesn't have much experience, though, reading the api might be an issue. Sometimes little kickstarts like that can lead to the whole engine being turned on. (awful analogy I know) 1 Quote Link to comment Share on other sites More sharing options...