![]() |
How i can see an Door ID and how i open Door on Bot ? - Printable Version +- BBot - The best bot of the world (https://forums.bmega.net) +-- Forum: Scripts & Macros (https://forums.bmega.net/forum-4.html) +--- Forum: Requests (https://forums.bmega.net/forum-17.html) +--- Thread: How i can see an Door ID and how i open Door on Bot ? (/thread-20913.html) |
How i can see an Door ID and how i open Door on Bot ? - Kayudjin - 09-04-2018 Hello, i want to know how i can see an Closed / Open Door Id Ingame. ? And how i can open an door with bot ? Is it possible to Fix an Script with that function ? Thanks for help ![]() RE: How i can see an Door ID and how i open Door on Bot ? - Catar - 09-04-2018 Alt+F8 and look at item to see its ID in left top corner. To open /close doors use map tool http://wiki.bmega.net/doku.php?id=add_types#map_tool RE: How i can see an Door ID and how i open Door on Bot ? - Kayudjin - 09-05-2018 +++ REP Thanks for ur help But i can use that map tool when i have an script already but there it doesnt work ? @Catar RE: How i can see an Door ID and how i open Door on Bot ? - Catar - 09-05-2018 You mean while walking manually? RE: How i can see an Door ID and how i open Door on Bot ? - Kayudjin - 09-11-2018 (09-05-2018, 01:25 PM)Catar Wrote: You mean while walking manually? no i mean in one way it work , on hexera the door to serpent spwans of kaltia. when i want go back and door is closed it doesnt work. how can i fix that ? RE: How i can see an Door ID and how i open Door on Bot ? - Hunger - 09-11-2018 1000 {Open Door} X:=Self.X Y:=Self.Y Z:=Self.Z Map.Use(5732, !X!, !Y!, !Z!, 3) Try this 5732 is the Door ID RE: How i can see an Door ID and how i open Door on Bot ? - Kayudjin - 09-11-2018 (09-11-2018, 06:27 PM)Hunger Wrote: 1000 {Open Door} X:=Self.X Y:=Self.Y Z:=Self.Z Map.Use(5732, !X!, !Y!, !Z!, 3) I fixed, thanks. The door ID is 5728. It was missing an waypoint, was not standing in front of the door, then i used Macro almost exactly the same as you, except the door id and changed Waypoints to walk 2 sqm more. 1000 {Open Door Without Key} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Map.Use(5278, !X!, !Y!, !Z!, 2) btw.. The 2 (5278, !X!, !Y!, !Z!, 2) is the Range as 2 sqm away ? RE: How i can see an Door ID and how i open Door on Bot ? - Hunger - 09-11-2018 (09-11-2018, 07:51 PM)Kayudjin Wrote:(09-11-2018, 06:27 PM)Hunger Wrote: 1000 {Open Door} X:=Self.X Y:=Self.Y Z:=Self.Z Map.Use(5732, !X!, !Y!, !Z!, 3) Yes, but to use this just add a FixedPoint in your cavebot beside the door. |