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

Multihack s2.Laneris.pl


Exíle

Rekomendowane odpowiedzi

  • Odpowiedzi 240
  • Dodano
  • Ostatniej odpowiedzi
Opublikowano

Ma ktoś działającego autobuffa na laneriss2?

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

Buffbotstarten = ""

class Botdialog(ui.ThinBoard):

	def __init__(self):
		ui.ThinBoard.__init__(self)
		self.LoadBoard()
		
	def LoadBoard(self):
		self.SetCenterPosition()
		self.SetSize(300, 120)
		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(-70, 4)
		self.Titel.SetFeather()
		self.Titel.SetWindowHorizontalAlignCenter()
		self.Titel.SetText("Buffbot by DasKuchen")
		self.Titel.SetFontColor(1.0, 0.8, 0)
		self.Titel.SetOutline()
		self.Titel.Show()
		
		self.TargetName = ui.TextLine()
		self.TargetName.SetParent(self)
		self.TargetName.SetDefaultFontName()
		self.TargetName.SetPosition(-70, 33)
		self.TargetName.SetFeather()
		self.TargetName.SetWindowHorizontalAlignCenter()
		self.TargetName.SetText("None")
		self.TargetName.SetOutline()
		self.TargetName.Show()

		self.Info = ui.TextLine()
		self.Info.SetParent(self)
		self.Info.SetDefaultFontName()
		self.Info.SetPosition(-125, 33)
		self.Info.SetFeather()
		self.Info.SetWindowHorizontalAlignCenter()
		self.Info.SetFontColor(1.0, 0.8, 0)
		self.Info.SetText("Dein Ziel: ")
		self.Info.SetOutline()
		self.Info.Show()

		self.Info2 = ui.TextLine()
		self.Info2.SetParent(self)
		self.Info2.SetDefaultFontName()
		self.Info2.SetPosition(-105, 55)
		self.Info2.SetFeather()
		self.Info2.SetWindowHorizontalAlignCenter()
		self.Info2.SetFontColor(1.0, 0.8, 0)
		self.Info2.SetText("VID:")
		self.Info2.SetOutline()
		self.Info2.Show()			
		
	def LoadButton(self):
		self.CloseButton = ui.Button()
		self.CloseButton.SetParent(self)
		self.CloseButton.SetPosition(280, 4)
		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/xlarge_button_01.sub")
		self.BuffBotStartButton.SetOverVisual("d:/ymir work/ui/public/xlarge_button_02.sub")
		self.BuffBotStartButton.SetDownVisual("d:/ymir work/ui/public/xlarge_button_03.sub")
		self.BuffBotStartButton.SetText("Buffbot Starten")
		self.BuffBotStartButton.SetPosition(60, 85)
		self.BuffBotStartButton.SetEvent(ui.__mem_func__(self.StartBuffbot))
		self.BuffBotStartButton.Show()	

		self.GetVIDButton = ui.Button()
		self.GetVIDButton.SetParent(self)
		self.GetVIDButton.SetUpVisual("d:/ymir work/ui/public/large_button_01.sub")
		self.GetVIDButton.SetOverVisual("d:/ymir work/ui/public/large_button_02.sub")
		self.GetVIDButton.SetDownVisual("d:/ymir work/ui/public/large_button_03.sub")
		self.GetVIDButton.SetText("Get VID")
		self.GetVIDButton.SetPosition(190, 30)
		self.GetVIDButton.SetEvent(ui.__mem_func__(self.GetVID))
		self.GetVIDButton.Show()	

		self.ChatSlotBar = ui.SlotBar()
		self.ChatSlotBar.SetParent(self)
		self.ChatSlotBar.SetSize(140, 18)
		self.ChatSlotBar.SetPosition(0, 55)
		self.ChatSlotBar.SetWindowHorizontalAlignCenter()
		self.ChatSlotBar.Show()
		
		self.ChatEditLine = ui.EditLine()
		self.ChatEditLine.SetParent(self.ChatSlotBar)
		self.ChatEditLine.SetSize(100, 17)
		self.ChatEditLine.SetPosition(10, 2)
		self.ChatEditLine.SetMax(24)
		self.ChatEditLine.SetText("")
		self.ChatEditLine.SetFocus()
		self.ChatEditLine.Show()
		
	def __del__(self):
		ui.ThinBoard.__del__(self)

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

	def Close(self):
		player.ClearTarget()
		self.Hide()
		
	def StartBuffbot(self):
		global Buffbotstarten
		Buffbotstarten = 1
		
	def GetVID(self):
		vid = player.GetTargetVID()
		info = chrmgr.GetVIDInfo(vid)
		chat.AppendChat(chat.CHAT_TYPE_INFO, info)
				
	def OnUpdate(self):
		vid = player.GetTargetVID()
		name = chr.GetNameByVID(vid)
		self.TargetName.SetText(name)
		self.TargetName.Show()
		ZielVID = self.ChatEditLine.GetText()
		global Buffbotstarten
		if Buffbotstarten != "":
			player.SetTarget(int(ZielVID))
			player.ClickSkillSlot(4)
			player.ClickSkillSlot(5)
			player.ClickSkillSlot(6)		
		else:
			return			
		
	
