Jump to content
  • 0

When you Log In this will check you if you are BOT or NOT.


Renji Abarai

Question


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  90
  • Reputation:   0
  • Joined:  03/29/13
  • Last Seen:  

anyone have this script?
* When you Log In this will check you if you are BOT or NOT.

* if you didn't answer correctly you will be kick in the server. (3 attempts)


here is the link that ive read before, but i don't want the other features.
http://www.eathena.ws/board/lofiversion/index.php/t240945.html


I want to make it Simple Anti Bot Check only when login in game.

* When you Log In this will check you if you are BOT or NOT.

Sample picture 1
r89esy.jpg

Sample picture 2

19useh.jpg

Sample picture 3

2ldim2g.jpg

Sample picture 4

2mrsm6e.jpg

* if you didn't answer correctly you will be kick in the server. (3 attempts)

 

Edited by Renji Abarai
Link to comment
Share on other sites

19 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

like this ?

http://upaste.me/r/8baa14

 

i didnt test the script.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  1479
  • Reputation:   172
  • Joined:  12/14/11
  • Last Seen:  


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  90
  • Reputation:   0
  • Joined:  03/29/13
  • Last Seen:  

somethinglike this ?

http://upaste.me/6e5f275a371f5b9

 

 

Sir Emistry & Sir Winz something like this that will actually ask you immediately when you login

r89esy.jpg

 

 

19useh.jpg

 

2ldim2g.jpg

 

2mrsm6e.jpg

Edited by Renji Abarai
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  2
  • Reputation:   0
  • Joined:  04/26/13
  • Last Seen:  

woah! that's cool. anyone have this? :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  90
  • Reputation:   0
  • Joined:  03/29/13
  • Last Seen:  

anyone can help me? :/

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

Here's a quick example npc I'll probably finish this one up later today.

prontera,150,150,5	script	Anti-bot-tests#1	100,{
		mes "[^FF0000Anti Bot Checking^000000]";
		mes "Are you a bot?";
		mes "You have 5 minutes to follow the directions bellow and verify your a real player.";
		mes "Choose the correct colour and number to enter.";
		next;
		.@correct = rand(.length);
		copyarray .@colour$, .colour$, getarraysize(.colour$);
		for( .@a = 0; .@a < .length; .@a++ ) {
			for( .@b = 0; .@b < .numbers; .@b++ )
				.@part$[.@b] = ""+rand(10);
			.@r = rand(getarraysize(.@colour$));
			.@answers$[.@a] = ( .@a_c$[.@a] = .@colour$[.@r] )+( .@parts$[.@a] = implode(.@part$,""))+"^000000";
			deletearray .@colour$[.@r], 1;
			mes "   "+.@answers$[.@a];
		}
		while( getstrlen(.@c$) < .numbers ) .@c$ = .@c$ + "#";
		mes "The correct answer is: "+.@a_c$[.@correct]+.@c$;
		set .@input$,"";
		input( .@input$ );
		if( compare( .@answers$[.@correct], .@a_c$[.@correct]+.@input$+"^000000" ) ) {
			mes "Correct!";
		} else {
			mes "Wrong!";
		}
		close;
		
OnInit:
	setarray .colour$, "^00FF00", "^FF0000", "^0000FF", "^0FF0FF", "^CCCCCC", "^CBCBCB";
	.length = 6; //Length of the list.
	.numbers = 6; //Length of the numbers.
}
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  90
  • Reputation:   0
  • Joined:  03/29/13
  • Last Seen:  

 

Here's a quick example npc I'll probably finish this one up later today.

prontera,150,150,5	script	Anti-bot-tests#1	100,{
		mes "[^FF0000Anti Bot Checking^000000]";
		mes "Are you a bot?";
		mes "You have 5 minutes to follow the directions bellow and verify your a real player.";
		mes "Choose the correct colour and number to enter.";
		next;
		.@correct = rand(.length);
		for( .@a = 0; .@a < .length; .@a++ ) {
			for( .@b = 0; .@b < .numbers; .@b++ )
				.@part$[.@b] = ""+rand(10);
			.@r = rand(getarraysize(.colour$));
			.@answers$[.@a] = ( .@a_c$[.@a] = .colour$[.@r] )+( .@parts$[.@a] = implode(.@part$,""))+"^000000";
			deletearray .colour$[.@r], 1;
			mes "   "+.@answers$[.@a];
		}
		while( getstrlen(.@c$) < .numbers ) .@c$ = .@c$ + "#";
		mes "The correct answer is: "+.@a_c$[.@correct]+.@c$;
		set .@input$,"";
		input( .@input$ );
		if( compare( .@answers$[.@correct], .@a_c$[.@correct]+.@input$+"^000000" ) ) {
			mes "Correct!";
		} else {
			mes "Wrong!";
		}
		close;
		
