|
You last visited: Today at 03:00
Advertisement
[GF][eXLib] - OpenBot | Level/Teleport/Pickup/Pickup
Discussion on [GF][eXLib] - OpenBot | Level/Teleport/Pickup/Pickup within the Metin2 Hacks, Bots, Cheats, Exploits & Macros forum part of the Metin2 category.
07/11/2022, 14:41
|
#361
|
elite*gold: 0
Join Date: Oct 2020
Posts: 16
Received Thanks: 0
|
Quote:
Originally Posted by Avenes2010
Fix?
|
Yes because doesnt work
|
|
|
07/14/2022, 03:17
|
#362
|
elite*gold: 0
Join Date: Dec 2021
Posts: 2
Received Thanks: 0
|
Was the energybot fixed?
|
|
|
07/23/2022, 01:20
|
#363
|
elite*gold: 0
Join Date: Feb 2013
Posts: 7
Received Thanks: 0
|
i made this, its not automated, just walk or warp to the defined positions
i use it to make energy, you can use a macro recorder as i do bcz the camera pos dont change if you dont touch it, i use the JitBit macro recorder bcs have options like image recognition
just replace the Radar.py with this code
Code:
from BotBase import BotBase
from UIComponents import Component
import Movement, Data
import chat, ui, chr, m2netm2g, background, time, player
import OpenLib
import eXLib
import re
Mode = "Walk"
class Radar(BotBase):
def __init__(self):
BotBase.__init__(self, 0.5)
self.BuildWindow()
self.path = []
self.path2 = []
def BuildWindow(self):
self.Board = ui.BoardWithTitleBar()
self.Board.SetSize(290, 120)
self.Board.SetPosition(52, 40)
self.Board.AddFlag('movable')
self.Board.SetTitleName('Go To')
self.Board.SetCloseEvent(self.switch_state)
self.Board.Hide()
comp = Component()
#WaponsDealer
self.text_lineEditLine = comp.TextLine(self.Board, 'WeaponsNpc :', 20, 40, comp.RGB(255, 255, 255))
self.barItems, self.fileListBox_Weapons, self.ScrollBar = comp.ListBoxEx2(self.Board, 100, 40, 80, 15)
self.GoToWeapons = comp.Button(self.Board, 'Go', '', 225, 35, self.GoToWeaponsDealer,
'd:/ymir work/ui/public/small_button_01.sub',
'd:/ymir work/ui/public/small_button_02.sub',
'd:/ymir work/ui/public/small_button_03.sub')
self.GetWeaponsPos = comp.Button(self.Board, 'Get', '', 180, 35, self.get_weaponspos,
'd:/ymir work/ui/public/small_Button_01.sub',
'd:/ymir work/ui/public/small_Button_02.sub',
'd:/ymir work/ui/public/small_Button_03.sub')
#Alchemist
self.text_lineEditLine2 = comp.TextLine(self.Board, 'AlchemistNpc :', 20, 60, comp.RGB(255, 255, 255))
self.barItems2, self.fileListBox_Alchemist, self.ScrollBar = comp.ListBoxEx2(self.Board, 100, 60, 80, 15)
self.GoToAlchemist = comp.Button(self.Board, 'Go', '', 225, 55, self.GoToAlchemistDealer,
'd:/ymir work/ui/public/small_button_01.sub',
'd:/ymir work/ui/public/small_button_02.sub',
'd:/ymir work/ui/public/small_button_03.sub')
self.GetAlchemistPos = comp.Button(self.Board, 'Get', '', 180, 55, self.get_alchemistpos,
'd:/ymir work/ui/public/small_Button_01.sub',
'd:/ymir work/ui/public/small_Button_02.sub',
'd:/ymir work/ui/public/small_Button_03.sub')
self.PositionTxt = comp.TextLine(self.Board, 'Actual Position :', 20, 80, comp.RGB(255, 255, 255))
self.PositionText = ui.TextLine()
self.PositionText.SetParent(self.Board)
self.PositionText.SetFontColor(1, 1, 1)
self.PositionText.SetText("(200, 800)")
self.PositionText.SetPosition(100, 80)
self.PositionText.Show()
global Mode
self.ModeButton = ui.Button()
self.ModeButton.SetParent(self.Board)
self.ModeButtonText = comp.TextLine(self.Board, 'Mode :', 180, 80, comp.RGB(255, 255, 255))
self.ModeButton.SetUpVisual("d:/ymir work/ui/public/small_button_01.sub")
self.ModeButton.SetOverVisual("d:/ymir work/ui/public/small_button_02.sub")
self.ModeButton.SetDownVisual("d:/ymir work/ui/public/small_button_03.sub")
self.ModeButton.SetText(Mode)
self.ModeButton.SetEvent(lambda : self.ChangeMode())
self.ModeButton.SetPosition(225, 75)
self.ModeButton.Show()
x_size = 235
y_size = 100
def OnUpdate(self):
(PlayerX, PlayerY, PlayerZ) = player.GetMainCharacterPosition()
self.PositionText.SetText("%s, %s" % (int(PlayerX / 100), int(PlayerY / 100)))
def ChangeMode(self):
global Mode
if Mode == "Warp":
Mode = "Walk"
else:
Mode = "Warp"
self.ModeButton.SetText(Mode)
def get_weaponspos(self):
self.fileListBox_Weapons.RemoveAllItems()
self.path = []
x, y, z = player.GetMainCharacterPosition()
self.path.append((x / 100, y / 100))
self.update_weaponspos()
def get_alchemistpos(self):
self.fileListBox_Alchemist.RemoveAllItems()
self.path2 = []
x, y, z = player.GetMainCharacterPosition()
self.path2.append((x / 100, y / 100))
self.update_alchemistpos()
def update_weaponspos(self):
self.fileListBox_Weapons.RemoveAllItems()
for position in self.path:
x, y = int(position[0]), int(position[1])
self.fileListBox_Weapons.AppendItem(OpenLib.Item(str(x) + ', ' + str(y)))
def update_alchemistpos(self):
self.fileListBox_Alchemist.RemoveAllItems()
for position in self.path2:
x, y = int(position[0]), int(position[1])
self.fileListBox_Alchemist.AppendItem(OpenLib.Item(str(x) + ', ' + str(y)))
def GoToWeaponsDealer(self):
global Mode
for position in self.path:
x, y = int(position[0]), int(position[1])
if Mode == "Walk":
Movement.GoToPositionAvoidingObjects(x * 100, y * 100)
else:
Movement.TeleportToPosition(x * 100, y * 100)
def GoToAlchemistDealer(self):
for position in self.path2:
x, y = int(position[0]), int(position[1])
if Mode == "Walk":
Movement.GoToPositionAvoidingObjects(x * 100, y * 100)
else:
Movement.TeleportToPosition(x * 100, y * 100)
def switch_state(self):
if self.Board.IsShow():
self.Board.Hide()
else:
self.Board.Show()
def switch_state():
radar.switch_state()
radar = Radar()
i can do a video tut for the mocro recorder if anyone want it
sorry for my bad eng
|
|
|
07/24/2022, 06:48
|
#364
|
elite*gold: 0
Join Date: Jul 2022
Posts: 1
Received Thanks: 0
|
yea , you can make a tutorial
|
|
|
07/24/2022, 11:25
|
#365
|
elite*gold: 0
Join Date: Aug 2021
Posts: 3
Received Thanks: 1
|
When I inject it with Extreme injector the game just crashes
When I inject it with Extreme injector the game just crashes
|
|
|
07/25/2022, 09:26
|
#366
|
elite*gold: 0
Join Date: Dec 2021
Posts: 5
Received Thanks: 0
|
Waithack work?
|
|
|
07/25/2022, 17:59
|
#367
|
elite*gold: 0
Join Date: Aug 2020
Posts: 98
Received Thanks: 20
|
waithack not anymore, cheat is not updated
|
|
|
07/25/2022, 18:52
|
#368
|
elite*gold: 0
Join Date: May 2014
Posts: 2
Received Thanks: 0
|
Wont work on GF server
Hey man, the injection worked just fine, I am playing on GF meti2 Germania. But as soon as I want to start the hack, nothing happens. The task bar pops up, and I can use the speed hack, but no levelbot or anything, when I attack the mobs they dont receive any damage. Do you know what I am doing wrong?
|
|
|
07/25/2022, 19:13
|
#369
|
elite*gold: 0
Join Date: Aug 2020
Posts: 98
Received Thanks: 20
|
cheat is not updated !, dmg doesnt work
|
|
|
08/04/2022, 21:29
|
#370
|
elite*gold: 0
Join Date: Mar 2020
Posts: 1
Received Thanks: 0
|
Martin, please update it, it is highly needed a hack nowadays, everything now is paid and most of them don't work.
|
|
|
08/05/2022, 23:20
|
#371
|
elite*gold: 0
Join Date: Aug 2022
Posts: 1
Received Thanks: 0
|
we wait for an update of the hack..the task bar pops but nothing happens when i hit start..the mobs don-t recieve damage..
|
|
|
08/06/2022, 10:08
|
#372
|
elite*gold: 0
Join Date: Aug 2020
Posts: 98
Received Thanks: 20
|
will be not updated, this thread can be closed
|
|
|
08/08/2022, 22:38
|
#373
|
elite*gold: 384
Join Date: Apr 2016
Posts: 38
Received Thanks: 7
|
red/blue potting >> still work
waithack and so on >> not working
no update for a long time
|
|
|
08/10/2022, 20:01
|
#374
|
elite*gold: 0
Join Date: Aug 2022
Posts: 2
Received Thanks: 0
|
can some one tell me, why not for P server so many Bots / hacks possible?
|
|
|
08/26/2022, 17:21
|
#375
|
elite*gold: 0
Join Date: Aug 2014
Posts: 124
Received Thanks: 6
|
someone has made the fishbot works? can you may tell me?
|
|
|
 |