StartDialog = Botdialog()
StartDialog.Show()

w pythonie.

Opublikowano

@Exíle

 

a nie działa tam każde, które dopisuje się do indexu?

 

Próbowałem sam, ale ja za bardzo się nie znam. 

Proszę, pomóż :/ 

dddtly.jpg

Opublikowano
import app
import chat
import chr
import locale
import net
import time
import ui
import player
import chrmgr

Buffbotstarten = ""

class Botdialog(ui.ThinBoard):

	def __init__(self):
		ui.ThinBoard.__init__(self)
		self.LoadBoard()
		
	def LoadBoard(self):
		self.SetCenterPosition()
		self.SetSize(300, 120)
		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(-70, 4)
		self.Titel.SetFeather()
		self.Titel.SetWindowHorizontalAlignCenter()
		self.Titel.SetText("Buffbot by DasKuchen")
		self.Titel.SetFontColor(1.0, 0.8, 0)
		self.Titel.SetOutline()
		self.Titel.Show()
		
		self.TargetName = ui.TextLine()
		self.TargetName.SetParent(self)
		self.TargetName.SetDefaultFontName()
		self.TargetName.SetPosition(-70, 33)
		self.TargetName.SetFeather()
		self.TargetName.SetWindowHorizontalAlignCenter()
		self.TargetName.SetText("None")
		self.TargetName.SetOutline()
		self.TargetName.Show()

		self.Info = ui.TextLine()
		self.Info.SetParent(self)
		self.Info.SetDefaultFontName()
		self.Info.SetPosition(-125, 33)
		self.Info.SetFeather()
		self.Info.SetWindowHorizontalAlignCenter()
		self.Info.SetFontColor(1.0, 0.8, 0)
		self.Info.SetText("Dein Ziel: ")
		self.Info.SetOutline()
		self.Info.Show()

		self.Info2 = ui.TextLine()
		self.Info2.SetParent(self)
		self.Info2.SetDefaultFontName()
		self.Info2.SetPosition(-105, 55)
		self.Info2.SetFeather()
		self.Info2.SetWindowHorizontalAlignCenter()
		self.Info2.SetFontColor(1.0, 0.8, 0)
		self.Info2.SetText("VID:")
		self.Info2.SetOutline()
		self.Info2.Show()			
		
	def LoadButton(self):
		self.CloseButton = ui.Button()
		self.CloseButton.SetParent(self)
		self.CloseButton.SetPosition(280, 4)
		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/xlarge_button_01.sub")
		self.BuffBotStartButton.SetOverVisual("d:/ymir work/ui/public/xlarge_button_02.sub")
		self.BuffBotStartButton.SetDownVisual("d:/ymir work/ui/public/xlarge_button_03.sub")
		self.BuffBotStartButton.SetText("Buffbot Starten")
		self.BuffBotStartButton.SetPosition(60, 85)
		self.BuffBotStartButton.SetEvent(ui.__mem_func__(self.StartBuffbot))
		self.BuffBotStartButton.Show()	

		self.GetVIDButton = ui.Button()
		self.GetVIDButton.SetParent(self)
		self.GetVIDButton.SetUpVisual("d:/ymir work/ui/public/large_button_01.sub")
		self.GetVIDButton.SetOverVisual("d:/ymir work/ui/public/large_button_02.sub")
		self.GetVIDButton.SetDownVisual("d:/ymir work/ui/public/large_button_03.sub")
		self.GetVIDButton.SetText("Get VID")
		self.GetVIDButton.SetPosition(190, 30)
		self.GetVIDButton.SetEvent(ui.__mem_func__(self.GetVID))
		self.GetVIDButton.Show()	

		self.ChatSlotBar = ui.SlotBar()
		self.ChatSlotBar.SetParent(self)
		self.ChatSlotBar.SetSize(140, 18)
		self.ChatSlotBar.SetPosition(0, 55)
		self.ChatSlotBar.SetWindowHorizontalAlignCenter()
		self.ChatSlotBar.Show()
		
		self.ChatEditLine = ui.EditLine()
		self.ChatEditLine.SetParent(self.ChatSlotBar)
		self.ChatEditLine.SetSize(100, 17)
		self.ChatEditLine.SetPosition(10, 2)
		self.ChatEditLine.SetMax(24)
		self.ChatEditLine.SetText("")
		self.ChatEditLine.SetFocus()
		self.ChatEditLine.Show()
		
	def __del__(self):
		ui.ThinBoard.__del__(self)

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

	def Close(self):
		player.ClearTarget()
		self.Hide()
		
	def StartBuffbot(self):
		global Buffbotstarten
		Buffbotstarten = 1
		
	def GetVID(self):
		vid = player.GetTargetVID()
		info = chrmgr.GetVIDInfo(vid)
		chat.AppendChat(chat.CHAT_TYPE_INFO, info)
				
	def OnUpdate(self):
		vid = player.GetTargetVID()
		name = chr.GetNameByVID(vid)
		self.TargetName.SetText(name)
		self.TargetName.Show()
		ZielVID = self.ChatEditLine.GetText()
		global Buffbotstarten
		if Buffbotstarten != "":
			player.SetTarget(int(ZielVID))
			player.ClickSkillSlot(4)
			player.ClickSkillSlot(5)
			player.ClickSkillSlot(6)		
		else:
			return			
		
	