OnInit:
	setarray .colour$, "^00FF00", "^FF0000", "^0000FF", "^0FF0FF", "^CCCCCC", "^CBCBCB";
	.length = 6; //Length of the list.
	.numbers = 6; //Length of the numbers.
}

 

OW YEAH ! GONNA TEST IT RIGHT NOW !!! THANKS SKORM!!! :)))

Sir Skorm ive got this error

http://i58.tinypic.com/11b7lp0.png

Edited by Renji Abarai
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  1479
  • Reputation:   172
  • Joined:  12/14/11
  • Last Seen:  

probably, changing line 7 to

set .@correct, rand(.length);
will do the trick
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

Well he would have to change it in a few other places as well... Why not just use rAthena. x_x

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  90
  • Reputation:   0
  • Joined:  03/29/13
  • Last Seen:  

 

probably, changing line 7 to

set .@correct, rand(.length);
will do the trick

 

 

stil nothing happen. :( 

 

 

Well he would have to change it in a few other places as well... Why not just use rAthena. x_x

can you help me with this in eathena

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  90
  • Reputation:   0
  • Joined:  03/29/13
  • Last Seen:  

like this ?

http://upaste.me/r/8baa14

 

i didnt test the script.

YES LIKE THAT AND IT WORKS FOR ME THANK YOU EMISTRY MY SAVIOR !!! :) BTW CAN YOU MAKE THE SCRIPT 3 ATTEMPTS BEFORE WILL KICK YOU?  pls pls pls :)

<3 <3 <3

 

Edited by Renji Abarai
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  1096
  • Reputation:   345
  • Joined:  02/26/12
  • Last Seen:  

Hi man. That is stupid.

Why? Because it will make unhappy players at your server via 100500 times per day popup message from NPC antibot.

 

And do you know the most bad thing?

This is NOT WORK against bosts.

 

Why?

https://svn.code.sf.net/p/openkore/code/plugins/responseOnASCIInumber/trunk/

 

 

+ i wanna add:

harmony WONT WORK against bots too:)

Funny, but that is real truth.

 

Solution to fix?

bump a hashield or internalguard development, or build yours.,

 

Sad, but true..

Edited by Anacondaqq
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

like this ?

http://upaste.me/r/8baa14

 

i didnt test the script.

 

 

like this ?

http://upaste.me/r/8baa14

 

i didnt test the script.

YES LIKE THAT AND IT WORKS FOR ME THANK YOU EMISTRY MY SAVIOR !!! :) BTW CAN YOU MAKE THE SCRIPT 3 ATTEMPTS BEFORE WILL KICK YOU?  pls pls pls :)

<3 <3 <3

 

 

http://upaste.me/r/8baa14

ctrl + refresh if the content was not updated.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  90
  • Reputation:   0
  • Joined:  03/29/13
  • Last Seen:  

thanks everyone for the help <3

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   5
  • Joined:  02/01/12
  • Last Seen:  

harmony WONT WORK against bots too:)

Funny, but that is real truth.

 

Is there any proven cases of this?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  1096
  • Reputation:   345
  • Joined:  02/26/12
  • Last Seen:  

 

harmony WONT WORK against bots too:)

Funny, but that is real truth.

 

Is there any proven cases of this?

 

 

Sure.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   5
  • Joined:  02/01/12
  • Last Seen:  

 

 

harmony WONT WORK against bots too:)

Funny, but that is real truth.

 

Is there any proven cases of this?

 

 

Sure.

 

 

...aand where are they? >.>

Are you talking about visual bots?

Edited by CandyCandy
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...