I just tested the 1180a bots code I uploaded and #bot create works fine for me.
If you are getting the 'The name xxx is already being used.' for every name you try, it suggests an issue with the database view vwBotCharacterMobs, as an error in that query is the only way a name will be rejected.
What do you get if you issue this command:
Code:
mysql> describe vwBotCharacterMobs;
+------------+-----------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+------------+-----------------------+------+-----+---------+-------+
| mobtype | varchar(1) | NO | | | |
| id | int(11) | NO | | 0 | |
| name | varchar(64) | NO | | | |
| class | tinyint(4) | NO | | 0 | |
| level | mediumint(8) unsigned | NO | | 0 | |
| timelaston | bigint(20) unsigned | YES | | NULL | |
| zoneid | smallint(6) | NO | | 0 | |
+------------+-----------------------+------+-----+---------+-------+
7 rows in set (0.00 sec)
If it doesn't match my output, I would source in this sql:
http://code.google.com/p/projecteqem...l/svn/bots.sql
(You will lose any existing bots if you do that).