Zapomniałem przestawić, zrobię poprawkę w kolejnym update. Teraz możesz użyć lua scriptu: https://github.com/Ascerr/Lua-Scripts/blob/master/Auto%20Manarune.lua
ive been using this, anyway to make a script to switch to a diff file, when it reaches a SQM?
--[[ Script Name: Invasion Raid Message Alert Description: Play Sound when message appear on screen. Author: Ascer - example ]]
local raids = { "Boss Task (Skeleton Archer): 145 of 150 killed.", -- messages to check, copy it direct from game client. "Boss Task (Skeleton Archer): 150 of 150 killed." }
-- DON'T EDIT BELOW
raids = table.lower(raids)
function proxyText(messages) for i, msg in ipairs(messages) do if table.find(raids, string.lower(msg.message)) then Rifbot.LoadSettings("Retinitecaminho") print(msg.message, msg.mode) end end end Proxy.TextNew("proxyText")
Go to Rifbot-Project\Alarms and there you can replace sound file with your own. Additional sounds file names can be used only with lua scripts. In this case paste file to Alarms and next open Rifbot Lib.lua in line 25 you can expand RIFBOT_SOUNDS with your sound name.
Czy jest możliwość zrobienia funkcji wykonująca polecenie ctrl+ppm na item? Na serwerze występuje dodatkowa opcja itemu, która jest możliwa do uruchomienia po dostaniu się do tego okienka
Teoretycznie można by przestawić w grze opcję Game -> Classic Control [V] i wtedy wstarczyłoby użyć prawym bez controla na item ale z tego co sprawdzałem ta opcja nie działa więc nie da się tego zrobić z bota. Używanie myszki oraz klawiatury to osobne funkcje a aby uzyskać efekt Ctrl+ppm trzeba najpierw wcisnąć ctrl i pozostawić go wciśniętym a potem wcisnąć ppm i w tej samej kolejności wyłączyć.
Second night in a row Riftbot just exit by itself for no reason (and I died ofc). When I try to restart the bot it just says "File riftbot.exe does not exist, re-download the bot". What should I do?
Ja na twoim miejscu bym szukał innego serwera bo tu jak gm wystartował z banowaniem za bota to most spalony i mi szkoda by było tracić czasu na grę jeżeli może cię w każdej chwili zbanować przez ten lub inny systemik. Ja w wolnym czasie będę testował obejście tego ale nie mam go zbyt wiele na takie zagrywki.
hi, so i am trying to hunt demon skeleton, but for some reason the bot doesnt recognize the word, i put demon skeleton, 14:54 You see a demon skeleton (Level 0). exactly as in game, and it doesnt attack, and anti gm also stops when its on screen as if its a diff monster, any idea what could it be?
--[[ Script Name: Check Creature type Description: Check is creature is player, monster or NPC and write this in InformationBox Author: Ascer - example ]]
local PLAYER = "Demon Skeleton" -- name of player with Capital letter
-- Don't edit below this line.
Module.New("Check Creature type", function () if Self.isConnected() then local players = Creature.iCreatures(7, false) for i = 1, #players do local player = players[i] if player.name == PLAYER then if Creature.isPlayer(player) then printf("isPlayer") elseif Creature.isMonster(player) then printf("isMonster") else printf("isNPC") end break end end end end) like this? cause nothing happens
Guess this monster could have wrong added name, check if this code works:
local creatures = Creature.getCreatures() for i = 1, #creatures do local creature = creatures[i] if string.instr(creature.name, "demon") then print("found creature: " .. creature.name .. ", ID: " creature.id) end end
local creatures = Creature.getCreatures() for i = 1, #creatures do local creature = creatures[i] if string.instr(creature.name, "demon") then print("found creature: " .. creature.name .. ", ID: " creature.id)) end end
local creatures = Creature.getCreatures() for i = 1, #creatures do local creature = creatures[i] if string.instr(creature.name, "demon") then print("found creature: " .. creature.name .. ", ID: " .. creature.id) end end
Can you update the server http://ntsw.pl? This server has over 500 players. The admin offers SMS Shop Unban, so you can be sure that he will not change the client files when you update the bot. You only need to update once. A lot of people ask, we really care about it.
Game client is different than others i support with bot and to many functions in assembly need to be change to run bot on this DragonBall tibia. Adding this ot will consume more time than adding 20 other servers so not worth.
update na soe?
ReplyDeleteRifbot is up to date for Souls of Elysium
DeleteDlaczego bot nie używa smp ani gmp? Nawet wpisując ID manas to nie chce go używać. Używa tylko manasa zwykłego.
ReplyDeleteZapomniałem przestawić, zrobię poprawkę w kolejnym update. Teraz możesz użyć lua scriptu:
Deletehttps://github.com/Ascerr/Lua-Scripts/blob/master/Auto%20Manarune.lua
ive been using this, anyway to make a script to switch to a diff file, when it reaches a SQM?
ReplyDelete--[[
Script Name: Invasion Raid Message Alert
Description: Play Sound when message appear on screen.
Author: Ascer - example
]]
local raids = {
"Boss Task (Skeleton Archer): 145 of 150 killed.", -- messages to check, copy it direct from game client.
"Boss Task (Skeleton Archer): 150 of 150 killed."
}
-- DON'T EDIT BELOW
raids = table.lower(raids)
function proxyText(messages)
for i, msg in ipairs(messages) do
if table.find(raids, string.lower(msg.message)) then
Rifbot.LoadSettings("Retinitecaminho")
print(msg.message, msg.mode)
end
end
end
Proxy.TextNew("proxyText")
To load settings you need to put also .txt:
DeleteRifbot.LoadSettings("Retinitecaminho.txt")
https://retro-global.net/ does it work?
ReplyDeleteNo. Here you can check list where rifbot works: https://www.rifbot.eu/p/changelogs.html
DeleteIs it possible to modify the "Creature Alert.lua" script to alarm only 2 or 3 times? It keeps warning in an infinite loop
ReplyDeleteFeel free to do it for yourself. Add wait(10000) in line 54 or add count to 3 example:
DeleteLine 12: local sounds = 0
line 50: if count >= AMOUNT and sounds <= 3 then
Line 54: sounds = sounds + 1
Is it possible to add new sounds to rifbot? Or change the private message to MSN sound for example xD
ReplyDeleteGo to Rifbot-Project\Alarms and there you can replace sound file with your own. Additional sounds file names can be used only with lua scripts. In this case paste file to Alarms and next open Rifbot Lib.lua in line 25 you can expand RIFBOT_SOUNDS with your sound name.
DeleteCzy jest możliwość zrobienia funkcji wykonująca polecenie ctrl+ppm na item? Na serwerze występuje dodatkowa opcja itemu, która jest możliwa do uruchomienia po dostaniu się do tego okienka
ReplyDeleteTeoretycznie można by przestawić w grze opcję Game -> Classic Control [V] i wtedy wstarczyłoby użyć prawym bez controla na item ale z tego co sprawdzałem ta opcja nie działa więc nie da się tego zrobić z bota. Używanie myszki oraz klawiatury to osobne funkcje a aby uzyskać efekt Ctrl+ppm trzeba najpierw wcisnąć ctrl i pozostawić go wciśniętym a potem wcisnąć ppm i w tej samej kolejności wyłączyć.
Deletewhen update for Midhem come? is no much change in structure, very fast fix for u my friend
ReplyDeleteIt has been removed from support, don't planning to restore it in future.
DeleteSecond night in a row Riftbot just exit by itself for no reason (and I died ofc). When I try to restart the bot it just says "File riftbot.exe does not exist, re-download the bot". What should I do?
ReplyDeleteWindows Defender removed rifbot.exe. First disable Real Time Protection in Virus settings, later re-download bot.
DeleteThats the thing. I havent done anything and I just checked, I have the Real time protection off permanently thru the registry editor.
Deletesiemka, byla aktualizacja klienta errorots - dasz rade cos wykombinowac?
ReplyDeleteGotowe
Deletewlaczylem rifbota i od razu gm sie teleportowal z pytaniem czy go wylacze czy chce bana - idzie to jakos obejsc by nie otrzymywali alertow XD?
Deletespróbuj zmienić nazwę procesu z rifbot.exe na inny
Deleteto za jakis czas sprobuje, bo nie mam zbytnio jak zmienic IP, a powiedzial, ze bana dostane jak jeszcze raz mu alert wyskoczy xD
Deletechyba nie pomaga, bo sie posypaly bany
DeleteMusimy cierpliwie poczekać jak Rafał to ogarnie , napisał mi że to skomplikowany temat więc zapewne jak to naprawi to da nam znać
Deletei co można włączać czy nie? :D
DeleteUpdate for new medivia client?
ReplyDeletedone
DeleteUpdate for new global WAD cleint pls
ReplyDeleterdy
DeleteBedzie coś zrobione z Errorotsem?
ReplyDeleteJa na twoim miejscu bym szukał innego serwera bo tu jak gm wystartował z banowaniem za bota to most spalony i mi szkoda by było tracić czasu na grę jeżeli może cię w każdej chwili zbanować przez ten lub inny systemik. Ja w wolnym czasie będę testował obejście tego ale nie mam go zbyt wiele na takie zagrywki.
DeleteTrzymam Cię Rafik za słowo i mocno dopinguje. Dyzma nie może być Legendą, która pokona bota 😁 Także działaj, a my czekamy 🤝🏻
ReplyDeletehi, so i am trying to hunt demon skeleton, but for some reason the bot doesnt recognize the word, i put demon skeleton, 14:54 You see a demon skeleton (Level 0). exactly as in game, and it doesnt attack, and anti gm also stops when its on screen as if its a diff monster, any idea what could it be?
ReplyDeleteUse this lua to check this monster: https://github.com/Ascerr/Lua-Scripts/blob/master/Check%20Creature%20Type.lua
Delete--[[
DeleteScript Name: Check Creature type
Description: Check is creature is player, monster or NPC and write this in InformationBox
Author: Ascer - example
]]
local PLAYER = "Demon Skeleton" -- name of player with Capital letter
-- Don't edit below this line.
Module.New("Check Creature type", function ()
if Self.isConnected() then
local players = Creature.iCreatures(7, false)
for i = 1, #players do
local player = players[i]
if player.name == PLAYER then
if Creature.isPlayer(player) then
printf("isPlayer")
elseif Creature.isMonster(player) then
printf("isMonster")
else
printf("isNPC")
end
break
end
end
end
end) like this? cause nothing happens
with the anti gm, atleast it shows in log 15:12:43 Lua: Detected monster Demon Skeleton on screen.
DeleteGuess this monster could have wrong added name, check if this code works:
Deletelocal creatures = Creature.getCreatures()
for i = 1, #creatures do
local creature = creatures[i]
if string.instr(creature.name, "demon") then
print("found creature: " .. creature.name .. ", ID: " creature.id)
end
end
Tell me also where you play?
Soul of elysium, lua error line 5
Deletelocal creatures = Creature.getCreatures()
for i = 1, #creatures do
local creature = creatures[i]
if string.instr(creature.name, "demon") then
print("found creature: " .. creature.name .. ", ID: " creature.id))
end
end
On soe reading monsters works fine.
Deletelocal creatures = Creature.getCreatures()
for i = 1, #creatures do
local creature = creatures[i]
if string.instr(creature.name, "demon") then
print("found creature: " .. creature.name .. ", ID: " .. creature.id)
end
end
something wrong with this script, it starts and ends at the same second,
DeleteIt should be, only checks if it's possible to detect creature
Deletefound creature: Demon Skeleton , ID: 1073813586
DeleteYou see there is " " space after Demon Skeleton. Admin wrong added this creature. I'll handle this with next update
Deletethere is a new spell that creates a ball of light ingame, is there anyway to know when one was created?
DeleteGuess no, only way you can check is reading proxy to catch message about spell.
DeleteEy update to nosthalter violet, now is dont work on this server, get error
ReplyDeleteThey use now different game client and rifbot won't works there until i release new huge update for such as game clients, it may take weeks..
Deleteistnieje szansa by bot dzialal na "ntsw"?
ReplyDeleteNie, inny serwer.
DeleteYou're not opening the mob bags in Elderan. Can you fix it?
ReplyDeleteMake sure you using last bot version, i last added custom bags on Elderan to cavebot
DeleteCan you update the server http://ntsw.pl?
ReplyDeleteThis server has over 500 players.
The admin offers SMS Shop Unban, so you can be sure that he will not change the client files when you update the bot.
You only need to update once.
A lot of people ask, we really care about it.
Game client is different than others i support with bot and to many functions in assembly need to be change to run bot on this DragonBall tibia. Adding this ot will consume more time than adding 20 other servers so not worth.
Deletecan update to https://nostalgictibia.online/?news
ReplyDeleteascer?
DeleteCurrently nope, maybe in future.
Deletejest szansa ze bot bedzie dzialal na errorots?
ReplyDeleteDziała, sprawdzałem teraz.
Deleteale działa na zasadzie że już nie dostają tych alertów gmowie ?
DeleteNie robiłem zmian pod error, więc pewnie będą banować.
DeleteJest Szansa zrobić bota pod RonOts?
ReplyDeletepod takie gunwo nie ma szans
Deletebedzie update na olders?
ReplyDeletegotowe
Delete