You last visited: Today at 03:01
Advertisement
[Release]Global Multihack
Discussion on [Release]Global Multihack within the Metin2 Hacks, Bots, Cheats, Exploits & Macros forum part of the Metin2 category.
10/07/2011, 15:19
#76
elite*gold: 26
Join Date: Sep 2011
Posts: 1,115
Received Thanks: 194
Quote:
Originally Posted by
SandMann016
no lol
i do my work by myself and you dont do that!
detours..
Stop fighting and start work together
10/07/2011, 20:27
#77
elite*gold: 726
Join Date: Jul 2010
Posts: 14,233
Received Thanks: 7,915
Quote:
Originally Posted by
Dr. C
Stop fighting and start work together
Warum? SandMann kann/macht/schafft doch alles alleine
?
10/07/2011, 20:30
#78
elite*gold: 100
Join Date: Aug 2010
Posts: 1,751
Received Thanks: 834
ON Undergroundmt2 it works ! but the Levelbot ending after 5 mins.
10/08/2011, 19:11
#79
elite*gold: 0
Join Date: Aug 2011
Posts: 45
Received Thanks: 0
virus ?
virustotal analizing 9/43
10/08/2011, 19:13
#80
elite*gold: 26
Join Date: Sep 2011
Posts: 1,115
Received Thanks: 194
Quote:
Originally Posted by
123klo
Warum? SandMann kann/macht/schafft doch alles alleine
?
David Guetta schafft auch alles alleine.
Trotzdem ist die 1. CD von Nothing But The Beat (with vocals) besser als die Nr. 2 (without vocals).
Der Punkt ist, dass man zusammen einfach besseres Zeug zu Stande bringt.
10/08/2011, 19:33
#81
elite*gold: 0
Join Date: Feb 2009
Posts: 2,715
Received Thanks: 5,305
Quote:
Originally Posted by
Dr. C
David Guetta schafft auch alles alleine.
Trotzdem ist die 1. CD von Nothing But The Beat (with vocals) besser als die Nr. 2 (without vocals).
Der Punkt ist, dass man zusammen einfach besseres Zeug zu Stande bringt.
Das Problem dabei ist, dass Kamer das garnicht selbst gemacht hat alle Funktionen sind von Dragon(von mir auch bissel was) siehe Credits(für Credits musste ich ihn erst 20minuten lang beleidigen in skype)
...-> er kann nix <-...
10/08/2011, 19:36
#82
elite*gold: 0
Join Date: Oct 2010
Posts: 9
Received Thanks: 0
Geht nicht
It doesn't work
10/09/2011, 15:33
#83
elite*gold: 100
Join Date: Aug 2010
Posts: 1,751
Received Thanks: 834
Aufn PServer klappts geil.Was hats mit Run Code auf sich ?
10/09/2011, 15:49
#84
elite*gold: 725
Join Date: Sep 2009
Posts: 1,432
Received Thanks: 1,911
Dort kannst du Python Code ausführen z.B.:
Code:
import app
app.Exit()
10/09/2011, 16:11
#85
elite*gold: 0
Join Date: Jul 2011
Posts: 46
Received Thanks: 2
kennste noch andere pythoncodes die mir nen vorteil verschaffen?
10/09/2011, 16:24
#86
elite*gold: 100
Join Date: Aug 2010
Posts: 1,751
Received Thanks: 834
würd mcih auch intressieren
10/09/2011, 16:56
#87
elite*gold: 725
Join Date: Sep 2009
Posts: 1,432
Received Thanks: 1,911
Da ich jetzt nicht nur Equality die Antwort geben möchte hier die PN.
Quote:
Originally Posted by Unpublished
Quote:
Originally Posted by Equality'
hey , kennste nochmehr von den python codes?
Du kannst alles mögliche mit machen z.B den Teleporthack von musicinstructor hinein kopieren.
Code:
#Teleport-Hack module © musicinstructor, 2011
import wndMgr
import ui
import ime
import net
import chat
import sys
import locale
import miniMap
import app
import player
import chr
import background
teleport_mode = 0
telestep = 0
saved_x = 0
saved_y = 0
visible = FALSE
last_teleport_time = 0
TeleportButton = ui.Button()
textLine = ui.TextLine()
chat.AppendChat(chat.CHAT_TYPE_INFO, "Teleport-Hack geladen.")
miniMap.UnregisterAtlasWindow()
class MapTextToolTip(ui.Window):
def __init__(self):
ui.Window.__init__(self)
textLine = ui.TextLine()
textLine.SetParent(self)
textLine.SetHorizontalAlignCenter()
textLine.SetOutline()
textLine.SetHorizontalAlignRight()
textLine.Show()
self.textLine = textLine
def __del__(self):
ui.Window.__del__(self)
def SetText(self, text):
self.textLine.SetText(text)
def SetTooltipPosition(self, PosX, PosY):
self.textLine.SetPosition(PosX - 5, PosY)
def SetTextColor(self, TextColor):
self.textLine.SetPackedFontColor(TextColor)
def GetTextSize(self):
return self.textLine.GetTextSize()
class VerkaufDialog(ui.ScriptWindow):
class AtlasRenderer(ui.Window):
def __init__(self):
ui.Window.__init__(self)
self.AddFlag("not_pick")
def OnUpdate(self):
miniMap.UpdateAtlas()
def OnRender(self):
(x, y) = self.GetGlobalPosition()
fx = float(x)
fy = float(y)
miniMap.RenderAtlas(fx, fy)
global telestep
global teleport_mode
global saved_x
global saved_y
global last_teleport_time
telestep = 0
if teleport_mode == 1 and app.GetTime() > last_teleport_time + 5:
last_teleport_time = app.GetTime()
self.local_Teleport(saved_x, saved_y)
if app.IsPressed(app.DIK_LSHIFT) == FALSE:
self.new_teleport_possible = TRUE
if app.IsPressed(app.DIK_LSHIFT) and self.new_teleport_possible == TRUE:
self.new_teleport_possible = FALSE
IsAtlasAvailable, height, width = miniMap.GetAtlasSize()
if IsAtlasAvailable:
xMouse, yMouse = wndMgr.GetMousePosition()
if xMouse >= x and xMouse <= x + height and yMouse >= y and yMouse <= y + width:
self.local_Teleport((xMouse-x)*6, (yMouse-y)*6)
def local_Teleport(self, ltX, ltY):
global telestep
global teleport_mode
global saved_x
global saved_y
teleport_mode = 1
saved_x = ltX
saved_y = ltY
(ax, ay, az) = player.GetMainCharacterPosition()
(mapName, xBase, yBase)=background.GlobalPositionToMapInfo(ax, ay)
tX = int(ltX)*100+xBase
tY = int(ltY)*100+yBase
if int(tX) < int(ax):
while int(tX) < int(ax):
if telestep > 20:
chat.AppendChat(chat.CHAT_TYPE_INFO, "continue teleport in 5 secounds to avoid packet-flooding kick")
return
chr.SetPixelPosition(int(ax) - 2000, int(ay), int(az))
player.SetSingleDIKKeyState(app.DIK_UP, TRUE)
player.SetSingleDIKKeyState(app.DIK_UP, FALSE)
(ax, ay, az) = player.GetMainCharacterPosition()
telestep = telestep + 1
chr.SetPixelPosition(int(tX), int(ay), int(az))
player.SetSingleDIKKeyState(app.DIK_UP, TRUE)
player.SetSingleDIKKeyState(app.DIK_UP, FALSE)
if int(tX) > int(ax):
while int(tX) > int(ax):
if telestep > 20:
chat.AppendChat(chat.CHAT_TYPE_INFO, "continue teleport in 5 secounds to avoid packet-flooding kick")
return
chr.SetPixelPosition(int(ax) + 2000, int(ay), int(az))
player.SetSingleDIKKeyState(app.DIK_UP, TRUE)
player.SetSingleDIKKeyState(app.DIK_UP, FALSE)
(ax, ay, az) = player.GetMainCharacterPosition()
telestep = telestep + 1
chr.SetPixelPosition(int(tX), int(ay), int(az))
player.SetSingleDIKKeyState(app.DIK_UP, TRUE)
player.SetSingleDIKKeyState(app.DIK_UP, FALSE)
(ax, ay, az) = player.GetMainCharacterPosition()
if int(tY) < int(ay):
while int(tY) < int(ay):
if telestep > 20:
chat.AppendChat(chat.CHAT_TYPE_INFO, "continue teleport in 5 secounds to avoid packet-flooding kick")
return
chr.SetPixelPosition(int(ax), int(ay) - 2000, int(az))
player.SetSingleDIKKeyState(app.DIK_UP, TRUE)
player.SetSingleDIKKeyState(app.DIK_UP, FALSE)
(ax, ay, az) = player.GetMainCharacterPosition()
telestep = telestep + 1
chr.SetPixelPosition(int(ax), int(tY), int(az))
player.SetSingleDIKKeyState(app.DIK_UP, TRUE)
player.SetSingleDIKKeyState(app.DIK_UP, FALSE)
if int(tY) > int(ay):
while int(tY) > int(ay):
if telestep > 20:
chat.AppendChat(chat.CHAT_TYPE_INFO, "continue teleport in 5 secounds to avoid packet-flooding kick")
return
chr.SetPixelPosition(int(ax), int(ay) + 2000, int(az))
player.SetSingleDIKKeyState(app.DIK_UP, TRUE)
player.SetSingleDIKKeyState(app.DIK_UP, FALSE)
(ax, ay, az) = player.GetMainCharacterPosition()
telestep = telestep + 1
chr.SetPixelPosition(int(ax), int(tY), int(az))
player.SetSingleDIKKeyState(app.DIK_UP, TRUE)
player.SetSingleDIKKeyState(app.DIK_UP, FALSE)
teleport_mode = 0
def ShowAtlas(self):
miniMap.ShowAtlas()
def HideAtlas(self):
miniMap.HideAtlas()
def __init__(self):
self.AtlasMainWindow = None
self.tooltipInfo = MapTextToolTip()
self.tooltipInfo.Hide()
self.board = 0
ui.ScriptWindow.__init__(self)
def __del__(self):
ui.ScriptWindow.__del__(self)
def LoadWindow(self):
try:
pyScrLoader = ui.PythonScriptLoader()
pyScrLoader.LoadScriptFile(self, "UIScript/AtlasWindow.py")
except:
import exception
exception.Abort("AtlasWindow.LoadWindow.LoadScript")
try:
self.board = self.GetChild("board")
self.board.SetTitleName("© musicinstructor [elitepvpers.com]")
except:
import exception
exception.Abort("AtlasWindow.LoadWindow.BindObject")
self.AtlasMainWindow = self.AtlasRenderer()
self.board.SetCloseEvent(self.Hide)
self.AtlasMainWindow.SetParent(self.board)
self.AtlasMainWindow.SetPosition(7, 30)
self.tooltipInfo.SetParent(self.board)
self.SetCenterPosition()
self.Hide()
miniMap.RegisterAtlasWindow(self)
global TeleportButton
TeleportButton.SetText("")
TeleportButton.SetPosition(wndMgr.GetScreenWidth()-100,160)
TeleportButton.SetSize(88,21)
TeleportButton.SetEvent(self.Show)
TeleportButton.SetUpVisual("d:/ymir work/ui/public/large_button_01.sub")
TeleportButton.SetOverVisual("d:/ymir work/ui/public/large_button_02.sub")
TeleportButton.SetDownVisual("d:/ymir work/ui/public/large_button_03.sub")
TeleportButton.Show()
global textLine
textLine.SetParent(TeleportButton)
textLine.SetPosition(43,10)
textLine.SetVerticalAlignCenter()
textLine.SetHorizontalAlignCenter()
textLine.SetText("Teleport")
textLine.Show()
def Destroy(self):
miniMap.UnregisterAtlasWindow()
self.ClearDictionary()
self.AtlasMainWindow = None
self.board = None
self.tooltipInfo = None
def Hide(self):
if self.AtlasMainWindow:
self.AtlasMainWindow.HideAtlas()
self.AtlasMainWindow.Hide()
global TeleportButton
global textLine
TeleportButton.Show()
textLine.Show()
ui.ScriptWindow.Hide(self)
def Show(self):
if self.AtlasMainWindow:
(bGet, iSizeX, iSizeY) = miniMap.GetAtlasSize()
if bGet:
self.SetSize(iSizeX + 15, iSizeY + 38)
self.board.SetSize(iSizeX + 15, iSizeY + 38)
#self.AtlasMainWindow.SetSize(iSizeX, iSizeY)
self.AtlasMainWindow.ShowAtlas()
self.AtlasMainWindow.Show()
global TeleportButton
TeleportButton.Hide()
ui.ScriptWindow.Show(self)
global visible
visible = TRUE
def OnUpdate(self):
miniMap.ShowAtlas()
if not self.tooltipInfo:
return
self.tooltipInfo.Hide()
if FALSE == self.board.IsIn():
return
(mouseX, mouseY) = wndMgr.GetMousePosition()
(bFind, sName, iPosX, iPosY, dwTextColor, dwGuildID) = miniMap.GetAtlasInfo(mouseX, mouseY)
if FALSE == bFind:
return
if "empty_guild_area" == sName:
sName = locale.GUILD_EMPTY_AREA
self.tooltipInfo.SetText("%s(%d, %d)" % (sName, iPosX, iPosY))
(x, y) = self.GetGlobalPosition()
self.tooltipInfo.SetTooltipPosition(mouseX - x, mouseY - y)
self.tooltipInfo.SetTextColor(dwTextColor)
self.tooltipInfo.Show()
self.tooltipInfo.SetTop()
def OnPressEscapeKey(self):
global visible
visible = FALSE
self.Hide()
return TRUE
mainui = VerkaufDialog()
mainui.LoadWindow()
mainui.Show()
Wenn du dich näher damit beschäftigen willst solltest du dir die .py Dateien aus dem root Archiv eines Clienten nachschauen dort stehen auch viele Python Codes.
10/09/2011, 17:11
#88
elite*gold: 0
Join Date: Aug 2010
Posts: 90
Received Thanks: 5
my metin2 detects this hack.
Where can i download a cracked hshield?
10/09/2011, 17:23
#89
elite*gold: 26
Join Date: Sep 2011
Posts: 1,115
Received Thanks: 194
Quote:
Originally Posted by
kvll
my metin2 detects this hack.
Where can i download a cracked hshield?
Under this post.
Attached Files
hshield.rar
(4.77 MB, 67 views)
10/09/2011, 17:26
#90
elite*gold: 726
Join Date: Jul 2010
Posts: 14,233
Received Thanks: 7,915
Quote:
Originally Posted by
Dr. C
Under this post.
Because it works only on Pserver.
Similar Threads
[Release][Global] MangoSDv2.5
11/21/2011 - Grand Chase Hacks, Bots, Cheats & Exploits - 294 Replies
http://i963.photobucket.com/albums/ae115/dlwhdrlf/ SCII.png
Features
SD Hack
Left Side Mobs
Slower mobs' death, which gives the hack more stability
Dungeon Shields
[RELEASE]Dekaron Global MultiHack
01/23/2011 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 8 Replies
At the moment this only works on Dekaron global, I am working on making it compatible with private servers.
Features:
Wall Hack
100% Upgrade mode
Ghost Mode
Teleport
Damage and Shield Hack
[RELEASE]NAME-HACK FOR GLOBAL DK
10/18/2009 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 3 Replies
1.OPEN DEKARON AND LOG IN
2.OPEN CE.AND SELECT DEKARON.EXE
3.DO NOT CHAT
4.DO TO TEXT ,THEN SCNAC YOU NAME
5.THEN CHANGE ALL THE RESULTS TO WHAT NAME YOU WANT
6.GIVE ME THANKS AND HAVE FUN :)
[Release]DekaronSprite Bot Global V0.5
10/09/2009 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 4 Replies
edited by trane. (virus)
All times are GMT +1. The time now is 03:02 .