reactOnNPC v.2.0.2 by hakore

Other plugins for extending OpenKore's functionality. This forum is only for posting new plugins and commenting on existing plugins. For support, use the Support forum.

Moderator: Moderators

Message
Author
headlesscarmen
Noob
Noob
Posts: 17
Joined: 08 Oct 2018, 15:54
Noob?: Yes
Location: Kuala Lumpur,Malaysia

Re: reactOnNPC v.2.0.2 by hakore

#431 Post by headlesscarmen »

c4c1n6kr3m1 wrote:
headlesscarmen wrote: anyone has a solution, for 3 days im dreading this.haha
can you test this style? this one accept plus minus sign or others math operator

Code: Select all

reactOnNPC_debug 1
reactOnNPC eval {my $number1 = "#1~1";my $number2 = "#1~1";my $opsign = "#2~1";my $answer = eval("$number1 $opsign $number2");message("The answer is $answer\n","info");Commands::run("talk num $anwser")} {
type number
useColors 1
delay 5
msg_0 /\[ Anti BOT System \]/
msg_1 /If A = (\d+)\s+B = (\d+)/
msg_2 /How many is A (.) B ?/
}
Hi,thanks for the god's work u doing here answering question.

here is the debug code after i tested it.
You are now: state: Frozen
Options changed.
You are now immune to attacks.
You are now: Endure
You are now: Berserk (Duration: 1000000s)
Unknown #110014448: [ Anti BOT System ]
[reactOnNPC] NPC message saved (0): "[ Anti BOT System ]".
Unknown #110014448: If A = 67 B = 5
[reactOnNPC] NPC message saved (1): "If A = 67 B = 5".
Unknown #110014448: How many is A - B ?
[reactOnNPC] NPC message saved (2): "How many is A - B ?".
[reactOnNPC] onNPCAction type is: number.
[reactOnNPC] Conditions for reactOnNPC_0 (npc:number , rect:number) is met.
[reactOnNPC] Matching [msg (0)] "[ Anti BOT System ]" to "/\[ Anti BOT System \]/" ... regexp ok.
[reactOnNPC] Matching [msg (1)] "If A = 67 B = 5" to "/If A = (\d+)\s+B = (\d+)/" ... regexp ok.
[reactOnNPC] Matching [msg (2)] "How many is A - B ?" to "/How many is A (.) B ?/" ... regexp ok.
[reactOnNPC] React to NPC with delay. Execute command "eval {my $number1 = "67";my $number2 = "67";my $opsign = "-";my $answer = eval("$number1 $opsign $number2");message("The answer is $answer\n","info");Commands::run("talk num $anwser")}" after 5 seconds.
: Type 'talk num <number #>' to input a number.
Allowed other player invite to Party
Other players are not allowed to view your Equipment.
[reactOnNPC] Reacting to NPC. Executing command "eval {my $number1 = "67";my $number2 = "67";my $opsign = "-";my $answer = eval("$number1 $opsign $number2");message("The answer is $answer\n","info");Commands::run("talk num $anwser")}".
The answer is 0
Syntax Error in function 'talk' (Talk to NPC)
Usage: talk <NPC # | "NPC name" | cont | resp | num | text > [<response #>|<number #>]

this work very well but only for addition question. The anti bot system ask addition and subtraction question.

c4c1n6kr3m1
The Way Of Human
The Way Of Human
Posts: 150
Joined: 24 Mar 2012, 04:13
Noob?: Yes

Re: reactOnNPC v.2.0.2 by hakore

#432 Post by c4c1n6kr3m1 »

headlesscarmen wrote:
c4c1n6kr3m1 wrote:
headlesscarmen wrote: anyone has a solution, for 3 days im dreading this.haha
can you test this style? this one accept plus minus sign or others math operator

Code: Select all

reactOnNPC_debug 1
reactOnNPC eval {my $number1 = "#1~1";my $number2 = "#1~1";my $opsign = "#2~1";my $answer = eval("$number1 $opsign $number2");message("The answer is $answer\n","info");Commands::run("talk num $anwser")} {
type number
useColors 1
delay 5
msg_0 /\[ Anti BOT System \]/
msg_1 /If A = (\d+)\s+B = (\d+)/
msg_2 /How many is A (.) B ?/
}
Hi,thanks for the god's work u doing here answering question.

