|
You last visited: Today at 08:11
Advertisement
[Release][Src][Python] Level - Farm - Buff - Bot
Discussion on [Release][Src][Python] Level - Farm - Buff - Bot within the Metin2 Hacks, Bots, Cheats, Exploits & Macros forum part of the Metin2 category.
02/14/2018, 13:50
|
#121
|
elite*gold: 0
Join Date: May 2013
Posts: 1
Received Thanks: 0
|
How can i set it to attack without moving?
Hi! I am playing on a romanian server and iPUSH doesn t work anymore.
Server name: Candylongju : 
Error message : I can open it but i can t use metinstone bot (it doesn t attack metinstones, it is always walking)
Content of syserr.txt : nothing
|
|
|
02/17/2018, 22:04
|
#122
|
elite*gold: 0
Join Date: Jun 2016
Posts: 291
Received Thanks: 73
|
The Metinstone Feautre doesnt work .. It doens't attack the Metin Stones, only walking around. pls help bro
|
|
|
02/18/2018, 17:03
|
#123
|
elite*gold: 0
Join Date: Jan 2016
Posts: 8
Received Thanks: 0
|
Hey iPush! can you tell me how you learn python because i whant to try learning to, you learn on your own or you go to a school for this ?
ps: sorry for my bad english i am not use to writing more speaking on skype
|
|
|
02/23/2018, 16:37
|
#124
|
elite*gold: 44
Join Date: May 2011
Posts: 245
Received Thanks: 65
|
Does it work?
|
|
|
02/26/2018, 18:19
|
#125
|
elite*gold: 0
Join Date: Oct 2013
Posts: 7
Received Thanks: 0
|
Quote:
Originally Posted by Toyota Supra
Does it work?
|
for me not worked.. on gf servers
|
|
|
03/20/2018, 07:11
|
#126
|
elite*gold: 0
Join Date: Jun 2014
Posts: 90
Received Thanks: 32
|
Still works for me on P-Server
|
|
|
03/22/2018, 15:02
|
#127
|
elite*gold: 0
Join Date: Nov 2011
Posts: 519
Received Thanks: 108
|
kann man das nciht so machen das wen er ein metin zerstört hat noch 3 4 sekunden wartet damit er aufhebt muss ein anderen pickup bot benutzen weil der von iPUSH nicht geht der rest geht
oder so das er schneller aufhebt oder größere range das ist der pickup bot .py
import os
import app
import dbg
import grp
import item
import background
import chr
import chrmgr
import player
import snd
import chat
import textTail
import snd
import net
import effect
import wndMgr
import fly
import systemSetting
import quest
import guild
import skill
import messenger
import locale
import constInfo
import exchange
import time
import ui
class PickUP(ui.ScriptWindow):
def __init__(self):
ui.ScriptWindow.__init__(self)
self.LoadPick()
def __del__(self):
ui.ScriptWindow.__del__(self)
def LoadPick(self):
chat.AppendChat(chat.CHAT_TYPE_NOTICE, "Metin2 PickUpBot v1.0")
chat.AppendChat(chat.CHAT_TYPE_NOTICE, "© DubstepCat[www.elitepvpers.com]")
self.LoadMainForm()
self.FaceButton()
def LoadMainForm(self):
#############################MainForm
global OnOff
self.Board = ui.BoardWithTitleBar()
self.Board.SetSize(200, 110)
self.Board.SetPosition(wndMgr.GetScreenWidth()-500, wndMgr.GetScreenHeight()-400)
self.Board.AddFlag("movable")
self.Board.AddFlag("float")
self.Board.SetTitleName("PickUpBot by DubstepCat")
self.Board.SetCloseEvent(self.Board.Hide)
self.Board.Show()
#############################nterface
self.PickMessage = ui.TextLine()
self.PickMessage.SetParent(self.Board)
self.PickMessage.SetPosition(75, 40)
self.PickMessage.SetText("Options:")
self.PickMessage.Show()
#############################Buttons
self.PickOn = ui.Button()
self.PickOn.SetParent(self.Board)
self.PickOn.SetUpVisual("d:/ymir work/ui/public/large_button_01.sub")
self.PickOn.SetOverVisual("d:/ymir work/ui/public/large_button_02.sub")
self.PickOn.SetDownVisual("d:/ymir work/ui/public/large_button_03.sub")
self.PickOn.SetText("Start")
self.PickOn.SetPosition(10, 70)
self.PickOn.SetEvent(self.PickUp)
self.PickOn.Show()
self.PickOff = ui.Button()
self.PickOff.SetParent(self.Board)
self.PickOff.SetUpVisual("d:/ymir work/ui/public/large_button_01.sub")
self.PickOff.SetOverVisual("d:/ymir work/ui/public/large_button_02.sub")
self.PickOff.SetDownVisual("d:/ymir work/ui/public/large_button_03.sub")
self.PickOff.SetText("Stop")
self.PickOff.SetPosition(100, 70)
self.PickOff.SetEvent(self.PickUpStop)
self.PickOff.Show()
def FaceButton(self):
global PickButton
PickButton = ui.Button()
PickButton.SetText("")
PickButton.SetPosition(wndMgr.GetScreenWidth()-100,wndMgr.GetScreenHeight()-500)
PickButton.SetSize(88, 21)
PickButton.SetEvent(self.Board.Show)
PickButton.SetUpVisual("d:/ymir work/ui/public/large_button_01.sub")
PickButton.SetOverVisual("d:/ymir work/ui/public/large_button_02.sub")
PickButton.SetDownVisual("d:/ymir work/ui/public/large_button_03.sub")
PickButton.Show()
global PickText
PickText = ui.TextLine()
PickText.SetParent(PickButton)
PickText.SetVerticalAlignCenter()
PickText.SetHorizontalAlignCenter()
PickText.SetPosition(43,10)
PickText.SetText("PickUpBot")
PickText.Show()
def SendGoldDown(self):
net.SendGoldDropPacketNew(500)
def OpenInv(self):
ToggleInventoryWindow()
def PickUp(self):
chat.AppendChat(chat.CHAT_TYPE_NOTICE, "[INFO]:PickUp is ON!")
self.PickUpStart()
def PickUpStart(self):
player.PickCloseItem()
self.Delay = WaitingDialog()
PickDelay = 0.1
self.Delay.Open(int(PickDelay))
self.Delay.SAFE_SetTimeOverEvent(self.PickUpStart)
def PickUpStop(self):
chat.AppendChat(chat.CHAT_TYPE_NOTICE, "[INFO]:PickUp is OFF!")
StopDelay = 999999
self.Delay.Open(int(StopDelay))
def Stealth(self):
player.HidePlayer()
class WaitingDialog(ui.ScriptWindow):
def __init__(self):
ui.ScriptWindow.__init__(self)
self.eventTimeOver = lambda *arg: None
self.eventExit = lambda *arg: None
def __del__(self):
ui.ScriptWindow.__del__(self)
def Open(self, waitTime):
curTime = time.clock()
self.endTime = curTime + waitTime
self.Show()
def Close(self):
self.Hide()
def Destroy(self):
self.Hide()
def SAFE_SetTimeOverEvent(self, event):
self.eventTimeOver = ui.__mem_func__(event)
def SAFE_SetExitEvent(self, event):
self.eventExit = ui.__mem_func__(event)
def OnUpdate(self):
lastTime = max(0, self.endTime - time.clock())
if 0 == lastTime:
self.Close()
self.eventTimeOver()
else:
return
StartDialog = PickUP()
StartDialog.Board.Hide()
Schau im spoiler bitte
|
|
|
03/22/2018, 16:27
|
#128
|
elite*gold: 0
Join Date: Mar 2018
Posts: 42
Received Thanks: 19
|
Funktioniert bot?
|
|
|
03/23/2018, 14:02
|
#129
|
elite*gold: 0
Join Date: Jul 2015
Posts: 7
Received Thanks: 0
|
@
I tryed to inject the file but he's loading for ever.
Please answer. Need that Metinstone ****!
|
|
|
03/24/2018, 14:11
|
#130
|
elite*gold: 0
Join Date: May 2009
Posts: 26
Received Thanks: 6
|
Fyi, doesnt work on TUR servers
|
|
|
03/29/2018, 19:11
|
#131
|
elite*gold: 0
Join Date: Sep 2010
Posts: 6
Received Thanks: 0
|
Can you make it work on Fly2.in?
Error message: Couldn't load python27.dll!
I tried with Extreme Injector.
|
|
|
04/03/2018, 06:29
|
#132
|
elite*gold: 0
Join Date: Jun 2009
Posts: 142
Received Thanks: 14
|
Quote:
Originally Posted by Alex19950717
Can you make it work on Fly2.in?
Error message: Couldn't load python27.dll!
I tried with Extreme Injector.
|
I have the same problem, Idk why ...
Some1 have any solution ???
|
|
|
04/08/2018, 14:31
|
#133
|
elite*gold: 0
Join Date: Oct 2017
Posts: 2
Received Thanks: 0
|
0408 15:31:08051 :: pack/root: Error Code 7
|
|
|
04/10/2018, 10:18
|
#134
|
elite*gold: 0
Join Date: Nov 2013
Posts: 1
Received Thanks: 0
|
I've successfully injected the script but it doesn't seem to work. the auto attack makes the character move in random directions, screen freezes after 2-3 sec and it doesn't attack anything even though there are mobs all around
edit: if I start with the patcher, it works properly. thanks
edit2: my metin2 client tends to crash after some time, any idea why?
|
|
|
04/12/2018, 17:39
|
#135
|
elite*gold: 0
Join Date: Jun 2016
Posts: 22
Received Thanks: 56
|
Quote:
Originally Posted by SkyLiine®
kann man das nciht so machen das wen er ein metin zerstört hat noch 3 4 sekunden wartet damit er aufhebt muss ein anderen pickup bot benutzen weil der von iPUSH nicht geht der rest geht
oder so das er schneller aufhebt oder größere range das ist der pickup bot .py
import os
import app
import dbg
import grp
import item
import background
import chr
import chrmgr
import player
import snd
import chat
import textTail
import snd
import net
import effect
import wndMgr
import fly
import systemSetting
import quest
import guild
import skill
import messenger
import locale
import constInfo
import exchange
import time
import ui
class PickUP(ui.ScriptWindow):
def __init__(self):
ui.ScriptWindow.__init__(self)
self.LoadPick()
def __del__(self):
ui.ScriptWindow.__del__(self)
def LoadPick(self):
chat.AppendChat(chat.CHAT_TYPE_NOTICE, "Metin2 PickUpBot v1.0")
chat.AppendChat(chat.CHAT_TYPE_NOTICE, "© DubstepCat[www.elitepvpers.com]")
self.LoadMainForm()
self.FaceButton()
def LoadMainForm(self):
#############################MainForm
global OnOff
self.Board = ui.BoardWithTitleBar()
self.Board.SetSize(200, 110)
self.Board.SetPosition(wndMgr.GetScreenWidth()-500, wndMgr.GetScreenHeight()-400)
self.Board.AddFlag("movable")
self.Board.AddFlag("float")
self.Board.SetTitleName("PickUpBot by DubstepCat")
self.Board.SetCloseEvent(self.Board.Hide)
self.Board.Show()
#############################nterface
self.PickMessage = ui.TextLine()
self.PickMessage.SetParent(self.Board)
self.PickMessage.SetPosition(75, 40)
self.PickMessage.SetText("Options:")
self.PickMessage.Show()
#############################Buttons
self.PickOn = ui.Button()
self.PickOn.SetParent(self.Board)
self.PickOn.SetUpVisual("d:/ymir work/ui/public/large_button_01.sub")
self.PickOn.SetOverVisual("d:/ymir work/ui/public/large_button_02.sub")
self.PickOn.SetDownVisual("d:/ymir work/ui/public/large_button_03.sub")
self.PickOn.SetText("Start")
self.PickOn.SetPosition(10, 70)
self.PickOn.SetEvent(self.PickUp)
self.PickOn.Show()
self.PickOff = ui.Button()
self.PickOff.SetParent(self.Board)
self.PickOff.SetUpVisual("d:/ymir work/ui/public/large_button_01.sub")
self.PickOff.SetOverVisual("d:/ymir work/ui/public/large_button_02.sub")
self.PickOff.SetDownVisual("d:/ymir work/ui/public/large_button_03.sub")
self.PickOff.SetText("Stop")
self.PickOff.SetPosition(100, 70)
self.PickOff.SetEvent(self.PickUpStop)
self.PickOff.Show()
def FaceButton(self):
global PickButton
PickButton = ui.Button()
PickButton.SetText("")
PickButton.SetPosition(wndMgr.GetScreenWidth()-100,wndMgr.GetScreenHeight()-500)
PickButton.SetSize(88, 21)
PickButton.SetEvent(self.Board.Show)
PickButton.SetUpVisual("d:/ymir work/ui/public/large_button_01.sub")
PickButton.SetOverVisual("d:/ymir work/ui/public/large_button_02.sub")
PickButton.SetDownVisual("d:/ymir work/ui/public/large_button_03.sub")
PickButton.Show()
global PickText
PickText = ui.TextLine()
PickText.SetParent(PickButton)
PickText.SetVerticalAlignCenter()
PickText.SetHorizontalAlignCenter()
PickText.SetPosition(43,10)
PickText.SetText("PickUpBot")
PickText.Show()
def SendGoldDown(self):
net.SendGoldDropPacketNew(500)
def OpenInv(self):
ToggleInventoryWindow()
def PickUp(self):
chat.AppendChat(chat.CHAT_TYPE_NOTICE, "[INFO]:PickUp is ON!")
self.PickUpStart()
def PickUpStart(self):
player.PickCloseItem()
self.Delay = WaitingDialog()
PickDelay = 0.1
self.Delay.Open(int(PickDelay))
self.Delay.SAFE_SetTimeOverEvent(self.PickUpStart)
def PickUpStop(self):
chat.AppendChat(chat.CHAT_TYPE_NOTICE, "[INFO]:PickUp is OFF!")
StopDelay = 999999
self.Delay.Open(int(StopDelay))
def Stealth(self):
player.HidePlayer()
class WaitingDialog(ui.ScriptWindow):
def __init__(self):
ui.ScriptWindow.__init__(self)
self.eventTimeOver = lambda *arg: None
self.eventExit = lambda *arg: None
def __del__(self):
ui.ScriptWindow.__del__(self)
def Open(self, waitTime):
curTime = time.clock()
self.endTime = curTime + waitTime
self.Show()
def Close(self):
self.Hide()
def Destroy(self):
self.Hide()
def SAFE_SetTimeOverEvent(self, event):
self.eventTimeOver = ui.__mem_func__(event)
def SAFE_SetExitEvent(self, event):
self.eventExit = ui.__mem_func__(event)
def OnUpdate(self):
lastTime = max(0, self.endTime - time.clock())
if 0 == lastTime:
self.Close()
self.eventTimeOver()
else:
return
StartDialog = PickUP()
StartDialog.Board.Hide()
Schau im spoiler bitte
|
Danke für die info werde ich sobald ich wieder gesund bin und zeit habe einbauen.
Quote:
Originally Posted by iulisn39
I've successfully injected the script but it doesn't seem to work. the auto attack makes the character move in random directions, screen freezes after 2-3 sec and it doesn't attack anything even though there are mobs all around
edit: if I start with the patcher, it works properly. thanks
edit2: my metin2 client tends to crash after some time, any idea why?
|
Hey, i also had this problem on a old / slow PC, maybe on ur server the mob ids are very big and these causes my script to make many iterations which could end in a screen freeze.
As said, when i have time i will update my bot, but atm it doesnt look well.
|
|
|
All times are GMT +1. The time now is 08:12.
|
|