Author Topic: wheres the bot wand?  (Read 2026 times)

i cant find the bot wand


This a joke? If not, this goes in the HELP section. Also, it may be hard for you to do, but try to put your sentences in ONE post. 0_o


What the hell is a bot wand?

He means a bot spawner.

Gee, I wonder what happened to the search button??? It seems to FLOAT RIGHT IN FRONT OF MY DAMN FACE!

Probably the thing that sets the bot war's bot spawnpoint. It comes with the Bot Wars package.

Code: [Select]
function BotWandProjectile::onCollision(%this,%obj,%col,%fade,%pos,%normal) {
if(%col.isAIBot) {
  if(%obj.client.selectedbot != %col) {
  if(findclientbyblid(%col.creator))
messageclient(findclientbyblid(%col.creator),'', 'Your bot has been selected by %1.', %obj.client.name);
  messageclient(%obj.client,'', 'You have selected %1\'s bot.', %col.name);
  %obj.client.selectedbot = %col;
  %col.isselectedby = %obj.client;
  }
  else {
  if(findclientbyblid(%col.creator))
messageclient(findclientbyblid(%col.creator),'', 'Your bot has been unselected by %1.', %obj.client.name);
  messageclient(%obj.client,'', 'You have unselected %1\'s bot.', %col.name);
  %obj.client.selectedbot = -1;
  %col.isselectedby = -1;
  }
}
}
Never completed, may work now, but work on this script was stopped.