|
1) Drag
and drop all into a folder
2) Click
on Bot
3) Set up
names etc
4)
Configure bot ingame
Remember: if you log into the character that is the bot, or if you close
the little black window, the bot will go offline.
Note: This is the updated bot that works after the patch screwed up
everything and turned bot info into boxes and symbols. This is the most
current and works exceptionally well, thanks amona.
A nice little bonus:
Want to have a script in your bot that will add it where you can go !bio xxx (in
org chat) where xxx is a kyr solid clump, and it will tell you what that solid
clump will become?
:::: first open a new text document.
:::: second copy and paste this:
<?
//////////////// IGN bot plugin ::Clumpthingie:: by Iriche V1.0 //////////////
//|help||blue|:::::: |white|Clumpthingie |blue|::::::
//|grey|
//
//To use: /tell |bot| |command| Drop clump here
//|help|
//////////////// make your code below this point
// quick example
$realword = (str_replace($word1,"",$words));
if (ereg("<a href=\"itemref://[0-9]{6}/[0-9]{6}/[0-9]{1,3}\">Solid Clump of
Kyr'Ozch Bio-Material</a>",$realword)) {
$idql = str_replace("<a href=\"itemref://","",$realword);
$idql = str_replace("\">Solid Clump of Kyr'Ozch Bio-Material</a>","",$idql);
$splitidql = split('/',$idql);
$lid = $splitidql[0];
$hid = $splitidql[1];
$ql = $splitidql[2];
switch ($hid) {
case 247103:
$type = "Pristine Kyr'Ozch Bio-Material (DNA soup)";
break;
case 247105:
$type = "Mutated Kyr'Ozch Bio-Material (DNA soup)";
break;
case 247698:
$type = "Kyr'Ozch Bio-Material - Type 76 (Weapon Upgrade) / Brawl and
Fast Attack";
break;
case 247700:
$type = "Kyr'Ozch Bio-Material - Type 112 (Weapon Upgrade) / Brawl,
Dimach and Fast Attack";
break;
case 247702:
$type = "Kyr'Ozch Bio-Material - Type 240 (Weapon Upgrade) / Brawl,
Dimach, Fast Attack and Sneak Attack";
break;
case 247704:
$type = "Kyr'Ozch Bio-Material - Type 880 (Weapon Upgrade) / Dimach,
Fast Attack, Parry and Riposte";
break;
case 247706:
$type = "Kyr'Ozch Bio-Material - Type 992 (Weapon Upgrade) / Dimach,
Fast Attack, Sneak Attack, Parry and Riposte";
break;
case 247708:
$type = "Kyr'Ozch Bio-Material - Type 1 (Weapon Upgrade) / Fling shot";
break;
case 247710:
$type = "Kyr'Ozch Bio-Material - Type 2 (Weapon Upgrade) / Aimed Shot";
break;
case 247712:
$type = "Kyr'Ozch Bio-Material - Type 4 (Weapon Upgrade) / Burst";
break;
case 247714:
$type = "Kyr'Ozch Bio-Material - Type 5 (Weapon Upgrade) / Fling Shot
and Burst";
break;
case 247716:
$type = "Kyr'Ozch Bio-Material - Type 12 (Weapon Upgrade) / Burst and
Full Auto";
break;
case 247718:
$type = "Kyr'Ozch Bio-Material - Type 3 (Weapon Upgrade) / Fling Shot
and Aimed Shot";
break;
case 247720:
$type = "Kyr'Ozch Bio-Material - Type 13 (Weapon Upgrade) / Burst, Fling
Shot and Full Auto";
break;
case 254804:
$type = "Kyr'Ozch Viral Serum (Making high QL buildings)";
break;
default:
$type = "Unidentified";
}
send($sender,$botcolor."QL ".$ql." of ".$type);
} else
send($sender,$botcolor."You have to post an Solid Clump of Kyr'Ozch
Bio-Material, nothing else.");
$noreply=1;
?> |
::::
third save as bio.php into your IGN>plugins Folder. Restart bot.
::::
originally posted
here.
|