Page 1 of 1

[bypass Antibot] - Enter the item name

Posted: 15 Jul 2014, 06:10
by shampuday
Sir 4ept Can you help with this??

Image

Im gonna click the link so the item description will appear

Re: <<< Anti BotKiller >>>

Posted: 15 Jul 2014, 10:22
by 4epT
What server? Show a screenshot of the client. What the right answer?

Re: <<< Anti BotKiller >>>

Posted: 17 Jul 2014, 06:09
by shampuday
BasicRO Server Sir
Image
You will have to Click the "Click Me" then Item Description will appear

Image
Then Put the Item name

Re: <<< Anti BotKiller >>>

Posted: 18 Jul 2014, 01:27
by SkylorD
Solution:


@shampuday use this plugin :

Code: Select all

#Made by : Unknown6996

package kO;

use strict;
use warnings;
use Plugins;
use Globals;
use Log qw(warning);

Plugins::register("AntiBot - Item name by ID", "Enter the required item name by ID", \&onUnload);

my $logHook = Log::addHook(\&on_log, "Antibot plugin");

my $response;

sub onUnload {
Log::delHook($logHook);
}

sub on_log {
my ($type, $domain, $level, $globalVerbosity, $message, $user_data) = @_;
   if ($type eq "message") {
   
      if ($message =~ /.+?Step \d+\: \<ITEMLINK\>Click Me!\<INFO\>(\d+)\<\/INFO\>\<\/ITEMLINK\>/i) {
         my $ID = $1;
         foreach (keys %items_lut) {
            $response = $items_lut{$ID};
         }
         response($response);
      }
   }
}

sub response {
my $value = shift;
#warning "Talking \"$value\"\n";
Commands::run("talk text ". $value);
}

1;

Re: <<< Anti BotKiller >>>

Posted: 18 Jul 2014, 02:02
by shampuday
I such a noob at Plugins.. Can You have me a guide? Thanks

PS : i wont put any code or command on my config.txt?

Re: <<< Anti BotKiller >>>

Posted: 18 Jul 2014, 02:07
by SkylorD
No. Sorry for the last answer (Brute). :cry: :cry:
You just need the plugin.

Copy this code. Paste in notepad. Save as " AntiBot_ItemID.pl ". And move to your plugins folder.

http://www.openkore.com/index.php/How_t ... r_OpenKore
http://wiki.openkore.com/index.php/Category:Plugins

Re: <<< Anti BotKiller >>>

Posted: 18 Jul 2014, 02:48
by shampuday
Sry i got messed up in saving the file.. and its works like a charm now.. Thanks Mate