this is my console look like,need key in 38662 to pass anti botkiller.
How to write in config?
Thank you.
[npc] Unknown #110002250: [反外掛程式]
[npc] Unknown #110002250: 您好!為了降低外掛對伺服器的侵擾,
[npc] Unknown #110002250: 我們需要驗證才能讓您繼續遊戲,
[npc] Unknown #110002250: 請您正確輸入下面的驗證碼。
[npc] Unknown #110002250: ╔════╦═══╗
[npc] Unknown #110002250: ║驗證碼:║38662║
[npc] Unknown #110002250: ╚════╩═══╝
[schat] ║ 反外掛程式 ║ : 請輸入對話框內的驗證碼,您有10秒的輸入時間.
[npc] : 請輸入 'talk cont' 以繼續交談
[parseMsg_statuslook] You are no longer: 動作延遲
[npc] itself: 請輸入 'talk text' (回應給NCP)
Please,how to use reactOnNPC to anti botkiller
Moderator: Moderators
- fadreus
- The Kore Devil
- Posts: 708
- Joined: 17 Nov 2017, 23:32
- Noob?: No
- Location: Genting Highland, Malaysia
- Contact:
Re: Please,how to use reactOnNPC to anti botkiller
Try something like this?
*If the text pattern remain the same each time it appear*
*If the text pattern remain the same each time it appear*
Code: Select all
automacro AntiBot {
console /[npc] Unknown #110002250: ║驗證碼:║(.*?)║/
call {
pause 2 (depends on how long the text would appear before need to reply the number)
do talk text $.lastMatch1
}
}
iRO Supporter.
Read before you ask is the wisest thing human can do.
Unless you're a cat.

Re: Please,how to use reactOnNPC to anti botkiller
Thank you for support,but it not work.fadreus wrote:Try something like this?
*If the text pattern remain the same each time it appear*
Code: Select all
automacro AntiBot { console /[npc] Unknown #110002250: ║驗證碼:║(.*?)║/ call { pause 2 (depends on how long the text would appear before need to reply the number) do talk text $.lastMatch1 } }
Image as below. NPC dialogue box

-
- The Way Of Human
- Posts: 150
- Joined: 24 Mar 2012, 04:13
- Noob?: Yes
Re: Please,how to use reactOnNPC to anti botkiller
try edit this
or this
@fadreus, you need to escape special metacharacters with \
but i forget the list
just google it, i don't know why i got redirected to ip4.google , that F* chaptcha
Code: Select all
console /110002250: .*?(\d+)/
Code: Select all
console /\[npc\] Unknown #110002250: .*?(\d+)/
but i forget the list

just google it, i don't know why i got redirected to ip4.google , that F* chaptcha
Last edited by c4c1n6kr3m1 on 11 May 2018, 03:25, edited 1 time in total.
- fadreus
- The Kore Devil
- Posts: 708
- Joined: 17 Nov 2017, 23:32
- Noob?: No
- Location: Genting Highland, Malaysia
- Contact:
Re: Please,how to use reactOnNPC to anti botkiller
0,oc4c1n6kr3m1 wrote: you need to escape special metacharacters with \
but i forget the list
just google it,

Ooo.. That's why many use that.
Now I know. I learn something today.

Thx.
iRO Supporter.
Read before you ask is the wisest thing human can do.
Unless you're a cat.

Re: Please,how to use reactOnNPC to anti botkiller
c4c1n6kr3m1 wrote:try edit thisor thisCode: Select all
console /110002250: .*?(\d+)/
@fadreus, you need to escape special metacharacters with \Code: Select all
console /\[npc\] Unknown #110002250: .*?(\d+)/
but i forget the list
just google it, i don't know why i got redirected to ip4.google , that F* chaptcha
It's ok!
Thank you very much.