mrpeepoo 1 Posted April 16, 2024 I'm trying to add obstacles and teleports into the nodes. I was able to add a ladder to a second floor correctly. but trying to get into Stronghold of Security is quite challenging. I've tried making it an entrance and that didn't work. Making it a teleport like such didn't really do anything since there is no way to interact with it. Connect this with a node existing one nearby showed the lines connecting, but it doesn't interact with the entrance. What is the correct way to connect the WebFinder? TeleportWebNode entranceTeleport = new TeleportWebNode(new Teleport() { Area entranceArea = new Area(3078, 3423, 3083, 3418); @Override public int getX() { return 3081; } @Override public int getY() { return 3420; } @Override public int getZ() { return 0; } @Override public boolean hasRequirements() { return true; } @Override public boolean execute() { return true; } });
mrpeepoo 1 Author Posted April 17, 2024 Got it working somehow with EntranceNodes, though wasn't working before weird.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now