123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604 |
- /*
- EQ2Emulator: Everquest II Server Emulator
- Copyright (C) 2007 EQ2EMulator Development Team (http://www.eq2emulator.net)
- This file is part of EQ2Emulator.
- EQ2Emulator is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- EQ2Emulator is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with EQ2Emulator. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <algorithm>
- #include "../ClientPacketFunctions.h"
- #include "../client.h"
- #include "../../common/ConfigReader.h"
- #include "../../common/PacketStruct.h"
- #include "../Recipes/Recipe.h"
- #include "../../common/Log.h"
- #include "../Spells.h"
- #include "../../common/MiscFunctions.h"
- #include "../World.h"
- extern ConfigReader configReader;
- extern MasterRecipeList master_recipe_list;
- extern MasterSpellList master_spell_list;
- extern World world;
- void ClientPacketFunctions::SendCreateFromRecipe(Client* client, int32 recipeID) {
- // if recipeID is 0 we are repeating the last recipe, if not set the players current recipe to the new one
- if (recipeID == 0)
- recipeID = client->GetPlayer()->GetCurrentRecipe();
- else
- client->GetPlayer()->SetCurrentRecipe(recipeID);
- Recipe* playerRecipe = client->GetPlayer()->GetRecipeList()->GetRecipe(recipeID);
-
- // Get the recipe
- Recipe* recipe = master_recipe_list.GetRecipe(recipeID);
- if(!playerRecipe)
- {
- LogWrite(TRADESKILL__ERROR, 0, "Tradeskills", "%s: ClientPacketFunctions::SendCreateFromRecipe Error finding player recipe %s in their recipe book for recipe id %u", client->GetPlayer()->GetName(), client->GetPlayer()->GetName(), recipe ? recipe->GetID() : 0);
- client->Message(CHANNEL_COLOR_RED, "You do not have %s (%u) in your recipe book.", recipe ? recipe->GetName() : "Unknown", recipe ? recipe->GetID() : 0);
- return;
- }
- if (!recipe) {
- LogWrite(TRADESKILL__ERROR, 0, "Recipes", "Error loading recipe (%u) in ClientPacketFunctions::SendCreateFromRecipe()", recipeID);
- return;
- }
- // Create the packet
- PacketStruct* packet = configReader.getStruct("WS_CreateFromRecipe", client->GetVersion());
- if (!packet) {
- LogWrite(TRADESKILL__ERROR, 0, "Recipes", "Error loading WS_CreateFromRecipe in ClientPacketFunctions::SendCreateFromRecipe()");
- return;
- }
- vector<int32>::iterator itr;
- vector<Item*> itemss;
- int8 i = 0;
- int8 k = 0;
- int32 firstID = 0;
- int32 IDcount = 0;
- int32 primary_comp_id = 0;
- Item* first_item = 0;
- Item* item = 0;
- Item* item_player = 0;
- Spawn* target = 0;
- if (!(target = client->GetPlayer()->GetTarget())) {
- client->Message(CHANNEL_COLOR_YELLOW, "You must be at a %s in order to crafte this recipe", recipe->GetDevice());
- return;
- }
- // Recipe and crafting table info
- packet->setDataByName("crafting_station", recipe->GetDevice());
- packet->setDataByName("recipe_name", recipe->GetName());
- packet->setDataByName("tier", recipe->GetTier());
- // Mass Production
- int32 mpq = 1;
- int32 mp = 5;
- vector<int> v{ 1,2,4,6,11,21 };
- // mpq will eventually be retrieved from achievement for mass production
- mpq = v[mp];
-
- packet->setArrayLengthByName("num_mass_production_choices",mpq);
- packet->setArrayDataByName("mass_qty", 1, 0);
- for (int x = 1; x < mpq; x++) {
- packet->setArrayDataByName("mass_qty", x * 5, x);
- }
- // Product info
- item = master_item_list.GetItem(recipe->GetProductID());
- packet->setDataByName("product_name", item->name.c_str());
- packet->setDataByName("icon", item->details.icon);
- packet->setDataByName("product_qty", recipe->GetProductQuantity());
- packet->setDataByName("primary_title", recipe->GetPrimaryBuildComponentTitle());
- packet->setDataByName("primary_qty_needed", recipe->GetPrimaryComponentQuantity());
- packet->setDataByName("unknown6", 11);
- packet->setDataByName("unknown3", 18);
- // Reset item to 0
- item, item_player = 0;
-
- // Check to see if we have a primary component (slot = 0)
- if (recipe->components.count(0) > 0) {
- vector<int32> rc = recipe->components[0];
- vector <pair<int32, int16>> selected_items;
- int32 total_primary_items = 0;
- for (itr = rc.begin(); itr != rc.end(); itr++) {
- itemss = client->GetPlayer()->item_list.GetAllItemsFromID((*itr));
- if (itemss.size() > 0)
- total_primary_items += itemss.size();
- }
- packet->setArrayLengthByName("num_primary_choices", total_primary_items);
- int16 have_qty = 0;
- for (itr = rc.begin(); itr != rc.end(); itr++, i++) {
- if (firstID == 0)
- firstID = *itr;
- item = master_item_list.GetItem(*itr);
- if (!item)
- {
- LogWrite(TRADESKILL__ERROR, 0, "Recipes", "Error creating packet to client missing item %u", *itr);
- client->Message(CHANNEL_COLOR_RED, "Error producing create recipe packet! Recipe is trying to find item %u, but it is missing!", *itr);
- safe_delete(packet);
- return;
- }
- item_player = 0;
- item_player = client->GetPlayer()->item_list.GetItemFromID((*itr));
- itemss = client->GetPlayer()->item_list.GetAllItemsFromID((*itr));
- if (itemss.size() > 0) {
-
- int16 needed_qty = recipe->GetPrimaryComponentQuantity();
- if (firstID == 0)
- firstID = *itr;
- for (int8 i = 0; i < itemss.size(); i++, k++) {
- IDcount++;
- if (have_qty < needed_qty) {
- int16 stack_count = itemss[i]->details.count;
- int16 min_qty = min(stack_count, int16(needed_qty - have_qty));
- selected_items.push_back(make_pair(int32(itemss[i]->details.unique_id), min_qty));
- have_qty += min_qty;
- }
- packet->setArrayDataByName("primary_component", itemss[i]->name.c_str(), k);
- packet->setArrayDataByName("primary_item_id", itemss[i]->details.unique_id, k);
- packet->setArrayDataByName("primary_icon", itemss[i]->details.icon, k);
- packet->setArrayDataByName("primary_total_quantity", itemss[i]->details.count, k);
- //packet->setArrayDataByName("primary_supply_depot", itemss[i]->details.count, k); // future need
- //packet->setArrayDataByName("primary_unknown3a",); // future need
- }
- packet->setDataByName("primary_id", itemss[0]->details.unique_id);
- packet->setDataByName("primary_default_selected_id", itemss[0]->details.unique_id);
- for (int8 i = 0; i < selected_items.size(); i++) {
- }
- int16 qty = 0;
- if (item) {
- qty = (int8)item->details.count;
- if (qty > 0 && firstID == primary_comp_id)
- qty -= 1;
- }
- }
- else
- packet->setDataByName("primary_id",*itr);
- }
- // store the id of the primary comp
- primary_comp_id = firstID;
-
- // Set the default item id to the first component id
- packet->setArrayLengthByName("num_primary_items_selected", selected_items.size());
- for (int8 i = 0; i < selected_items.size(); i++) {
- packet->setArrayDataByName("primary_selected_item_qty", selected_items[i].second,i );
- packet->setArrayDataByName("primary_selected_item_id", selected_items[i].first,i);
- }
-
- // Reset the variables we will reuse
- i = 0;
- firstID = 0;
- item = 0;
- k = 0;
- }
- else {
- LogWrite(TRADESKILL__ERROR, 0, "Recipes", "Recipe has no primary component");
- return;
- }
- // Check to see if we have build components (slot = 1 - 4)
- int8 total_build_components = 0;
- if (recipe->components.count(1) > 0)
- total_build_components++;
- if (recipe->components.count(2))
- total_build_components++;
- if (recipe->components.count(3))
- total_build_components++;
- if (recipe->components.count(4))
- total_build_components++;
- //--------------------------------------------------------------Start Build Components-------------------------------------------------------------
- if (total_build_components > 0) {
- packet->setArrayLengthByName("num_build_components", total_build_components);
- LogWrite(TRADESKILL__INFO, 0, "Recipes", "num_build_components %u", total_build_components);
- for (int8 index = 0; index < 4; index++) {
- if (recipe->components.count(index + 1) == 0)
- continue;
- packet->setArrayDataByName("build_slot", index, index);
- vector<int32> rc = recipe->components[index + 1];
- int32 total_component_items = 0;
- int8 hasComp = 0;
- vector <pair<int32, int16>> selected_items;
- for (itr = rc.begin(); itr != rc.end(); itr++) {
- itemss = client->GetPlayer()->item_list.GetAllItemsFromID((*itr));
- if (itemss.size() > 0)
- total_component_items += itemss.size();
- }
- packet->setSubArrayLengthByName("num_build_choices", total_component_items, index);// get # build choces first
- hasComp = 0;
- char msgbuf[200] = "";
- for (itr = rc.begin(); itr != rc.end(); itr++) {// iterates through each recipe component to find the stacks in inventory
- item = master_item_list.GetItem(*itr);
- itemss = client->GetPlayer()->item_list.GetAllItemsFromID((*itr));
- if (itemss.size() > 0) {
- int16 needed_qty = 0;
- int16 have_qty = 0;
- if (index == 0) {
- needed_qty = recipe->GetBuild1ComponentQuantity();
- have_qty = 0;
- }
- else if (index == 1) {
- needed_qty = recipe->GetBuild2ComponentQuantity();
- have_qty = 0;
- }
- else if (index == 2) {
- needed_qty = recipe->GetBuild3ComponentQuantity();
- have_qty = 0;
- }
- else if (index == 3) {
- needed_qty = recipe->GetBuild4ComponentQuantity();
- have_qty = 0;
- }
- if (firstID == 0)
- firstID = *itr;
- if (hasComp == 0) {
- hasComp = 100 + k;
- }
- for (int8 j = 0; j < itemss.size(); j++, k++) { // go through each stack of a compnent
- if (have_qty < needed_qty) {
- int16 stack_count = itemss[j]->details.count;
- int16 min_qty = min(stack_count, int16(needed_qty - have_qty));
- selected_items.push_back(make_pair(int32(itemss[j]->details.unique_id), min_qty));
- have_qty += min_qty;
- }
- item = master_item_list.GetItem(itemss[j]->details.item_id);
- packet->setSubArrayDataByName("build_component", itemss[j]->name.c_str(), index, k);
- packet->setSubArrayDataByName("build_item_id", itemss[j]->details.unique_id, index, k);
- packet->setSubArrayDataByName("build_icon", itemss[j]->details.icon, index, k);
- packet->setSubArrayDataByName("build_total_quantity", itemss[j]->details.count, index, k);
- //packet->setSubArrayDataByName("build_supply_depot",); // future need
- //packet->setSubArrayDataByName("build_unknown3",); // future need
- }
- }
- }
- packet->setSubArrayLengthByName("num_build_items_selected", selected_items.size(),index );
- for (int8 i = 0; i < selected_items.size(); i++) {
- packet->setSubArrayDataByName("build_selected_item_qty", selected_items[i].second,index, i);
- packet->setSubArrayDataByName("build_selected_item_id", selected_items[i].first,index, i);
- }
- int16 qty = 0;
- if (item) {
- qty = (int16)item->details.count;
- if (qty > 0 && firstID == primary_comp_id)
- qty -= 1;
- }
- if (index == 0) {
- packet->setArrayDataByName("build_title", recipe->GetBuild1ComponentTitle(), index);
- packet->setArrayDataByName("build_qty_needed", recipe->GetBuild1ComponentQuantity(), index);
- if (item)
- packet->setArrayDataByName("build_selected_item_qty_have", min(qty, recipe->GetBuild1ComponentQuantity()), index);
- }
- else if (index == 1) {
- packet->setArrayDataByName("build_title", recipe->GetBuild2ComponentTitle(), index);
- packet->setArrayDataByName("build_qty_needed", recipe->GetBuild2ComponentQuantity(), index);
- if (item)
- packet->setArrayDataByName("build_selected_item_qty_have", min(qty, recipe->GetBuild2ComponentQuantity()), index);
- }
- else if (index == 2) {
- packet->setArrayDataByName("build_title", recipe->GetBuild3ComponentTitle(), index);
- packet->setArrayDataByName("build_qty_needed", recipe->GetBuild3ComponentQuantity(), index);
- if (item)
- packet->setArrayDataByName("build_selected_item_qty_have", min(qty, recipe->GetBuild3ComponentQuantity()), index);
- }
- else {
- packet->setArrayDataByName("build_title", recipe->GetBuild4ComponentTitle(), index);
- packet->setArrayDataByName("build_qty_needed", recipe->GetBuild4ComponentQuantity(), index);
- if (item)
- packet->setArrayDataByName("build_selected_item_qty_have", min(qty, recipe->GetBuild4ComponentQuantity()), index);
- }
- // Reset the variables we will reuse
- i = 0;
- firstID = 0;
- item = 0;
- k = 0;
- }
-
-
- int32 xxx = 0;
- }
- // Check to see if we have a fuel component (slot = 5)
- if (recipe->components.count(5) > 0) {
- vector<int32> rc = recipe->components[5];
- vector <pair<int32, int16>> selected_items;
- for (itr = rc.begin(); itr != rc.end(); itr++, i++) {
- if (firstID == 0)
- firstID = *itr;
- item = master_item_list.GetItem(*itr);
- if (!item)
- {
- LogWrite(TRADESKILL__ERROR, 0, "Recipes", "Error creating packet to client missing item %u", *itr);
- client->Message(CHANNEL_COLOR_RED, "Error producing create recipe packet! Recipe is trying to find item %u, but it is missing!", *itr);
- safe_delete(packet);
- return;
- }
- item_player = 0;
- item_player = client->GetPlayer()->item_list.GetItemFromID((*itr));
- if(client->GetVersion() <= 546) {
- packet->setDataByName("fuel_qty", item->details.count);
- packet->setDataByName("fuel_icon", item->details.icon);
- }
-
- itemss = client->GetPlayer()->item_list.GetAllItemsFromID((*itr));
- packet->setArrayLengthByName("num_fuel_choices", itemss.size());
- if (itemss.size() > 0) {
-
- int16 needed_qty = recipe->GetFuelComponentQuantity();
- int16 have_qty = 0;
- if (firstID == 0)
- firstID = *itr;
- for (int8 i = 0; i < itemss.size(); i++) {
- IDcount++;
- if (have_qty < needed_qty) {
- int16 stack_count = itemss[i]->details.count;
- int16 min_qty = min(stack_count, int16(needed_qty - have_qty));
- selected_items.push_back(make_pair(int32(itemss[i]->details.unique_id), min_qty));
- have_qty += min_qty;
- }
- packet->setArrayDataByName("fuel_component", itemss[i]->name.c_str(), i);
- packet->setArrayDataByName("fuel_item_id", itemss[i]->details.unique_id, i);
- packet->setArrayDataByName("fuel_icon", itemss[i]->details.icon, i);
- packet->setArrayDataByName("fuel_total_quantity", itemss[i]->details.count, i);
- //packet->setArrayDataByName("fuel_supply_depot", itemss[i]->details.count, i); // future need
- //packet->setArrayDataByName("primary_unknown3a",); // future need
- }
- packet->setDataByName("fuel_selected_item_id", itemss[0]->details.unique_id);
- int16 qty = 0;
- if (item) {
- qty = (int8)item->details.count;
- if (qty > 0 && firstID == primary_comp_id)
- qty -= 1;
- }
- }
- else
- packet->setDataByName("primary_vvv", *itr);
- }
- // store the id of the primary comp
- primary_comp_id = firstID;
- // Set the default item id to the first component id
- packet->setArrayLengthByName("num_fuel_items_selected", selected_items.size());
- for (int8 i = 0; i < selected_items.size(); i++) {
- packet->setArrayDataByName("fuel_selected_item_qty", selected_items[i].second, i);
- packet->setArrayDataByName("fuel_selected_item_id", selected_items[i].first, i);
- }
- packet->setDataByName("fuel_title", recipe->GetFuelComponentTitle());
- packet->setDataByName("fuel_qty_needed", recipe->GetFuelComponentQuantity());
- // Reset the variables we will reuse
- i = 0;
- firstID = 0;
- item = 0;
- }
- else {
- LogWrite(TRADESKILL__ERROR, 0, "Recipes", "Recipe has no fuel component");
- return;
- }
- packet->setDataByName("recipe_id", recipeID);
-
- //packet->PrintPacket();
- EQ2Packet* outapp = packet->serialize();
- //DumpPacket(outapp);
- // Send the packet
- client->QueuePacket(outapp);
- safe_delete(packet);
- }
- void ClientPacketFunctions::SendItemCreationUI(Client* client, Recipe* recipe) {
- // Check for valid recipe
- if (!recipe) {
- LogWrite(TRADESKILL__ERROR, 0, "Recipes", "Recipe = null in ClientPacketFunctions::SendItemCreationUI()");
- return;
- }
- // Load the packet
- PacketStruct* packet = configReader.getStruct("WS_ShowItemCreation", client->GetVersion());
- if (!packet) {
- LogWrite(TRADESKILL__ERROR, 0, "Recipes", "Error loading WS_ShowItemCreation in ClientPacketFunctions::SendItemCreationUI()");
- return;
- }
- int16 item_version = GetItemPacketType(packet->GetVersion());
- Item* item = 0;
- RecipeProducts* rp = 0;
- packet->setDataByName("max_possible_durability", 1000);
- packet->setDataByName("max_possible_progress", 1000);
- // All the packets I have looked at these unknowns are always the same
- // so hardcoding them until they are identified.
- packet->setDataByName("unknown2", 1045220557, 0);
- packet->setDataByName("unknown2", 1061997773, 1);
- // Highest stage the player has been able to complete
- // TODO: store this for the player, for now use 0 (none known)
- Recipe* playerRecipe = client->GetPlayer()->GetRecipeList()->GetRecipe(recipe->GetID());
-
- if(!playerRecipe)
- {
- LogWrite(TRADESKILL__ERROR, 0, "Tradeskills", "%s: ClientPacketFunctions::SendItemCreationUI Error finding player recipe in their recipe book for recipe id %u", client->GetPlayer()->GetName(), recipe->GetID());
- client->Message(CHANNEL_COLOR_RED, "%s: SendItemCreationUI Error finding player recipe in their recipe book for recipe id %u!", client->GetPlayer()->GetName(), recipe->GetID());
- safe_delete(packet);
- return;
- }
- packet->setDataByName("progress_levels_known", playerRecipe ? playerRecipe->GetHighestStage() : 0);
- packet->setArrayLengthByName("num_process", 4);
- for (int8 i = 0; i < 4; i++) {
- // Don't like this code but need to change the IfVariableNotSet value on unknown3 element
- // to point to the currect progress_needed
- vector<DataStruct*> dataStructs = packet->GetDataStructs();
- vector<DataStruct*>::iterator itr;
- for (itr = dataStructs.begin(); itr != dataStructs.end(); itr++) {
- DataStruct* data = *itr;
- char tmp[20] = {0};
- sprintf(tmp,"_%i",i);
- string name = "unknown3";
- name.append(tmp);
- if (strcmp(data->GetName(), name.c_str()) == 0) {
- name = "progress_needed";
- name.append(tmp);
- data->SetIfNotSetVariable(name.c_str());
- }
- }
- if (i == 1)
- packet->setArrayDataByName("progress_needed", 400, i);
- else if (i == 2)
- packet->setArrayDataByName("progress_needed", 600, i);
- else if (i == 3)
- packet->setArrayDataByName("progress_needed", 800, i);
- // get the product for this stage, if none found default to fuel
- if (recipe->products.count(i) > 0)
- rp = recipe->products[i];
- if (!rp || (rp->product_id == 0)) {
- rp = new RecipeProducts;
- rp->product_id = recipe->components[5].front();
- rp->product_qty = recipe->GetFuelComponentQuantity();
- rp->byproduct_id = 0;
- rp->byproduct_qty = 0;
- recipe->products[i] = rp;
- }
- item = master_item_list.GetItem(rp->product_id);
- if (!item) {
- LogWrite(TRADESKILL__ERROR, 0, "Recipe", "Error loading item (%u) in ClientPacketFunctions::SendItemCreationUI()", rp->product_id);
- return;
- }
- packet->setArrayDataByName("item_name", item->name.c_str(), i);
- packet->setArrayDataByName("item_icon", item->details.icon, i);
-
- if(client->GetVersion() < 860) {
-
- char item_slot_name[64];
- snprintf(item_slot_name,64,"item_%u",i);
- packet->setItemByName(item_slot_name, item, client->GetPlayer(), 0, 5, true, true);
- //packet->setItemArrayDataByName("item", item, client->GetPlayer(), i, 0, -1);
- }
- else if (client->GetVersion() < 1193)
- packet->setItemArrayDataByName("item", item, client->GetPlayer(), i);
- else
- packet->setItemArrayDataByName("item", item, client->GetPlayer(), i, 0, 2);
- if (rp->byproduct_id > 0) {
- item = 0;
- item = master_item_list.GetItem(rp->byproduct_id);
- if (item) {
- packet->setArrayDataByName("item_byproduct_name", item->name.c_str(), i);
- packet->setArrayDataByName("item_byproduct_icon", item->details.icon, i);
- }
- }
-
- packet->setArrayDataByName("packettype", item_version, i);
- packet->setArrayDataByName("packetsubtype", 0xFF, i);
- item = 0;
- rp = 0;
- }
- packet->setDataByName("product_progress_needed", 1000);
- rp = recipe->products[4];
- item = master_item_list.GetItem(rp->product_id);
- packet->setDataByName("product_item_name", item->name.c_str());
- packet->setDataByName("product_item_icon", item->details.icon);
- if(client->GetVersion() < 860)
- packet->setItemByName("product_item", item, client->GetPlayer(), 0, -1);
- else if (client->GetVersion() < 1193)
- packet->setItemByName("product_item", item, client->GetPlayer());
- else
- packet->setItemByName("product_item", item, client->GetPlayer(), 0, 2);
- //packet->setItemByName("product_item", item, client->GetPlayer());
- if (rp->byproduct_id > 0) {
- item = 0;
- item = master_item_list.GetItem(rp->byproduct_id);
- if (item) {
- packet->setDataByName("product_byproduct_name", item->name.c_str());
- packet->setDataByName("product_byproduct_icon", item->details.icon);
- }
- }
- packet->setDataByName("packettype", item_version);
- packet->setDataByName("packetsubtype", 0xFF);
- // Start of basic work to get the skills to show on the tradeskill window
- // not even close to accurate but skills do get put on the ui
- int8 index = 0;
- int8 size = 0;
- vector<int32>::iterator itr;
- vector<int32> spells = client->GetPlayer()->GetSpellBookSpellIDBySkill(recipe->GetTechnique());
- for (itr = spells.begin(); itr != spells.end(); itr++) {
- size++;
- Spell* spell = master_spell_list.GetSpell(*itr,1);
- if(!spell) {
-
- return;
- }
- if (size > 6) {
- // only 6 slots for skills on the ui
- break;
- }
- packet->setDataByName("skill_id", *itr ,spell->GetSpellData()->ts_loc_index -1);
- }
- packet->PrintPacket();
- EQ2Packet* outapp = packet->serialize();
- DumpPacket(outapp);
- client->QueuePacket(outapp);
- safe_delete(packet);
- }
- void ClientPacketFunctions::StopCrafting(Client* client) {
- client->QueuePacket(new EQ2Packet(OP_StopItemCreationMsg, 0, 0));
- }
- void ClientPacketFunctions::CounterReaction(Client* client, bool countered) {
- PacketStruct* packet = configReader.getStruct("WS_TSEventReaction", client->GetVersion());
- if (packet) {
- packet->setDataByName("counter_reaction", countered ? 1 : 0);
- client->QueuePacket(packet->serialize());
- }
- safe_delete(packet);
- }
|