HELP!! DotaRO Antibot

Private server support - Only post connectivity issues in the subforum!

Moderator: Moderators

Message
Author
azoroik
Noob
Noob
Posts: 11
Joined: 05 May 2009, 10:55
Noob?: No

HELP!! DotaRO Antibot

#1 Post by azoroik »

Can anybody tell me macro for bypassing this two type of antibot (Please dont give me links for previous posts on forums i have seen all the antibot post and none helped)

Here are the Screenshots :


Type 1 Antibot (Word type) :


Image
Image
Image




Type 2 Antibot (Monster talk) :
Image

Raider
The Kore Devil
The Kore Devil
Posts: 672
Joined: 22 Feb 2013, 03:40
Noob?: No
Location: The Netherlands

Re: HELP!! DotaRO Antibot

#2 Post by Raider »

Same as the OsRO anti police.
khaigh21 wrote:Here is the sample macro for OsRO anti bot. Learn to study it.

automacro bot09 {
console /^.+\s.\d+:\s+.?(one|önê|onê|öne|two|twö|thrêe|three|thrêê|threê|föûr|four|föur|foûr|fïve|five|fïvê|fivê|f.ve|sïx|six|s.x|sêvên|seven|sêven|sevên|eïght|eight|êight|êïght|e.ght|nïne|nine|nïnê|ninê|n.ne)+.?$/i
exclusive 1
overrideAI 1
priority 1
call {

$first = $.lastMatch1

if ($first =~ /one|önê|onê|öne/) goto one
if ($first =~ /two|twö/) goto two
if ($first =~ /thrêe|three|thrêê|threê/) goto three
if ($first =~ /föûr|four|föur|foûr/) goto four
if ($first =~ /fïve|five|fïvê|fivê|f?ve/) goto five
if ($first =~ /sïx|six|s?x/) goto six
if ($first =~ /sêvên|seven|sêven|sevên/) goto seven
if ($first =~ /eïght|eight|êight|êïght|e?ght/) goto eight
if ($first =~ /nïne|nine|nïnê|ninê|n?ne/) goto nine

:one
$num = 1
goto result
:two
$num = 2
goto result
:three
$num = 3
goto result
:four
$num = 4
goto result
:five
$num = 5
goto result
:six
$num = 6
goto result
:seven
$num = 7
goto result
:eight
$num = 8
goto result
:nine
$num = 9
goto result

:result
$result = $num
do talk $result
do talk num $result
release all
}
}

- helpmePLS
Noob
Noob
Posts: 15
Joined: 16 Apr 2013, 09:02
Noob?: Yes

Re: HELP!! DotaRO Antibot

#3 Post by - helpmePLS »

here's my Monster Talk Answer.

automacro antiBotMonTalk {
console /^\[Guild\] .*: .*\s(\d+)\s.*$/
overrideAI 1
priority 1
call aBMT
}

macro aBMT {
do ai manual
pause 2
log $.lastMatch1
pause 1
do talk cont
pause 1
do talk num $.lastMatch1
pause 7
do ai on
}

btw. can you give me a custom map. here is the all dotaro custom map

http://www.mediafire.com/?4su0b4h9m98fkbv

hope you do that for me :))

azoroik
Noob
Noob
Posts: 11
Joined: 05 May 2009, 10:55
Noob?: No

Re: HELP!! DotaRO Antibot

#4 Post by azoroik »

@raider hey can u thell me how to run monster talk antibot when monster talk anti bot comes and word antibot when the word antibot comes coz i put both the macros in my macro.txt and in config put

Code: Select all

macro bot09
macro antiBotMonTalk

Raider
The Kore Devil
The Kore Devil
Posts: 672
Joined: 22 Feb 2013, 03:40
Noob?: No
Location: The Netherlands

Re: HELP!! DotaRO Antibot

#5 Post by Raider »

azoroik wrote:@raider hey can u thell me how to run monster talk antibot when monster talk anti bot comes and word antibot when the word antibot comes coz i put both the macros in my macro.txt and in config put

Code: Select all

macro bot09
macro antiBotMonTalk
I don't know, is there something specific about the monster antibot, like a word or sentence? Because now the automacros just trigger when the console matches the specific words.

azoroik
Noob
Noob
Posts: 11
Joined: 05 May 2009, 10:55
Noob?: No

Re: HELP!! DotaRO Antibot

#6 Post by azoroik »

@raider checkout last screenshot i have posted that 1 is monster talk antibot. Here we have to typein the number from chat window

azoroik
Noob
Noob
Posts: 11
Joined: 05 May 2009, 10:55
Noob?: No

Re: HELP!! DotaRO Antibot

#7 Post by azoroik »

Raider wrote:Same as the OsRO anti police.
khaigh21 wrote:Here is the sample macro for OsRO anti bot. Learn to study it.

automacro bot09 {
console /^.+\s.\d+:\s+.?(one|önê|onê|öne|two|twö|thrêe|three|thrêê|threê|föûr|four|föur|foûr|fïve|five|fïvê|fivê|f.ve|sïx|six|s.x|sêvên|seven|sêven|sevên|eïght|eight|êight|êïght|e.ght|nïne|nine|nïnê|ninê|n.ne)+.?$/i
exclusive 1
overrideAI 1
priority 1
call {

$first = $.lastMatch1

if ($first =~ /one|önê|onê|öne/) goto one
if ($first =~ /two|twö/) goto two
if ($first =~ /thrêe|three|thrêê|threê/) goto three
if ($first =~ /föûr|four|föur|foûr/) goto four
if ($first =~ /fïve|five|fïvê|fivê|f?ve/) goto five
if ($first =~ /sïx|six|s?x/) goto six
if ($first =~ /sêvên|seven|sêven|sevên/) goto seven
if ($first =~ /eïght|eight|êight|êïght|e?ght/) goto eight
if ($first =~ /nïne|nine|nïnê|ninê|n?ne/) goto nine

:one
$num = 1
goto result
:two
$num = 2
goto result
:three
$num = 3
goto result
:four
$num = 4
goto result
:five
$num = 5
goto result
:six
$num = 6
goto result
:seven
$num = 7
goto result
:eight
$num = 8
goto result
:nine
$num = 9
goto result

:result
$result = $num
do talk $result
do talk num $result
release all
}
}

@Raider the antibot didnt worked it even didnt detect the antibot police HELP!!

all the number character list is as below :
Units : (Hundreds have same words as below e.g one Hundred , föûr Hundred)
one
two
thrêe
föûr
fïve
sïx
sêvên
eïght
nïne

Tens :
twênty
thïrty
förty
fïfty
sïxty
sêvêntÿ
eightÿ
ninêtÿ

Teens:
elêvên
twelve|twêlve|twelvê|twêlvê (Didn't Got twelve till now)
thïrtêên
föûrtêên
feïghtêên (this is same as written no spelling mistake)
sïxtêên
sêvêntêên
eïghtêên|eightêên (Didn't Got eighteen till now)
nïnêtêên

vaughndat
Noob
Noob
Posts: 17
Joined: 25 Mar 2013, 20:46
Noob?: Yes

Re: HELP!! DotaRO Antibot

#8 Post by vaughndat »

yeah need help!!

ajdee
Human
Human
Posts: 28
Joined: 22 May 2013, 07:42
Noob?: Yes

Re: HELP!! DotaRO Antibot

#9 Post by ajdee »

mine's disconnection when logging in can you help me ? :(

Post Reply