|
Similar Threads
|
[Release][GF] eXLib - The Python Advanced Module
06/03/2023 - Metin2 Hacks, Bots, Cheats, Exploits & Macros - 47 Replies
Hello everyone, today I came to release an advanced python module with lot of rich features for all python developers.
I have been adding functions for this module for the past few months, and finally i think is stable enought for release.
With this python module developers will be able to create the folowing only using python!:
Inject python scripts
WaitHack
Access the entity list
Create a route using path-finding
Create fast fishing-bot
|
Meine Openbot Erfahrungen
03/02/2009 - WoW Bots - 50 Replies
Ich habe seid Gestern einen InnerSpace Account und mir OpenBot gezogen, zunächst versuchte ich InnerSpace unter Linux zu installieren, das problem war das InnerSpace sämmtliche Daten in den falschen Ordner geladen hat, das war mir dann zu doof und ich Windows gebootet.
InnerSpace lies sich leich so einstellen das wow mit isxwarden (von isxwow.net) startete, der Guide auf isxwow ist einfach verständlich dank der schönen Bilder, dann habe ich schnell in der Console, die sich nach einem druck...
|
Suche Openbot Auto Mapper
03/14/2008 - WoW Bots - 1 Replies
Leider ist der Link Offline hat jemand bitte einen Aktuellen Link für das Tool ?
|
Openbot automapper Frage
03/04/2008 - World of Warcraft - 3 Replies
Hat den schon mal wer benutzt? Ich versteh ihn nicht ganz. Habe Hotspots gesetzt und dann die map gemappt, aber er sagt mir das ich nicht genug mappingdata habe.
Edit: Sry, falsches Forum. Pls mal ins Botforum schieben
|
[GUIDE] Innerspace (Running OpenBot) vs Glider
06/14/2007 - WoW Bots - 1 Replies
Innerspace (Running OpenBot) vs Glider
As the title says this is a little thread that i will make Innerspace vs Glider.
As many of you know, I have been a strong and big fan of glider for a long time.
During my time with glider i heard a lot of things about Innerspace, things like: zomg Innerspace is so hard to setup, it's only for coders, It's much better than glider, Much more customizeable than glider.
However, the day before yesterday, I decided to buy and test out the so called...
|
All times are GMT +1. The time now is 03:00.
|
|