Reklama
Strona 54 z 70 PierwszaPierwsza ... 444525354555664 ... OstatniaOstatnia
Pokazuje wyniki od 796 do 810 z 1046

Temat: [WindBot] Oficjalny temat

  1. #796
    Avatar Kolecho ZWM
    Data rejestracji
    2014
    Posty
    298
    Siła reputacji
    11

    Domyślny

    Ktoś jakieś skrypty na 200ek? 120 rp i 140 ms?

  2. #797
    Avatar Yebak Lesny
    Data rejestracji
    2011
    Położenie
    Podkarpacky
    Wiek
    33
    Posty
    582
    Siła reputacji
    13

    Domyślny

    frosty okolnir? dla ms/rp?

    a dla eka deeplingi north?

    GG: 5519884

  3. Reklama
  4. #798
    Avatar Kolecho ZWM
    Data rejestracji
    2014
    Posty
    298
    Siła reputacji
    11

    Domyślny

    Pw

  5. #799
    Avatar Xat4Gamers
    Data rejestracji
    2010
    Położenie
    Londyn
    Posty
    1,785
    Siła reputacji
    15

    Domyślny

    Kto ma Mad Maga dla eka? Pilne!

  6. #800

    Data rejestracji
    2013
    Posty
    70
    Siła reputacji
    12

    Domyślny

    Jest crack do windbota?

  7. #801
    Avatar Mexy
    Data rejestracji
    2013
    Posty
    187
    Siła reputacji
    11

    Domyślny

    Cytuj AnAnAss napisał Pokaż post
    Cytat został ukryty, ponieważ ignorujesz tego użytkownika. Pokaż cytat.
    Jest crack do windbota?
    Niestety jeszcze nie ma z tego co mi wiadomo. Twórca bardzo dobrze go zabezpieczył, z tego co słyszałem były cracki, ale na jakieś inne wersje niż aktaulna bo na bieżąco cieżko rozszyfrować zabezpieczenia.

  8. #802
    Avatar Manufactury
    Data rejestracji
    2007
    Położenie
    Białystok
    Wiek
    30
    Posty
    230
    Siła reputacji
    17

    Domyślny

    Ma ktoś skrypt na wyrmy lb dla rp?

  9. #803

    Notoryczny Miotacz Postów CzuP jest teraz offline
    Avatar CzuP
    Data rejestracji
    2009
    Posty
    1,271
    Siła reputacji
    15

    Domyślny

    @BBsrv - mam nadzieje, że nie masz mi za złe, że Cie mentionuje ale wydaje mi się, że jesteś jednym z bardziej ogarniętych w temacie.

    A mianowicie tu pytanie również do reszty torgowiczów. Orientujecie się czy jest jakiś działający skrypt/możliwy do wykonania tak żeby automatycznie przelogowywało chary gdy nie ma staminy a mianowicie
    Stamina mniejsza niż 14h reloguje na acc 2, gdy na acc 2 stamina mniejsza niż 14 reloguje na acc 3, gdy na acc 3 stamina mniejsza reloguje na acc 1 z powrotem i tak w kółko. Do tego automatycznie po kicku reloguje na ostatnio zalogowaną postać + najważniejsze loguje się na ostatnią zalogowaną postać po save serverze. Na save serwerze mi najbardziej zależy tak żeby działał z tymi 3 kontami.

  10. #804
    Avatar Opeth
    Data rejestracji
    2012
    Posty
    97
    Siła reputacji
    12

    Domyślny

    Wszystko z pierwszej strony oficjalnego forum (podforum ze skryptami). Z Reconnecta usunąłem tylko kilka linijek o staminie żeby skrypty nie kolidowały ze sobą.

    Character Relogger by Raphael
    Kod:
    -- local SCRIPT_VERSION = '1.1.0'
    
    local minStamina  = 16 * 60 -- In minutes
    local accountList = {
    	{
    		account   = 'account1',
    		password  = 'password1',
    		character = 'character1'
    	},
    	{
    		account   = 'account2',
    		password  = 'password2',
    		character = 'character2'
    	},
    	{
    		account   = 'account3',
    		password  = 'password3',
    		character = 'character3'
    	}
    }
    
    -- DO NOT EDIT BELOW THIS LINE --
    for _, v in ipairs(accountList) do
    	v.character = v.character:lower()
    end
    
    if $stamina < minStamina then
    	local curAccount  = table.find(accountList, $name:lower(), 'character')
    	local nextAccount = accountList[(curAccount % #accountList) + 1]
    
    	waitandlogout()
    	waitping()
    	keyevent(VK_ESCAPE)
    	waitping()
    	connect(nextAccount.account, nextAccount.password, nextAccount.character)
    end
    Safe Reconnect by Leonardo
    Kod:
    init start
    	-- local SCRIPT_VERSION = "2.3.2"
    	-- If ReopenBps is set to true then it'll try to reopen the visible backpacks on the main backpack
    	-- setting it to false will just ignore your bps after you are logged in
    
    	local ReopenBps = true
    
    	-- If IgnoreServerSave is set to false it'll wait to relog if server save is occurring
    	-- setting it to true will try to relog even on server saving time
    
    	local IgnoreServerSave = false
    
    	-- [[ ONLY EDIT SPECIAL CHECKS IF YOU KNOW WHAT YOU'RE DOING ]]--
    
    	-- special checks are the checks it'll do after you login
    	-- for example: if you are skulled, inside temple, etc ...
    
    	local SpecialChecks = {
    		{
    			function()
    				return isontemple()
    			end,
    			function()
    				printerrorf("Safe Reconnect: [%q] Client closed. Reason: Character was inside a temple.", $name)
    				closeclient(true)
    			end
    		},
    		{
    			function()
    				return ($self.skull == SKULL_RED or $self.skull == SKULL_BLACK) and $pzone
    			end,
    			function()
    				printerrorf("Safe Reconnect: [%q] Client closed. Reason: Character was red/black skulled inside a protection zone.", $name)
    				closeclient(true)
    			end
    		},
    	}
    
    	-- DO NOT EDIT BELOW --
    	local reconState = 1
    
    	if $curscript.type ~= 'persistent' then
    		reconState = -1
    		printerror('Reconnect should be placed at Scripter/Persistents.\nChange this setting to run it properly.')
    	end
    
    	local openFunc = function()
    		local lifeTime = $timems
    		local reopenLogin = get('Looting/OpenBPsAtLogin')
    
    		set('Looting/OpenBPsAtLogin', 'no')
    		reopenwindows('small')
    
    		while $openingbps do
    			wait(100)
    
    			if $timems - lifeTime >= 10000 and not $pzone then
    
    				set('Looting/OpenBPsAtLogin', reopenLogin)
    				return false
    			end
    		end
    
    		set('Looting/OpenBPsAtLogin', reopenLogin)
    		return true
    	end
    
    	local randTimeSS = math.random(100, 700)
    
    init end
    
    auto(1000)
    
    if (not $connected) and (IgnoreServerSave or (sstime() >= 600 + randTimeSS and sstime() <= 85800 - randTimeSS)) and reconState == 1 then
    	set('Targeting/Enabled', 'no')
    	set('Cavebot/Enabled', 'no')
    
    	local changeSettings = false
    
    	if $worldvisible then
    		changeSettings = get('Settings/OpenMenuPolicy')
    		set('Settings/OpenMenuPolicy', 'Do nothing')
    	end
    
    	reconnect($worldvisible)
    
    	randTimeSS = math.random(100, 700)
    
    	if changeSettings then
    		set('Settings/OpenMenuPolicy', changeSettings)
    	end
    
    	if $connected then
    		pausewalking(10000)
    	else
    		return
    	end
    
    	if ReopenBps then
    		local clientMin = $minimized
    
    		if clientMin and not $addons.enabled then
    			-- if windaddons is enabled then we don't need to restore the window
    			-- but if it's not, the bp opener will get stuck and alert you anytime
    			-- se we restore the window to make sure it'll open and you won't die
    			restoreclient() waitping()
    		end
    
    		local reopenSuccess = openFunc()
    
    		if not reopenSuccess then
    			-- this will only happen if you took more than 10 seconds to open bps
    			-- if this happened probably you have another script trying to open it
    			-- or any other thing blocking it from opening, if so we should start
    			-- cavebot and targeting again to make sure you won't die, because after
    			-- 10 seconds the monsters will surround you and start attacking
    			printerrorf("Safe Reconnect: [%q] It took too long to open the backpacks, they could be already opened but for safety reasons you were alerted.", $name)
    			pausewalking(0)
    			set('Targeting/Enabled', 'yes')
    			set('Cavebot/Enabled', 'yes')
    
    			-- alert in this case
    			for _ = 1, 10 do
    				beep()
    				wait(1000)
    			end
    		end
    
    		if clientMin and not $minimized then
    			minimizeclient()
    		end
    	end
    
    	for _, callback in ipairs(SpecialChecks) do
    		-- here we check for the given special checks like
    		-- is on temple, low stamina, skulled, and logout
    		-- if something happened
    		if callback[1]() then
    			reconState = 0
    
    			return (callback[2] ~= nil and stopattack() and callback[2]()) or false
    		end
    	end
    
    	if not ($targeting and $cavebot) then
    		set('Targeting/Enabled', 'yes')
    		set('Cavebot/Enabled', 'yes')
    		pausewalking(0)
    	end
    end
    Ostatnio zmieniony przez Opeth : 04-03-2015, 10:52

  11. #805

    Notoryczny Miotacz Postów CzuP jest teraz offline
    Avatar CzuP
    Data rejestracji
    2009
    Posty
    1,271
    Siła reputacji
    15

    Domyślny

    Cytuj Opeth napisał Pokaż post
    Cytat został ukryty, ponieważ ignorujesz tego użytkownika. Pokaż cytat.
    Wszystko z pierwszej strony oficjalnego forum (podforum ze skryptami). Z Reconnecta usunąłem tylko kilka linijek o staminie żeby skrypty nie kolidowały ze sobą.

    Character Relogger by Raphael
    Kod:
    -- local SCRIPT_VERSION = '1.1.0'
    
    local minStamina  = 16 * 60 -- In minutes
    local accountList = {
    	{
    		account   = 'account1',
    		password  = 'password1',
    		character = 'character1'
    	},
    	{
    		account   = 'account2',
    		password  = 'password2',
    		character = 'character2'
    	},
    	{
    		account   = 'account3',
    		password  = 'password3',
    		character = 'character3'
    	}
    }
    
    -- DO NOT EDIT BELOW THIS LINE --
    for _, v in ipairs(accountList) do
    	v.character = v.character:lower()
    end
    
    if $stamina < minStamina then
    	local curAccount  = table.find(accountList, $name:lower(), 'character')
    	local nextAccount = accountList[(curAccount % #accountList) + 1]
    
    	waitandlogout()
    	waitping()
    	keyevent(VK_ESCAPE)
    	waitping()
    	connect(nextAccount.account, nextAccount.password, nextAccount.character)
    end
    Safe Reconnect by Leonardo
    Kod:
    init start
    	-- local SCRIPT_VERSION = "2.3.2"
    	-- If ReopenBps is set to true then it'll try to reopen the visible backpacks on the main backpack
    	-- setting it to false will just ignore your bps after you are logged in
    
    	local ReopenBps = true
    
    	-- If IgnoreServerSave is set to false it'll wait to relog if server save is occurring
    	-- setting it to true will try to relog even on server saving time
    
    	local IgnoreServerSave = false
    
    	-- [[ ONLY EDIT SPECIAL CHECKS IF YOU KNOW WHAT YOU'RE DOING ]]--
    
    	-- special checks are the checks it'll do after you login
    	-- for example: if you are skulled, inside temple, etc ...
    
    	local SpecialChecks = {
    		{
    			function()
    				return isontemple()
    			end,
    			function()
    				printerrorf("Safe Reconnect: [%q] Client closed. Reason: Character was inside a temple.", $name)
    				closeclient(true)
    			end
    		},
    		{
    			function()
    				return ($self.skull == SKULL_RED or $self.skull == SKULL_BLACK) and $pzone
    			end,
    			function()
    				printerrorf("Safe Reconnect: [%q] Client closed. Reason: Character was red/black skulled inside a protection zone.", $name)
    				closeclient(true)
    			end
    		},
    	}
    
    	-- DO NOT EDIT BELOW --
    	local reconState = 1
    
    	if $curscript.type ~= 'persistent' then
    		reconState = -1
    		printerror('Reconnect should be placed at Scripter/Persistents.\nChange this setting to run it properly.')
    	end
    
    	local openFunc = function()
    		local lifeTime = $timems
    		local reopenLogin = get('Looting/OpenBPsAtLogin')
    
    		set('Looting/OpenBPsAtLogin', 'no')
    		reopenwindows('small')
    
    		while $openingbps do
    			wait(100)
    
    			if $timems - lifeTime >= 10000 and not $pzone then
    
    				set('Looting/OpenBPsAtLogin', reopenLogin)
    				return false
    			end
    		end
    
    		set('Looting/OpenBPsAtLogin', reopenLogin)
    		return true
    	end
    
    	local randTimeSS = math.random(100, 700)
    
    init end
    
    auto(1000)
    
    if (not $connected) and (IgnoreServerSave or (sstime() >= 600 + randTimeSS and sstime() <= 85800 - randTimeSS)) and reconState == 1 then
    	set('Targeting/Enabled', 'no')
    	set('Cavebot/Enabled', 'no')
    
    	local changeSettings = false
    
    	if $worldvisible then
    		changeSettings = get('Settings/OpenMenuPolicy')
    		set('Settings/OpenMenuPolicy', 'Do nothing')
    	end
    
    	reconnect($worldvisible)
    
    	randTimeSS = math.random(100, 700)
    
    	if changeSettings then
    		set('Settings/OpenMenuPolicy', changeSettings)
    	end
    
    	if $connected then
    		pausewalking(10000)
    	else
    		return
    	end
    
    	if ReopenBps then
    		local clientMin = $minimized
    
    		if clientMin and not $addons.enabled then
    			-- if windaddons is enabled then we don't need to restore the window
    			-- but if it's not, the bp opener will get stuck and alert you anytime
    			-- se we restore the window to make sure it'll open and you won't die
    			restoreclient() waitping()
    		end
    
    		local reopenSuccess = openFunc()
    
    		if not reopenSuccess then
    			-- this will only happen if you took more than 10 seconds to open bps
    			-- if this happened probably you have another script trying to open it
    			-- or any other thing blocking it from opening, if so we should start
    			-- cavebot and targeting again to make sure you won't die, because after
    			-- 10 seconds the monsters will surround you and start attacking
    			printerrorf("Safe Reconnect: [%q] It took too long to open the backpacks, they could be already opened but for safety reasons you were alerted.", $name)
    			pausewalking(0)
    			set('Targeting/Enabled', 'yes')
    			set('Cavebot/Enabled', 'yes')
    
    			-- alert in this case
    			for _ = 1, 10 do
    				beep()
    				wait(1000)
    			end
    		end
    
    		if clientMin and not $minimized then
    			minimizeclient()
    		end
    	end
    
    	for _, callback in ipairs(SpecialChecks) do
    		-- here we check for the given special checks like
    		-- is on temple, low stamina, skulled, and logout
    		-- if something happened
    		if callback[1]() then
    			reconState = 0
    
    			return (callback[2] ~= nil and stopattack() and callback[2]()) or false
    		end
    	end
    
    	if not ($targeting and $cavebot) then
    		set('Targeting/Enabled', 'yes')
    		set('Cavebot/Enabled', 'yes')
    		pausewalking(0)
    	end
    end
    @Opeth
    No okej a w momencie gdy będę relogował na innego chara to reconnect nie będzie próbował zalogować się bo wykryje, że jestem wylogowany?

  12. #806
    Avatar Damovsky
    Data rejestracji
    2012
    Położenie
    Wrocław
    Posty
    1,144
    Siła reputacji
    12

    Domyślny

    no to dodaj jakiś action że gdy np mniej niż 15 staminy to wyłaczą skrypt na autoreloga tylko musisz sobie to rozdzielic

  13. #807

    Notoryczny Miotacz Postów CzuP jest teraz offline
    Avatar CzuP
    Data rejestracji
    2009
    Posty
    1,271
    Siła reputacji
    15

    Domyślny

    Cytuj Damovsky napisał Pokaż post
    Cytat został ukryty, ponieważ ignorujesz tego użytkownika. Pokaż cytat.
    no to dodaj jakiś action że gdy np mniej niż 15 staminy to wyłaczą skrypt na autoreloga tylko musisz sobie to rozdzielic
    Właśnie myślałem nad tym tylko nie mogę znaleźć na to funkcji w dokumentacji.

    @edit
    Ten reconnect nie działa po udpate.
    Ostatnio zmieniony przez CzuP : 04-03-2015, 19:24

  14. #808
    Avatar Opeth
    Data rejestracji
    2012
    Posty
    97
    Siła reputacji
    12

    Domyślny

    Sam nie mam windbota, sugerowałem się tylko tym co znalazłem na forum i drobnymi doświadczeniami z 14 dniowego triala, który zakończył się u mnie dość dawno. Wtedy w sumie też z tego korzystałem

  15. #809
    Avatar Maroco
    Data rejestracji
    2006
    Położenie
    Mannheim
    Posty
    64
    Siła reputacji
    19

    Domyślny

    Siemano , mam pytanie do was jak ustawic MWalle na scrolla. Przestalem dawno grac za czasow elfa i jestem kompletnie zielony aaa i jest cos takiego jak dash lub cos podobnego

  16. #810
    Avatar edek2_1932
    Data rejestracji
    2008
    Posty
    5,559
    Siła reputacji
    19

    Domyślny

    ma ktos w moze w miare smigajacy skrypt dla eda na ice witch temple?

Reklama

Informacje o temacie

Użytkownicy przeglądający temat

Aktualnie 1 użytkowników przegląda ten temat. (0 użytkowników i 1 gości)

Podobne tematy

  1. [BBot] Oficjalny temat
    Przez klima06 w dziale Tibia
    Odpowiedzi: 130
    Ostatni post: 11-04-2016, 15:48
  2. [RED BOT PRO] Oficjalny temat
    Przez Tibiaredbot.pl w dziale Tibia
    Odpowiedzi: 1373
    Ostatni post: 05-01-2016, 17:08
  3. [Elfbot NG] Oficjalny temat, poradnik
    Przez Bartek111 w dziale Tibia
    Odpowiedzi: 181
    Ostatni post: 02-05-2015, 19:06

Zakładki

Zakładki

Zasady postowania

  • Nie możesz pisać nowych tematów
  • Nie możesz pisać postów
  • Nie możesz używać załączników
  • Nie możesz edytować swoich postów
  •