here is the debug code after i tested it.
You are now: state: Frozen
Options changed.
You are now immune to attacks.
You are now: Endure
You are now: Berserk (Duration: 1000000s)
Unknown #110014448: [ Anti BOT System ]
[reactOnNPC] NPC message saved (0): "[ Anti BOT System ]".
Unknown #110014448: If A = 67 B = 5
[reactOnNPC] NPC message saved (1): "If A = 67 B = 5".
Unknown #110014448: How many is A - B ?
[reactOnNPC] NPC message saved (2): "How many is A - B ?".
[reactOnNPC] onNPCAction type is: number.
[reactOnNPC] Conditions for reactOnNPC_0 (npc:number , rect:number) is met.
[reactOnNPC] Matching [msg (0)] "[ Anti BOT System ]" to "/\[ Anti BOT System \]/" ... regexp ok.
[reactOnNPC] Matching [msg (1)] "If A = 67 B = 5" to "/If A = (\d+)\s+B = (\d+)/" ... regexp ok.
[reactOnNPC] Matching [msg (2)] "How many is A - B ?" to "/How many is A (.) B ?/" ... regexp ok.
[reactOnNPC] React to NPC with delay. Execute command "eval {my $number1 = "67";my $number2 = "67";my $opsign = "-";my $answer = eval("$number1 $opsign $number2");message("The answer is $answer\n","info");Commands::run("talk num $anwser")}" after 5 seconds.
: Type 'talk num <number #>' to input a number.
Allowed other player invite to Party
Other players are not allowed to view your Equipment.
[reactOnNPC] Reacting to NPC. Executing command "eval {my $number1 = "67";my $number2 = "67";my $opsign = "-";my $answer = eval("$number1 $opsign $number2");message("The answer is $answer\n","info");Commands::run("talk num $anwser")}".
The answer is 0
Syntax Error in function 'talk' (Talk to NPC)
Usage: talk <NPC # | "NPC name" | cont | resp | num | text > [<response #>|<number #>]

this work very well but only for addition question. The anti bot system ask addition and subtraction question.
ah sorry i made mistake, it's because 67 - 67 = 0

$number2 should "#1~2"
try this

Code: Select all

reactOnNPC eval {my $number1 = "#1~1";my $number2 = "#1~2";my $opsign = "#2~1";my $answer = eval("$number1 $opsign $number2");message("The answer is $answer\n","info");Commands::run("talk num $answer")} {


or this, change Commands::run("talk num $answer") with $messageSender->sendTalkNumber($talk{'ID'}, $answer)

Code: Select all

reactOnNPC eval {my $number1 = "#1~1";my $number2 = "#1~2";my $opsign = "#2~1";my $answer = eval("$number1 $opsign $number2");message("The answer is $answer\n","info");$messageSender->sendTalkNumber($talk{'ID'}, $answer)} {

rjl1989
Noob
Noob
Posts: 8
Joined: 03 Apr 2019, 11:40
Noob?: Yes

Re: reactOnNPC v.2.0.2 by hakore

#433 Post by rjl1989 »

反外挂验证人员: [ 反外挂剩余 3 次验证机会]
[reactOnNPC] NPC message saved (0): "[ 反外挂剩余 ^ff00003^000000 次验证机会]".
反外挂验证人员: - 您还剩余 1分30秒验证时间。
[reactOnNPC] NPC message saved (1): "- 您还剩余 ^ff00001^000000分^ff000030^000000秒验证时间。".
反外挂验证人员: 防止挂机,请用数字完成验证.
[reactOnNPC] NPC message saved (2): " 防止挂机,请用数字完成验证.".
反外挂验证人员: 7 + 10 〓 ( ? )
[reactOnNPC] NPC message saved (3): " ^e5387d7^000000 + ^0066FF10^000000 〓 ( ? )".
反外挂验证人员: 输入 'talk num <nomer #>' 指定对话内容.
[reactOnNPC] onNPCAction type is: number.




reactOnNPC_debug 1
reactOnNPC eval {my $number1 = "#1~1";my $number2 = "#1~3";my $opsign = "#1~2";my $answer = eval("$number1 $opsign $number2");message("The answer is $answer\n","info");Commands::run("talk num $answer")} {
type number
useColors 1
delay 5
msg_0 / 防止挂机,请用数字完成验证./
msg_1 /\^[0-9a-fA-F]{6}(\d+)\^000000\s(.)\s\^[0-9a-fA-F]{6}(\d+)\^000000/


}

Image

Image
Numbers are special characters,Can not work
help me

expelliarmus
Noob
Noob
Posts: 2
Joined: 07 Sep 2019, 09:22
Noob?: Yes

Re: reactOnNPC v.2.0.2 by hakore

#434 Post by expelliarmus »

anyone know why my npc react with "^000000" at the end? .. i dont know how to solve this..

Image

Image


i'm using this right now :

Code: Select all

reactOnNPC_debug 1
reactOnNPC talk num @eval(my $color1 = '#0~0';my $color2 = '#1~0';if ($color1 eq $color2@) {return '#1~1'}) {
	type number
	useColors 1
	delay 2
	msg_0 /Please Enter The \^([0-9a-fA-F]{6})Blue\^000000 Code/
	msg_1 /.*\^0000FF(\S+)\^[0-9a-fA-F]{6}\S+\^000000/
}

a23hyan
Noob
Noob
Posts: 3
Joined: 20 Jun 2017, 13:37
Noob?: No
Location: Cavite

Re: reactOnNPC v.2.0.2 by hakore

#435 Post by a23hyan »

need help on the updated bot check at ragnarok landverse

Map Change: sec_pri.gat (24, 75)
[dist=4.1] Magnolia (0): 40+41 =?
[dist=2.8] Magnolia (0): what's color of banana?
[dist=2.2] Magnolia (0): What day is today?
[dist=1.4] Magnolia (0): (1+1)+2 = ?
kung walang knowledge , walang power!


Post Reply