StartDialog = Botdialog()
StartDialog.Show()

w pythonie.

 

W którym mam 2 pliczki python22 i 27? I mam to wkleić nic nie zmieniac?

Opublikowano

to się albo python loaderem injectuje albo się tworzy osobny plik .py i importuje się go w game..

Dałbyś rade zrobić te wh? 

dddtly.jpg

Opublikowano

to się albo python loaderem injectuje albo się tworzy osobny plik .py i importuje się go w game..

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

 

 

Opublikowano

Ogarnij to bo nie można ataku wyłączyć i to jest troszkę wkurwiające, a i rozumiem ze chcesz sobie nabijać wyswietlenia, ale naprawdę jak sie zamyka bota i otwiera się strona na necie to wydaje mi się, że nie tylko mnie to strasznie denerwuje nie da rady jakoś tego inaczej zrobic?

Opublikowano

Ogarnij to bo nie można ataku wyłączyć i to jest troszkę wkurwiające, a i rozumiem ze chcesz sobie nabijać wyswietlenia, ale naprawdę jak sie zamyka bota i otwiera się strona na necie to wydaje mi się, że nie tylko mnie to strasznie denerwuje nie da rady jakoś tego inaczej zrobic?

 

Nie ogarne, bo nie wiem jak to zrobić xD

 

No zamiast swojego profilu mogę dać wam hosting na którym będę zarabiał, lepsze?

Opublikowano

Nie ogarne, bo nie wiem jak to zrobić xD

 

No zamiast swojego profilu mogę dać wam hosting na którym będę zarabiał, lepsze?

Miałem coś na myśli żeby nie wyrzucało z gry i nie włączało strony : >

Najlepiej jakby tego nie było :D

A co do hostingu jeśli NAS to nic nie kosztuje to dlaczego nie? ^^

Opublikowano

Dodałbyś Wait Hacka i NOKa, jakby dało radę to prosiłbym o Wall Hacka <3 Wiem, że to sporo roboty, ale ja i inni ludzie wierzą w ciebie ^^

Opublikowano

Dodałbyś Wait Hacka i NOKa, jakby dało radę to prosiłbym o Wall Hacka <3 Wiem, że to sporo roboty, ale ja i inni ludzie wierzą w ciebie ^^

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

Dodał byś do konsoli Ghost DMG WallHack i WaitHack  ?

Wszystko macie w "Tutoriale i Download"

http://www.mpcforum.pl/topic/1423512-wh-terios/- działa na Lanerisie

http://www.mpcforum.pl/topic/1423530-ninjahack/- dmghack pod ninje

http://www.mpcforum.pl/topic/1427827-surahack/- dmghack pod surę

http://www.mpcforum.pl/topic/1425279-szamanhack/- dmghack pod szamana

http://www.mpcforum.pl/topic/1424708-warriorhack/- dmghack pod wojownika

http://www.mpcforum.pl/topic/1445597-wallhack-na-teriospl/- działa na mapkach które występują na Teriosie, mogę stworzyć wallhacka specjalnie na Lanerisa.

eSwH2k3.png

Opublikowano

Pomoże ktoś bo po jakimś czasie uzywania tego bota wyrzuca mnie z gry w sensie ze wylacza calkiem metina patrzylem dwie postacie ninja i wojownik normalnie gdy gram i expie czy dropie bez bota to moge to robic w opor a uzywajac tego bota wylacza mi gre po jakims czasie. Pomocy.

Opublikowano

Pomoże ktoś bo po jakimś czasie uzywania tego bota wyrzuca mnie z gry w sensie ze wylacza calkiem metina patrzylem dwie postacie ninja i wojownik normalnie gdy gram i expie czy dropie bez bota to moge to robic w opor a uzywajac tego bota wylacza mi gre po jakims czasie. Pomocy.

 

korzystam, korzystałem i mnie ani razu nie wywaliło.

Zarchiwizowany

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

×
×
  • Dodaj nową pozycję...