Register for your free account! | Forgot your password?

You last visited: Today at 03:56

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release]Global Multihack

Discussion on [Release]Global Multihack within the Metin2 Hacks, Bots, Cheats, Exploits & Macros forum part of the Metin2 category.

Closed Thread
 
Old 08/24/2013, 12:50   #886
 
ichwillkeinevieren's Avatar
 
elite*gold: 74
Join Date: Sep 2009
Posts: 2,411
Received Thanks: 203
how can i edit the test page? i wanna paste a Teleport hack :
#Teleport-Hack module © musicinstructor, 2011
#Do not modify or distribute modified versions

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-module loaded.")
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 TeleportHackDialog(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()
#chat.AppendChat(chat.CHAT_TYPE_INFO, "height: " + str(height) + " width: " + str(width) + " xMouse: " + str(xMouse) + " yMouse: " + str(yMouse) + " x: " + str(x) + " y: " + str(y))
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 = TeleportHackDialog()
mainui.LoadWindow()
mainui.Show()
ichwillkeinevieren is offline  
Old 08/24/2013, 12:53   #887
 
elite*gold: 0
Join Date: Oct 2010
Posts: 3
Received Thanks: 0
doesn;t work
movies97123 is offline  
Old 08/24/2013, 14:48   #888
 
Proundcontra's Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 9
Received Thanks: 2
Wieso funktionieren zu heutigerzeit nicht mehr die speedhacks (offizielen),wie sie es damals taten?

-Wäre lieb wenn jemand den grund schreiben könnte

Danke.
Proundcontra is offline  
Old 08/24/2013, 15:49   #889
 
elite*gold: 0
Join Date: Jul 2013
Posts: 91
Received Thanks: 34
Wurde auf der .exe der neuesten Clients deaktiviert.
Manche funktionieren jedoch noch, der hier ist aber nur für Private Server. Der andre von Kamer, der auch aktuell ist, hat einen funktionierenden Speedhack.

Btw: Look at the day of the release. Its over 2 Years old, i guess nothing will work anymore.
-Kimiri <3 Arika- is offline  
Thanks
1 User
Old 09/08/2013, 22:00   #890
 
elite*gold: 0
Join Date: Nov 2011
Posts: 129
Received Thanks: 25
It is a great hack but it needs a win8 update.
oyuncu123987 is offline  
Old 09/12/2013, 17:07   #891
 
Kingolli19's Avatar
 
elite*gold: 0
Join Date: Feb 2012
Posts: 134
Received Thanks: 15
How to install?

pls help!
thanks
Kingolli19 is offline  
Old 09/26/2013, 15:13   #892
 
elite*gold: 0
Join Date: Jun 2013
Posts: 2
Received Thanks: 0
nice hack but how das the mobber hack work?
oOjustusOo is offline  
Old 09/27/2013, 18:01   #893

 
elite*gold: 16
Join Date: Dec 2010
Posts: 20,683
Received Thanks: 7,527
really nice hack.
Dörp is offline  
Old 10/10/2013, 13:17   #894
 
elite*gold: 0
Join Date: Oct 2013
Posts: 3
Received Thanks: 0
link for download pls!!!!!!!!!!
danielhd is offline  
Old 10/10/2013, 17:16   #895
 
elite*gold: 0
Join Date: Jun 2012
Posts: 11
Received Thanks: 4
Hab ihn hier nochmal hochgeladen... funktioniert super

totoran is offline  
Old 10/13/2013, 08:17   #896
 
elite*gold: 0
Join Date: Sep 2009
Posts: 101
Received Thanks: 15
why it says virus :/ ?
ILOVEPEPI is offline  
Old 10/20/2013, 23:14   #897
 
elite*gold: 0
Join Date: Feb 2012
Posts: 10
Received Thanks: 0
i think that on windows 8 doesn't work... i put the downloaded files in folder of metin , i run metin then nothing happens..
SkeletuB is offline  
Old 11/04/2013, 17:13   #898
 
elite*gold: 0
Join Date: Aug 2010
Posts: 6
Received Thanks: 0
In Ro. Server is not function

ssssssssssssssssssssssss
GM40bun is offline  
Old 11/04/2013, 18:22   #899
 
elite*gold: 0
Join Date: Aug 2013
Posts: 168
Received Thanks: 54
Quote:
Originally Posted by GM40bun View Post
In Ro. Server is not function

ssssssssssssssssssssssss
It is for pserver
xAnihilatorx is offline  
Old 11/04/2013, 19:17   #900
 
elite*gold: 0
Join Date: May 2013
Posts: 227
Received Thanks: 45
new version?
randy2345 is offline  
Closed Thread


Similar Threads 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:56.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.