BotCommands.cpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823
  1. #include "../Commands/Commands.h"
  2. #include "../WorldDatabase.h"
  3. #include "../classes.h"
  4. #include "../races.h"
  5. #include "../Bots/Bot.h"
  6. #include "../../common/Log.h"
  7. #include "../Trade.h"
  8. #include "../PlayerGroups.h"
  9. #include "../World.h"
  10. #include "../../common/GlobalHeaders.h"
  11. extern WorldDatabase database;
  12. extern ConfigReader configReader;
  13. extern World world;
  14. extern MasterSpellList master_spell_list;
  15. void Commands::Command_Bot(Client* client, Seperator* sep) {
  16. if (sep && sep->IsSet(0)) {
  17. if (strncasecmp("camp", sep->arg[0], 4) == 0) {
  18. if (!client->GetPlayer()->GetTarget() || !client->GetPlayer()->GetTarget()->IsBot()) {
  19. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You must target a bot");
  20. return;
  21. }
  22. Bot* bot = (Bot*)client->GetPlayer()->GetTarget();
  23. if (bot->GetOwner() != client->GetPlayer()) {
  24. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You can only camp your own bots.");
  25. return;
  26. }
  27. bot->Camp();
  28. return;
  29. }
  30. else if (strncasecmp("attack", sep->arg[0], 6) == 0) {
  31. if (client->GetPlayer()->GetTarget() && client->GetPlayer()->GetTarget()->IsEntity() && client->GetPlayer()->GetTarget()->Alive()) {
  32. Entity* target = (Entity*)client->GetPlayer()->GetTarget();
  33. if (client->GetPlayer()->GetDistance(target) <= 50) {
  34. if (client->GetPlayer()->AttackAllowed(target)) {
  35. GroupMemberInfo* gmi = client->GetPlayer()->GetGroupMemberInfo();
  36. if (gmi) {
  37. PlayerGroup* group = world.GetGroupManager()->GetGroup(gmi->group_id);
  38. if (group)
  39. {
  40. group->MGroupMembers.readlock(__FUNCTION__, __LINE__);
  41. deque<GroupMemberInfo*>* members = group->GetMembers();
  42. deque<GroupMemberInfo*>::iterator itr;
  43. for (itr = members->begin(); itr != members->end(); itr++) {
  44. //devn00b compile says this is no good, commenting out for now.
  45. //if(!member)
  46. // continue;
  47. if ((*itr)->member && (*itr)->member->IsBot() && ((Bot*)(*itr)->member)->GetOwner() == client->GetPlayer()) {
  48. ((Bot*)(*itr)->member)->SetCombatTarget(target->GetID());
  49. }
  50. }
  51. group->MGroupMembers.releasereadlock(__FUNCTION__, __LINE__);
  52. }
  53. }
  54. }
  55. else
  56. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You can not attack that target.");
  57. }
  58. else
  59. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Target is to far away.");
  60. }
  61. else
  62. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Not a valid target.");
  63. return;
  64. }
  65. else if (strncasecmp("spells", sep->arg[0], 6) == 0) {
  66. if (client->GetPlayer()->GetTarget() && client->GetPlayer()->GetTarget()->IsBot()) {
  67. Bot* bot = (Bot*)client->GetPlayer()->GetTarget();
  68. map<int32, int8>* spells = bot->GetBotSpells();
  69. map<int32, int8>::iterator itr;
  70. string output;
  71. for (itr = spells->begin(); itr != spells->end(); itr++) {
  72. Spell* spell = master_spell_list.GetSpell(itr->first, itr->second);
  73. if (spell) {
  74. output += spell->GetName();
  75. output += "\n";
  76. }
  77. }
  78. client->SimpleMessage(CHANNEL_COLOR_YELLOW, output.c_str());
  79. return;
  80. }
  81. }
  82. else if (strncasecmp("maintank", sep->arg[0], 8) == 0) {
  83. if (!client->GetPlayer()->GetTarget() || !client->GetPlayer()->GetTarget()->IsEntity()) {
  84. client->SimpleMessage(CHANNEL_COMMAND_TEXT, "Not a valid target.");
  85. return;
  86. }
  87. GroupMemberInfo* gmi = client->GetPlayer()->GetGroupMemberInfo();
  88. if (!gmi) {
  89. client->SimpleMessage(CHANNEL_COMMAND_TEXT, "You are not in a group.");
  90. return;
  91. }
  92. Entity* target = (Entity*)client->GetPlayer()->GetTarget();
  93. if (!world.GetGroupManager()->IsInGroup(gmi->group_id, target)) {
  94. client->SimpleMessage(CHANNEL_COMMAND_TEXT, "Target is not in your group.");
  95. return;
  96. }
  97. PlayerGroup* group = world.GetGroupManager()->GetGroup(gmi->group_id);
  98. if (group)
  99. {
  100. group->MGroupMembers.readlock(__FUNCTION__, __LINE__);
  101. deque<GroupMemberInfo*>* members = group->GetMembers();
  102. for (int8 i = 0; i < members->size(); i++) {
  103. GroupMemberInfo* gmi2 = members->at(i);
  104. if(!gmi2 || !gmi2->member)
  105. continue;
  106. if (gmi2->member->IsBot() && ((Bot*)gmi2->member)->GetOwner() == client->GetPlayer()) {
  107. ((Bot*)gmi2->member)->SetMainTank(target);
  108. client->Message(CHANNEL_COMMAND_TEXT, "Setting main tank for %s to %s", gmi2->member->GetName(), target->GetName());
  109. }
  110. }
  111. group->MGroupMembers.releasereadlock(__FUNCTION__, __LINE__);
  112. }
  113. return;
  114. }
  115. else if (strncasecmp("delete", sep->arg[0], 6) == 0) {
  116. if (sep->IsSet(1) && sep->IsNumber(1)) {
  117. int32 index = atoi(sep->arg[1]);
  118. // Check if bot is currently spawned and if so camp it out
  119. if (client->GetPlayer()->SpawnedBots.count(index) > 0) {
  120. Spawn* bot = client->GetCurrentZone()->GetSpawnByID(client->GetPlayer()->SpawnedBots[index]);
  121. if (bot && bot->IsBot())
  122. ((Bot*)bot)->Camp();
  123. }
  124. database.DeleteBot(client->GetCharacterID(), index);
  125. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Bot has been deleted.");
  126. return;
  127. }
  128. else {
  129. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You must give the id (from /bot list) to delete a bot");
  130. return;
  131. }
  132. }
  133. else if (strncasecmp("follow", sep->arg[0], 6) == 0) {
  134. if (sep->IsSet(1) && sep->IsNumber(1)) {
  135. int32 index = atoi(sep->arg[1]);
  136. // Check if bot is currently spawned and if so camp it out
  137. if (client->GetPlayer()->SpawnedBots.count(index) > 0) {
  138. Spawn* bot = client->GetCurrentZone()->GetSpawnByID(client->GetPlayer()->SpawnedBots[index]);
  139. if (bot && bot->IsBot())
  140. ((Bot*)bot)->SetFollowTarget(client->GetPlayer(), 5);
  141. }
  142. return;
  143. }
  144. else {
  145. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You must give the id (from /bot list) to have a bot follow you");
  146. return;
  147. }
  148. }
  149. else if (strncasecmp("stopfollow", sep->arg[0], 10) == 0) {
  150. if (sep->IsSet(1) && sep->IsNumber(1)) {
  151. int32 index = atoi(sep->arg[1]);
  152. // Check if bot is currently spawned and if so camp it out
  153. if (client->GetPlayer()->SpawnedBots.count(index) > 0) {
  154. Spawn* bot = client->GetCurrentZone()->GetSpawnByID(client->GetPlayer()->SpawnedBots[index]);
  155. if (bot && bot->IsBot())
  156. ((Bot*)bot)->SetFollowTarget(nullptr);
  157. }
  158. return;
  159. }
  160. else {
  161. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You must give the id (from /bot list) to stop a following bot");
  162. return;
  163. }
  164. }
  165. else if (strncasecmp("summon", sep->arg[0], 6) == 0) {
  166. if (sep->IsSet(1) && strncasecmp("group", sep->arg[1], 5) == 0) {
  167. GroupMemberInfo* gmi = client->GetPlayer()->GetGroupMemberInfo();
  168. if (gmi) {
  169. Player* player = client->GetPlayer();
  170. PlayerGroup* group = world.GetGroupManager()->GetGroup(gmi->group_id);
  171. if (group)
  172. {
  173. group->MGroupMembers.readlock(__FUNCTION__, __LINE__);
  174. deque<GroupMemberInfo*>* members = group->GetMembers();
  175. for (int8 i = 0; i < members->size(); i++) {
  176. Entity* member = members->at(i)->member;
  177. if(!member)
  178. continue;
  179. if (member->IsBot() && ((Bot*)member)->GetOwner() == player) {
  180. member->appearance.pos.grid_id = player->appearance.pos.grid_id;
  181. member->SetX(player->GetX());
  182. member->SetY(player->GetY());
  183. member->SetZ(player->GetZ());
  184. client->Message(CHANNEL_COLOR_YELLOW, "Summoning %s.", member->GetName());
  185. }
  186. }
  187. group->MGroupMembers.releasereadlock(__FUNCTION__, __LINE__);
  188. }
  189. return;
  190. }
  191. else {
  192. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You are not in a group.");
  193. return;
  194. }
  195. }
  196. else {
  197. if (client->GetPlayer()->GetTarget() && client->GetPlayer()->GetTarget()->IsBot()) {
  198. Bot* bot = (Bot*)client->GetPlayer()->GetTarget();
  199. Player* player = client->GetPlayer();
  200. if (bot && bot->GetOwner() == player) {
  201. bot->appearance.pos.grid_id = player->appearance.pos.grid_id;
  202. bot->SetX(player->GetX());
  203. bot->SetY(player->GetY());
  204. bot->SetZ(player->GetZ());
  205. client->Message(CHANNEL_COLOR_YELLOW, "Summoning %s.", bot->GetName());
  206. return;
  207. }
  208. else {
  209. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You can only summon your own bots.");
  210. return;
  211. }
  212. }
  213. else {
  214. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You must target a bot.");
  215. return;
  216. }
  217. }
  218. }
  219. else if (strncasecmp("test", sep->arg[0], 4) == 0) {
  220. if (client->GetPlayer()->GetTarget() && client->GetPlayer()->GetTarget()->IsBot()) {
  221. ((Bot*)client->GetPlayer()->GetTarget())->MessageGroup("Test message");
  222. return;
  223. }
  224. }
  225. }
  226. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "BotCommands:");
  227. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot create [race] [gender] [class] [name]");
  228. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot customize - customize the appearance of the bot");
  229. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot list - list all the bots you have created with this character");
  230. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot spawn [id] - spawns a bot into the world, id obtained from /bot list");
  231. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot inv [give/list/remove] - manage bot equipment, for remove a slot must be provided");
  232. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot settings [helm/hood/cloak/taunt] [0/1] - Turn setting on (1) or off(0)");
  233. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot camp - removes the bot from your group and despawns them");
  234. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot attack - commands your bots to attack your target");
  235. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot spells - lists bot spells, not fully implemented yet");
  236. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot maintank - sets targeted group member as the main tank for your bots");
  237. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot delete [id] - deletes the bot with the given id (obtained from /bot list)");
  238. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot help");
  239. }
  240. void Commands::Command_Bot_Create(Client* client, Seperator* sep) {
  241. int8 race = BARBARIAN;
  242. int8 gender = 0;
  243. int8 advClass = GUARDIAN;
  244. string name;
  245. if (sep) {
  246. if (sep->IsSet(0) && sep->IsNumber(0))
  247. race = atoi(sep->arg[0]);
  248. else {
  249. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "First param of \"/bot create\" needs to be a number");
  250. return;
  251. }
  252. if (sep->IsSet(1) && sep->IsNumber(1))
  253. gender = atoi(sep->arg[1]);
  254. else {
  255. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Second param of \"/bot create\" needs to be a number");
  256. return;
  257. }
  258. if (sep->IsSet(2) && sep->IsNumber(2))
  259. advClass = atoi(sep->arg[2]);
  260. else {
  261. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Third param of \"/bot create\" needs to be a number");
  262. return;
  263. }
  264. if (sep->IsSet(3)) {
  265. name = string(sep->arg[3]);
  266. transform(name.begin(), name.begin() + 1, name.begin(), ::toupper);
  267. transform(name.begin() + 1, name.end(), name.begin() + 1, ::tolower);
  268. }
  269. else {
  270. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Fourth param (name) of \"/bot create\" is required");
  271. return;
  272. }
  273. }
  274. else {
  275. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Syntax: /bot create [race ID] [Gender ID] [class ID] [name]");
  276. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "All parameters are required. /bot help race or /bot help class for ID's.");
  277. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Gender ID's: 0 = Female, 1 = Male");
  278. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Ex: /bot create 0 0 3 Botty");
  279. return;
  280. }
  281. int8 result = database.CheckNameFilter(name.c_str());
  282. if (result == BADNAMELENGTH_REPLY) {
  283. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Name length is invalid, must be greater then 3 characters and less then 16.");
  284. return;
  285. }
  286. else if (result == NAMEINVALID_REPLY) {
  287. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Name is invalid, can only contain letters.");
  288. return;
  289. }
  290. else if (result == NAMETAKEN_REPLY) {
  291. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Name is already taken, please choose another.");
  292. return;
  293. }
  294. else if (result == NAMEFILTER_REPLY) {
  295. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Name failed the filter check.");
  296. return;
  297. }
  298. else if (result == UNKNOWNERROR_REPLY) {
  299. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Unknown error while checking the name.");
  300. return;
  301. }
  302. string race_string;
  303. switch (race) {
  304. case BARBARIAN:
  305. race_string = "/barbarian/barbarian";
  306. break;
  307. case DARK_ELF:
  308. race_string = "/darkelf/darkelf";
  309. break;
  310. case DWARF:
  311. race_string = "/dwarf/dwarf";
  312. break;
  313. case ERUDITE:
  314. race_string = "/erudite/erudite";
  315. break;
  316. case FROGLOK:
  317. race_string = "/froglok/froglok";
  318. break;
  319. case GNOME:
  320. race_string = "/gnome/gnome";
  321. break;
  322. case HALF_ELF:
  323. race_string = "/halfelf/halfelf";
  324. break;
  325. case HALFLING:
  326. race_string = "/halfling/halfling";
  327. break;
  328. case HIGH_ELF:
  329. race_string = "/highelf/highelf";
  330. break;
  331. case HUMAN:
  332. race_string = "/human/human";
  333. break;
  334. case IKSAR:
  335. race_string = "/iksar/iksar";
  336. break;
  337. case KERRA:
  338. race_string = "/kerra/kerra";
  339. break;
  340. case OGRE:
  341. race_string = "/ogre/ogre";
  342. break;
  343. case RATONGA:
  344. race_string = "/ratonga/ratonga";
  345. break;
  346. case TROLL:
  347. race_string = "/troll/troll";
  348. break;
  349. case WOOD_ELF:
  350. race_string = "/woodelf/woodelf";
  351. break;
  352. case FAE:
  353. race_string = "/fae/fae_light";
  354. break;
  355. case ARASAI:
  356. race_string = "/fae/fae_dark";
  357. break;
  358. case SARNAK:
  359. gender == 1 ? race_string = "01/sarnak_male/sarnak" : race_string = "01/sarnak_female/sarnak";
  360. break;
  361. case VAMPIRE:
  362. race_string = "/vampire/vampire";
  363. break;
  364. case AERAKYN:
  365. race_string = "/aerakyn/aerakyn";
  366. break;
  367. }
  368. if (race_string.length() > 0) {
  369. string gender_string;
  370. Bot* bot = 0;
  371. gender == 1 ? gender_string = "male" : gender_string = "female";
  372. vector<int16>* id_list = database.GetAppearanceIDsLikeName("ec/pc" + race_string + "_" + gender_string);
  373. if (id_list) {
  374. bot = new Bot();
  375. memset(&bot->appearance, 0, sizeof(bot->appearance));
  376. bot->appearance.pos.collision_radius = 32;
  377. bot->secondary_command_list_id = 0;
  378. bot->primary_command_list_id = 0;
  379. bot->appearance.display_name = 1;
  380. bot->appearance.show_level = 1;
  381. bot->appearance.attackable = 1;
  382. bot->appearance.show_command_icon = 1;
  383. bot->appearance.targetable = 1;
  384. bot->appearance.race = race;
  385. bot->appearance.gender = gender;
  386. bot->SetID(Spawn::NextID());
  387. bot->SetX(client->GetPlayer()->GetX());
  388. bot->SetY(client->GetPlayer()->GetY());
  389. bot->SetZ(client->GetPlayer()->GetZ());
  390. bot->SetHeading(client->GetPlayer()->GetHeading());
  391. bot->SetSpawnOrigX(bot->GetX());
  392. bot->SetSpawnOrigY(bot->GetY());
  393. bot->SetSpawnOrigZ(bot->GetZ());
  394. bot->SetSpawnOrigHeading(bot->GetHeading());
  395. bot->appearance.pos.grid_id = client->GetPlayer()->appearance.pos.grid_id;
  396. bot->SetInitialState(16512);
  397. bot->SetModelType(id_list->at(0));
  398. bot->SetAdventureClass(advClass);
  399. bot->SetLevel(client->GetPlayer()->GetLevel());
  400. bot->SetName(name.c_str());
  401. bot->SetEncounterLevel(6);
  402. bot->size = 32;
  403. if (bot->GetTotalHP() == 0) {
  404. bot->SetTotalHP(25 * bot->GetLevel() + 1);
  405. bot->SetHP(25 * bot->GetLevel() + 1);
  406. }
  407. if (bot->GetTotalPower() == 0) {
  408. bot->SetTotalPower(25 * bot->GetLevel() + 1);
  409. bot->SetPower(25 * bot->GetLevel() + 1);
  410. }
  411. bot->SetOwner(client->GetPlayer());
  412. bot->GetNewSpells();
  413. client->GetCurrentZone()->AddSpawn(bot);
  414. int32 index;
  415. int32 bot_id = database.CreateNewBot(client->GetCharacterID(), name, race, advClass, gender, id_list->at(0), index);
  416. if (bot_id == 0) {
  417. LogWrite(PLAYER__ERROR, 0, "Player", "Error saving bot to DB. Bot was not saved!");
  418. client->SimpleMessage(CHANNEL_ERROR, "Error saving bot to DB. Bot was not saved!");
  419. }
  420. else {
  421. bot->BotID = bot_id;
  422. bot->BotIndex = index;
  423. client->GetPlayer()->SpawnedBots[bot->BotIndex] = bot->GetID();
  424. // Add Items
  425. database.SetBotStartingItems(bot, advClass, race);
  426. }
  427. }
  428. else {
  429. client->SimpleMessage(CHANNEL_COLOR_RED, "Error finding the id list for your race, please verify the race id.");
  430. }
  431. safe_delete(id_list);
  432. }
  433. else
  434. client->SimpleMessage(CHANNEL_COLOR_RED, "Error finding the race string, please verify the race id.");
  435. }
  436. void Commands::Command_Bot_Customize(Client* client, Seperator* sep) {
  437. Bot* bot = 0;
  438. if (client->GetPlayer()->GetTarget() && client->GetPlayer()->GetTarget()->IsBot())
  439. bot = (Bot*)client->GetPlayer()->GetTarget();
  440. if (bot && bot->GetOwner() == client->GetPlayer()) {
  441. PacketStruct* packet = configReader.getStruct("WS_OpenCharCust", client->GetVersion());
  442. if (packet) {
  443. AppearanceData* botApp = &bot->appearance;
  444. CharFeatures* botFeatures = &bot->features;
  445. AppearanceData* playerApp = &client->GetPlayer()->appearance;
  446. CharFeatures* playerFeatures = &client->GetPlayer()->features;
  447. memcpy(&client->GetPlayer()->SavedApp, playerApp, sizeof(AppearanceData));
  448. memcpy(&client->GetPlayer()->SavedFeatures, playerFeatures, sizeof(CharFeatures));
  449. client->GetPlayer()->custNPC = true;
  450. client->GetPlayer()->custNPCTarget = bot;
  451. memcpy(playerApp, botApp, sizeof(AppearanceData));
  452. memcpy(playerFeatures, botFeatures, sizeof(CharFeatures));
  453. client->GetPlayer()->changed = true;
  454. client->GetPlayer()->info_changed = true;
  455. client->GetCurrentZone()->SendSpawnChanges(client->GetPlayer(), client);
  456. packet->setDataByName("race_id", 255);
  457. client->QueuePacket(packet->serialize());
  458. }
  459. }
  460. }
  461. void Commands::Command_Bot_Spawn(Client* client, Seperator* sep) {
  462. if (sep && sep->IsSet(0) && sep->IsNumber(0)) {
  463. int32 bot_id = atoi(sep->arg[0]);
  464. if (client->GetPlayer()->SpawnedBots.count(bot_id) > 0) {
  465. client->Message(CHANNEL_COLOR_YELLOW, "The bot with id %u is already spawned.", bot_id);
  466. return;
  467. }
  468. Bot* bot = new Bot();
  469. memset(&bot->appearance, 0, sizeof(bot->appearance));
  470. if (database.LoadBot(client->GetCharacterID(), bot_id, bot)) {
  471. bot->SetFollowTarget(client->GetPlayer(), 5);
  472. bot->appearance.pos.collision_radius = 32;
  473. bot->secondary_command_list_id = 0;
  474. bot->primary_command_list_id = 0;
  475. bot->appearance.display_name = 1;
  476. bot->appearance.show_level = 1;
  477. bot->appearance.attackable = 1;
  478. bot->appearance.show_command_icon = 1;
  479. bot->appearance.targetable = 1;
  480. bot->SetID(Spawn::NextID());
  481. bot->SetX(client->GetPlayer()->GetX());
  482. bot->SetY(client->GetPlayer()->GetY());
  483. bot->SetZ(client->GetPlayer()->GetZ());
  484. bot->SetHeading(client->GetPlayer()->GetHeading());
  485. bot->SetSpawnOrigX(bot->GetX());
  486. bot->SetSpawnOrigY(bot->GetY());
  487. bot->SetSpawnOrigZ(bot->GetZ());
  488. bot->SetSpawnOrigHeading(bot->GetHeading());
  489. bot->appearance.pos.grid_id = client->GetPlayer()->appearance.pos.grid_id;
  490. bot->SetInitialState(16512);
  491. bot->SetLevel(client->GetPlayer()->GetLevel());
  492. bot->SetEncounterLevel(6);
  493. bot->size = 32;
  494. if (bot->GetTotalHP() == 0) {
  495. bot->SetTotalHP(25 * bot->GetLevel() + 1);
  496. bot->SetHP(25 * bot->GetLevel() + 1);
  497. }
  498. if (bot->GetTotalPower() == 0) {
  499. bot->SetTotalPower(25 * bot->GetLevel() + 1);
  500. bot->SetPower(25 * bot->GetLevel() + 1);
  501. }
  502. bot->SetOwner(client->GetPlayer());
  503. bot->ChangePrimaryWeapon();
  504. bot->CalculateBonuses();
  505. bot->GetNewSpells();
  506. client->GetCurrentZone()->AddSpawn(bot);
  507. if (sep->IsSet(1) && sep->IsNumber(1) && atoi(sep->arg[1]) == 1) {
  508. client->GetCurrentZone()->SendSpawn(bot, client);
  509. int8 result = world.GetGroupManager()->Invite(client->GetPlayer(), bot);
  510. if (result == 0)
  511. client->Message(CHANNEL_COMMANDS, "You invite %s to group with you.", bot->GetName());
  512. else if (result == 1)
  513. client->SimpleMessage(CHANNEL_COMMANDS, "That player is already in a group.");
  514. else if (result == 2)
  515. client->SimpleMessage(CHANNEL_COMMANDS, "That player has been invited to another group.");
  516. else if (result == 3)
  517. client->SimpleMessage(CHANNEL_COMMANDS, "Your group is already full.");
  518. else if (result == 4)
  519. client->SimpleMessage(CHANNEL_COMMANDS, "You have a pending invitation, cancel it first.");
  520. else if (result == 5)
  521. client->SimpleMessage(CHANNEL_COMMANDS, "You cannot invite yourself!");
  522. else if (result == 6)
  523. client->SimpleMessage(CHANNEL_COMMANDS, "Could not locate the player.");
  524. else
  525. client->SimpleMessage(CHANNEL_COMMANDS, "Group invite failed, unknown error!");
  526. }
  527. client->GetPlayer()->SpawnedBots[bot_id] = bot->GetID();
  528. }
  529. else {
  530. client->Message(CHANNEL_ERROR, "Error spawning bot (%u)", bot_id);
  531. }
  532. }
  533. else {
  534. Command_Bot(client, sep);
  535. }
  536. }
  537. void Commands::Command_Bot_List(Client* client, Seperator* sep) {
  538. string bot_list;
  539. bot_list = database.GetBotList(client->GetCharacterID());
  540. if (!bot_list.empty())
  541. client->SimpleMessage(CHANNEL_COLOR_YELLOW, bot_list.c_str());
  542. }
  543. void Commands::Command_Bot_Inv(Client* client, Seperator* sep) {
  544. if (sep && sep->IsSet(0)) {
  545. if (strncasecmp("give", sep->arg[0], 4) == 0) {
  546. if (client->GetPlayer()->trade) {
  547. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You are already trading.");
  548. return;
  549. }
  550. if (!client->GetPlayer()->GetTarget() || !client->GetPlayer()->GetTarget()->IsBot()) {
  551. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You must target a bot");
  552. return;
  553. }
  554. Bot* bot = (Bot*)client->GetPlayer()->GetTarget();
  555. if (bot->trade) {
  556. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Bot is already in a trade...");
  557. return;
  558. }
  559. if (bot->GetOwner() != client->GetPlayer()) {
  560. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You can only trade with your own bot.");
  561. return;
  562. }
  563. Trade* trade = new Trade(client->GetPlayer(), bot);
  564. client->GetPlayer()->trade = trade;
  565. bot->trade = trade;
  566. }
  567. else if (strncasecmp("list", sep->arg[0], 4) == 0) {
  568. if (!client->GetPlayer()->GetTarget() || !client->GetPlayer()->GetTarget()->IsBot()) {
  569. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You must target a bot");
  570. return;
  571. }
  572. Bot* bot = (Bot*)client->GetPlayer()->GetTarget();
  573. if (bot->GetOwner() != client->GetPlayer()) {
  574. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You can only see the inventory of your own bot.");
  575. return;
  576. }
  577. string item_list = "Bot Items:\nSlot\tName\n";
  578. for (int8 i = 0; i < NUM_SLOTS; i++) {
  579. Item* item = bot->GetEquipmentList()->GetItem(i);
  580. if (item) {
  581. //\\aITEM %u %u:%s\\/a
  582. item_list += to_string(i) + ":\t" + item->CreateItemLink(client->GetVersion(), true) + "\n";
  583. }
  584. }
  585. client->SimpleMessage(CHANNEL_COLOR_YELLOW, item_list.c_str());
  586. }
  587. else if (strncasecmp("remove", sep->arg[0], 6) == 0) {
  588. if (sep->IsSet(1) && sep->IsNumber(1)) {
  589. int8 slot = atoi(sep->arg[1]);
  590. if (slot >= NUM_SLOTS) {
  591. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Invalid slot");
  592. return;
  593. }
  594. if (!client->GetPlayer()->GetTarget() || !client->GetPlayer()->GetTarget()->IsBot()) {
  595. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You must target a bot.");
  596. return;
  597. }
  598. Bot* bot = (Bot*)client->GetPlayer()->GetTarget();
  599. if (bot->GetOwner() != client->GetPlayer()) {
  600. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You can only remove items from your own bot.");
  601. return;
  602. }
  603. if (client->GetPlayer()->trade) {
  604. Trade* trade = client->GetPlayer()->trade;
  605. if (trade->GetTradee(client->GetPlayer()) != bot) {
  606. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You are already in a trade.");
  607. return;
  608. }
  609. bot->AddItemToTrade(slot);
  610. }
  611. else {
  612. if (bot->trade) {
  613. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Your bot is already trading...");
  614. return;
  615. }
  616. Trade* trade = new Trade(client->GetPlayer(), bot);
  617. client->GetPlayer()->trade = trade;
  618. bot->trade = trade;
  619. bot->AddItemToTrade(slot);
  620. }
  621. }
  622. }
  623. else
  624. Command_Bot(client, sep);
  625. }
  626. else
  627. Command_Bot(client, sep);
  628. }
  629. void Commands::Command_Bot_Settings(Client* client, Seperator* sep) {
  630. if (sep && sep->IsSet(0) && sep->IsSet(1) && sep->IsNumber(1)) {
  631. if (client->GetPlayer()->GetTarget() && client->GetPlayer()->GetTarget()->IsBot()) {
  632. Bot* bot = (Bot*)client->GetPlayer()->GetTarget();
  633. if (bot->GetOwner() == client->GetPlayer()) {
  634. if (strncasecmp("helm", sep->arg[0], 4) == 0) {
  635. bot->ShowHelm = (atoi(sep->arg[1]) == 1) ? true : false;
  636. bot->info_changed = true;
  637. bot->changed = true;
  638. bot->GetZone()->SendSpawnChanges(bot);
  639. }
  640. else if (strncasecmp("cloak", sep->arg[0], 5) == 0) {
  641. bot->ShowCloak = (atoi(sep->arg[1]) == 1) ? true : false;
  642. bot->info_changed = true;
  643. bot->changed = true;
  644. bot->GetZone()->SendSpawnChanges(bot);
  645. }
  646. else if (strncasecmp("taunt", sep->arg[0], 5) == 0) {
  647. bot->CanTaunt = (atoi(sep->arg[1]) == 1) ? true : false;
  648. }
  649. else if (strncasecmp("hood", sep->arg[0], 4) == 0) {
  650. bot->SetHideHood((atoi(sep->arg[0]) == 1) ? 0 : 1);
  651. }
  652. else
  653. Command_Bot(client, sep);
  654. }
  655. else
  656. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You can only change settings on your own bot.");
  657. }
  658. else
  659. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You must target a bot.");
  660. }
  661. else
  662. Command_Bot(client, sep);
  663. }
  664. void Commands::Command_Bot_Help(Client* client, Seperator* sep) {
  665. if (sep && sep->IsSet(0)) {
  666. if (strncasecmp("race", sep->arg[0], 4) == 0) {
  667. string title = "Race ID's";
  668. string details;
  669. details += "0\tBarbarian\n";
  670. details += "1\tDark Elf\n";
  671. details += "2\tDwarf\n";
  672. details += "3\tErudite\n";
  673. details += "4\tFroglok\n";
  674. details += "5\tGnome\n";
  675. details += "6\tHalf Elf\n";
  676. details += "7\tHalfling\n";
  677. details += "8\tHigh Elf\n";
  678. details += "9\tHuman\n";
  679. details += "10\tIksar\n";
  680. details += "11\tKerra\n";
  681. details += "12\tOgre\n";
  682. details += "13\tRatonga\n";
  683. details += "14\tTroll\n";
  684. details += "15\tWood Elf\n";
  685. details += "16\tFae\n";
  686. details += "17\tArasai\n";
  687. details += "18\tSarnak\n";
  688. details += "19\tVampire\n";
  689. details += "20\tAerakyn\n";
  690. client->SendShowBook(client->GetPlayer(), title, 1, details);
  691. return;
  692. }
  693. else if (strncasecmp("class", sep->arg[0], 5) == 0) {
  694. string title = "Class ID's";
  695. string details;
  696. details += "0\tCOMMONER\n";
  697. details += "1\tFIGHTER\n";
  698. details += "2\tWARRIOR\n";
  699. details += "3\tGUARDIAN\n";
  700. details += "4\tBERSERKER\n";
  701. details += "5\tBRAWLER\n";
  702. details += "6\tMONK\n";
  703. details += "7\tBRUISER\n";
  704. details += "8\tCRUSADER\n";
  705. details += "9\tSHADOWKNIGHT\n";
  706. details += "10\tPALADIN\n";
  707. details += "11\tPRIEST\n";
  708. details += "12\tCLERIC\n";
  709. details += "13\tTEMPLAR\n";
  710. details += "14\tINQUISITOR\n";
  711. details += "15\tDRUID\n";
  712. details += "16\tWARDEN\n";
  713. details += "17\tFURY\n";
  714. details += "18\tSHAMAN\n";
  715. details += "19\tMYSTIC\n";
  716. details += "20\tDEFILER\n";
  717. string details2 = "21\tMAGE\n";
  718. details2 += "22\tSORCERER\n";
  719. details2 += "23\tWIZARD\n";
  720. details2 += "24\tWARLOCK\n";
  721. details2 += "25\tENCHANTER\n";
  722. details2 += "26\tILLUSIONIST\n";
  723. details2 += "27\tCOERCER\n";
  724. details2 += "28\tSUMMONER\n";
  725. details2 += "29\tCONJUROR\n";
  726. details2 += "30\tNECROMANCER\n";
  727. details2 += "31\tSCOUT\n";
  728. details2 += "32\tROGUE\n";
  729. details2 += "33\tSWASHBUCKLER\n";
  730. details2 += "34\tBRIGAND\n";
  731. details2 += "35\tBARD\n";
  732. details2 += "36\tTROUBADOR\n";
  733. details2 += "37\tDIRGE\n";
  734. details2 += "38\tPREDATOR\n";
  735. details2 += "39\tRANGER\n";
  736. details2 += "40\tASSASSIN\n";
  737. string details3 = "\\#FF0000Following aren't implemented yet.\\#000000\n";
  738. details3 += "41\tANIMALIST\n";
  739. details3 += "42\tBEASTLORD\n";
  740. details3 += "43\tSHAPER\n";
  741. details3 += "44\tCHANNELER\n";
  742. client->SendShowBook(client->GetPlayer(), title, 3, details, details2, details3);
  743. return;
  744. }
  745. }
  746. else {
  747. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Bot help is WIP.");
  748. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot help race - race id list");
  749. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "/bot help class - class id list");
  750. }
  751. }