Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

[TuT] Bot do Bugowania Białych Flag - Mexilia.pl ;)


LunarisTeam

Rekomendowane odpowiedzi

Opublikowano

Witam Witam , 1 naprawili to 2 ^^:D

-Potrzebujemy 1 Białą Flagę :P

Krótki Poradniczek:

1.Sciagamy Multihack Kamera:

 

http://metin2mod.tk/multihack.html


2. Wrzucamy go do klienta.


3. Odpalamy Mexilie.

4. Logujemy Się do gry.

 

5. Klikamy w oknie ktore wyskoczy "OK".


6. Przechodzimy do zakladki "Run Code".

 

7. Wklejamy tam poniższy Kod:


import app
import chat
import chr
import locale
import net
import time
import ui
import player
import chrmgr
import event
import game

SPAM_LAST_TIME = 0
SPAM_CHECK_DELAY = 0.01
BOT = FALSE


class Botdialog(ui.ThinBoard):

def __init__(self):
ui.ThinBoard.__init__(self)
self.LoadBoard()

def LoadBoard(self):
self.SetCenterPosition()
self.SetSize(120,125)
self.Show()
self.AddFlag("movable")

self.LoadText()
self.LoadButton()

def LoadText(self):
self.Titel = ui.TextLine()
self.Titel.SetParent(self)
self.Titel.SetDefaultFontName()
self.Titel.SetPosition(-55, 15)
self.Titel.SetFeather()
self.Titel.SetWindowHorizontalAlignCenter()
self.Titel.SetText(" Bocik na Flagi")
self.Titel.SetFontColor(1.0, 0.8, 0)
self.Titel.SetOutline()
self.Titel.Show()

self.Titel2 = ui.TextLine()
self.Titel2.SetParent(self)
self.Titel2.SetDefaultFontName()
self.Titel2.SetPosition(-35, 35)
self.Titel2.SetFeather()
self.Titel2.SetWindowHorizontalAlignCenter()
self.Titel2.SetText(" By:")
self.Titel2.SetFontColor(1.0, 0.8, 0)
self.Titel2.SetOutline()
self.Titel2.Show()

self.Titel3 = ui.TextLine()
self.Titel3.SetParent(self)
self.Titel3.SetDefaultFontName()
self.Titel3.SetPosition(-35, 55)
self.Titel3.SetFeather()
self.Titel3.SetWindowHorizontalAlignCenter()
self.Titel3.SetText("PuenTa")
self.Titel3.SetFontColor(1.0, 0.8, 0)
self.Titel3.SetOutline()
self.Titel3.Show()
def LoadButton(self):
self.CloseButton = ui.Button()
self.CloseButton.SetParent(self)
self.CloseButton.SetPosition(103, 3)
self.CloseButton.SetUpVisual("d:/ymir work/ui/public/close_button_01.sub")
self.CloseButton.SetOverVisual("d:/ymir work/ui/public/close_button_02.sub")
self.CloseButton.SetDownVisual("d:/ymir work/ui/public/close_button_03.sub")
self.CloseButton.SetToolTipText(locale.UI_CLOSE, 0, - 23)
self.CloseButton.SetEvent(ui.__mem_func__(self.Close))
self.CloseButton.Show()

self.BuffBotStartButton = ui.Button()
self.BuffBotStartButton.SetParent(self)
self.BuffBotStartButton.SetUpVisual("d:/ymir work/ui/public/xsmall_button_01.sub")
self.BuffBotStartButton.SetOverVisual("d:/ymir work/ui/public/xsmall_button_02.sub")
self.BuffBotStartButton.SetDownVisual("d:/ymir work/ui/public/xsmall_button_03.sub")
self.BuffBotStartButton.SetText("ON")
self.BuffBotStartButton.SetPosition(10+10, 90)
self.BuffBotStartButton.SetEvent(ui.__mem_func__(self.Onbtn))
self.BuffBotStartButton.Show()

self.BuffBotStartButton2 = ui.Button()
self.BuffBotStartButton2.SetParent(self)
self.BuffBotStartButton2.SetUpVisual("d:/ymir work/ui/public/xsmall_button_01.sub")
self.BuffBotStartButton2.SetOverVisual("d:/ymir work/ui/public/xsmall_button_02.sub")
self.BuffBotStartButton2.SetDownVisual("d:/ymir work/ui/public/xsmall_button_03.sub")
self.BuffBotStartButton2.SetText("OFF")
self.BuffBotStartButton2.SetPosition(10+55, 90)
self.BuffBotStartButton2.SetEvent(ui.__mem_func__(self.Offbtn))
self.BuffBotStartButton2.Show()

#chr.SetNameString("OriginalSura")

def __del__(self):
ui.ThinBoard.__del__(self)

def Show(self):
ui.ThinBoard.Show(self)

def Onbtn(self):
global BOT
vid = player.GetTargetVID()
name = chr.GetNameByVID(vid)
if (str(name) == "Seon-Pyeong"):
BOT = TRUE
chat.AppendChat(1, "Bot uruchomiony!")
else:
chat.AppendChat(1, "Zaznacz NPC Seon-Pyeong!")

def Offbtn(self):
global BOT
BOT = FALSE
chat.AppendChat(1, "Bot zatrzymany..")

def OnUpdate(self):

global SPAM_LAST_TIME
global SPAM_CHECK_DELAY
global BOT

if (app.IsPressed(app.DIK_END) == TRUE):
self.Close()

if (BOT == TRUE and time.clock() > SPAM_LAST_TIME + SPAM_CHECK_DELAY):
self.StartBuffbot()
SPAM_LAST_TIME = time.clock()

def Close(self):
self.Hide()
def StartBuffbot(self):
self.InstallQuestWindowHook()
#chat.AppendChat(1,"Hooked")
net.SendOnClickPacket(player.GetTargetVID())
#chat.AppendChat(1,"Wybrano Seon-Pyeong")
event.SelectAnswer(1,0)
event.SelectAnswer(1,0)
net.SendQuestInputStringPacket("70008")
event.SelectAnswer(1,0)
#game.GameWindow.OpenQuestWindow = self.OldRecv
#chat.AppendChat(1,"Unhooked")

def InstallQuestWindowHook(self):
self.OldRecv = game.GameWindow.OpenQuestWindow
game.GameWindow.OpenQuestWindow = self.HookedQuestWindow

def HookedQuestWindow(self, skin, idx):
pass

StartDialog = Botdialog()
StartDialog.Show()



8. Klikamy "RUN"


9. W grze wyskoczy nam okienko (ON, OFF)

 

10. Zaznaczamy Seon-Pyeong


11. Klikamy "ON"



I niech sie robią Białe Flagi! :D

Pozdrawiam PuenTa

CPU: Intel Core i7 4770K 4,4GHz / MOBO: Asus Z87-K / RAM: Corsair Vengeance 2x8GB 1866MHz C9  / GPU: Palit GeForce 770 GTX OC / HDD: Toshiba DT01ACA200 2TB 7200RPM / SSD: Kingston V300 (ten starszy :P) / PSU: Corsair CX600M / CASE: Corsair C70 White
 
///Peryferia

KEYBOARD: Steelseries Apex  / MICE: Steelseries Kana V2 / MAT: Steelseries QCK / HEADPHONES: Steelseries Siberia V2

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...