Before 96 Posted July 22, 2016 I made a MTA script a few months ago but there wasn't much walking around that needed to be done there, but now I'm trying to make a Last Man Standing script. What's the easiest way to walk around in an instanced zone?
Cardozz 46 Posted July 22, 2016 I think grabbing the whole area and then get the tiles for specific entities you want to interact with or walk to?
Calculus 30 Posted July 22, 2016 Currently working on a problem like this... I think I've found the solution: find a game object which only appears ONCE in that instance, and grab its tile. Now you know where your main location can be, and can base everything else off of it...i.e. areas Tile t = new Tile(gameObject.getTile()); Area lastManStandingFightZone = new Area(t.getX()+20, t.getY()+20, t.getX()-20, t.getY()-20);
Recommended Posts
Archived
This topic is now archived and is closed to further replies.