Jump to content
TrinityCore

HadiFaren

Members
  • Posts

    15
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

HadiFaren's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. hi I downloaded https://github.com/TrinityCore/SpellWork and compiled release/debug , anycore/x64 in win8.1 and I got nothing(not work) so I changed to win10 and still its not work I have framework 4.6.2 anyone can help me to solove this Thank You.
  2. hi again @Nay i compiled with vs 2015(release, debug) anycore, x64 and still stopped working + i have NetFrameWork 4.6.2
  3. hey @Nay i cant open this app in win8.1 64bit Stopped working any solution?
  4. i think its about your database Could not connect to MySQL database at 127.0.0.1: Unknown database 'auth6x' Could not connect to MySQL database at 127.0.0.1: Unknown database 'characters6x' Could not connect to MySQL database at 127.0.0.1: Unknown database 'world6x' Could not connect to MySQL database at 127.0.0.1: Unknown database 'hotfixes6x' if your server dosent connect to mysql databases it will close or crash set your database names in wordserver.conf then try thats the what i get from this sorry for bad english
  5. right now i cant understand whats wrong and not work its true about replace i will change my mod
  6. yes i did REPLACE INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `femaleName`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `exp_unk`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `BaseVariance`, `RangeVariance`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `type_flags2`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `HealthModifier`, `HealthModifierExtra`, `ManaModifier`, `ManaModifierExtra`, `ArmorModifier`, `DamageModifier`, `ExperienceModifier`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES (81733, 0, 0, 0, 0, 0, 51837, 0, 0, 0, 'Durotan', '', '', '', 50000, 110, 110, 0, 0, 1214, 1, 1, 1.14286, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'SmartAI', 0, 3, 1, 300, 1, 250, 1, 1, 1, 1, 0, 0, 1, 0, 0, '', 20173);
  7. hello anyone know how create a smart script for this quest http://www.wowhead.com/quest=35226/old-friends-new-enemies i mean first part of this Quest Meet Durotan at Orunai Village i just created gossip_meun_option for this creature REPLACE INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `OptionBroadcastTextID`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `box_coded`, `box_money`, `box_text`, `BoxBroadcastTextID`) VALUES (50000, 1, 0, 'Meet Durotan', 0, 1, 1, 81733, 0, 0, 0, ' ', 0); but right now how to Set SmarAI for this ? i set it this but now work DELETE FROM `smart_scripts` WHERE `entryorguid`=81733 AND `id`=0 AND `source_type`=0 LIMIT 1; INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES (81733,0,0,0,48,0,100,0,0,0,0,0,72,0,0,0,0,0,0,21,0,0,0,0.0,0.0,0.0,0.0,"Que Obj Completion");
  8. hey guys i want to generate sql files with WowPacketParser-master this is my config : <?xml version="1.0" encoding="utf-8"?> <configuration> <appSettings> <!-- Option: Filters Description: List of strings separated by comma. Any opcode name that matches any of these filters will be parsed Default: "" (All) --> <add key="Filters" value=""/> <!-- Option: IgnoreFilters Description: List of strings separated by comma. Any opcode name that matches any of these filters will be ignored If one opcode matches Filters and IgnoreFilters at same time it will be ignored Default: "" (None) --> <add key="IgnoreFilters" value=""/> <!-- Option: IgnoreByEntryFilters Description: List of List of Entries not to be included in output file. Any opcode that contains any of these entries will be ignored Format: Type:Id1:Id2:Id3,Type2:Id4:Id5:Id6 Example: Unit:5000:10000:60000,Player:0 Default: "" (None) --> <add key="IgnoreByEntryFilters" value=""/> <!-- Option: AreaFilters Description: List of strings separated by comma. Any creature/gameobject spawn that matches any of these filters will be dumped to sql file if creature/gameobject sql option is enabled Default: "" (None) --> <add key="AreaFilters" value=""/> <!-- Option: MapFilters Description: List of strings separated by comma. Any creature/gameobject spawn that matches any of these filters will be dumped to sql file if creature/gameobject sql option is enabled Default: "" (None) --> <add key="MapFilters" value=""/> <!-- Option: FilterPacketsNum Description: Number of packets to read. If this value is negative and DumpFormat is set to 2 (Binary (.pkt)), a number of .pkt files will be created containing this value in number of packets (last .pkt created can have less packets than the number defined by this value). Default: "0" (All) --> <add key="FilterPacketsNum" value="0"/> <!-- Option: ClientBuild Description: Force client build version Default: "" (Autodetect - build is calculated based on the date of sniff) --> <add key="ClientBuild" value=""/> <!-- Option: DumpFormat Description: Format to write to output file Default: "1" (Text) Values: 0: No dump 1: Text + SQL (if enabled) 2: Binary (.pkt) 3: Binary (.pkt) split output in multiple files with opcode name 4: SQL Only 5: SniffData only (.sql) 6: Few statistics in CSV format (does not parse packets) 7: Binary (.pkt) split output in multiple files by session (TC sniffs only) 8: Compress sniff files (.gz extension) 9: Calculate version and move sniff to its own folder version 10: Hex & packet header only 11: Binary (.pkt) split output in multiple files by direction 12: Output info about packet's connection indexes (<name>_connidx.txt) --> <add key="DumpFormat" value="4"/> <!-- Option: SQLOutput Description: "true" defines if SQL file created contains a specific table, "false" otherwise Default: "false" (No SQL output for specific table) --> <add key="creature" value="true"/> <add key="creature_addon" value="true"/> <add key="creature_equip_template" value="true"/> <add key="creature_model_info" value="true"/> <add key="creature_movement" value="true"/> <add key="creature_template" value="true"/> <add key="creature_template_addon" value="true"/> <add key="creature_text" value="true"/> <add key="defense_message" value="true"/> <add key="gameobject" value="true"/> <add key="gameobject_template" value="true"/> <add key="gossip_menu" value="true"/> <add key="gossip_menu_option" value="true"/> <add key="item_template" value="true"/> <add key="LootTemplate" value="true"/> <add key="npc_spellclick_spells" value="true"/> <add key="npc_text" value="true"/> <add key="npc_trainer" value="true"/> <add key="npc_vendor" value="true"/> <add key="ObjectNames" value="true"/> <add key="page_text" value="true"/> <add key="playercreateinfo" value="true"/> <add key="playercreateinfo_action" value="true"/> <add key="playercreateinfo_spell" value="true"/> <add key="points_of_interest" value="true"/> <add key="quest_objectives" value="true"/> <add key="quest_poi" value="true"/> <add key="quest_poi_points" value="true"/> <add key="quest_template" value="true"/> <add key="SniffData" value="true"/> <add key="SniffDataOpcodes" value="true"/> <add key="vehicle_template_accessory" value="true"/> <add key="weather_updates" value="true"/> <!-- Option: HotfixSQLOutput Description: "true" defines if SQL file created contains a specific table, "false" otherwise Default: "false" (No SQL output for specific table) --> <add key="battle_pet_species" value="false"/> <add key="broadcast_text" value="false"/> <add key="broadcast_text_locale" value="false"/> <add key="chr_upgrade" value="false"/> <add key="creatureDB2" value="false"/> <add key="creature_difficulty" value="false"/> <add key="curve_point" value="false"/> <add key="gameobjectDB2" value="false"/> <add key="hotfix_data" value="false"/> <add key="item" value="false"/> <add key="item_appearance" value="false"/> <add key="item_bonus" value="false"/> <add key="item_bonus_tree_node" value="false"/> <add key="item_currency_cost" value="false"/> <add key="item_effect" value="false"/> <add key="item_extended_cost" value="false"/> <add key="item_modified_appearance" value="false"/> <add key="item_sparse" value="false"/> <add key="key_chain" value="false"/> <add key="location" value="false"/> <add key="mount" value="false"/> <add key="override_spell_data" value="false"/> <add key="phase_group" value="false"/> <add key="scene_script" value="false"/> <add key="spell_aura_restrictions" value="false"/> <add key="spell_casting_requirements" value="false"/> <add key="spell_class_options" value="false"/> <add key="spell_learn_spell" value="false"/> <add key="spell_misc" value="false"/> <add key="spell_power" value="false"/> <add key="spell_rune_cost" value="false"/> <add key="spell_totems" value="false"/> <add key="taxi_nodes" value="false"/> <add key="taxi_path" value="false"/> <add key="taxi_path_node" value="false"/> <add key="toy" value="false"/> <!-- Option: SQLFileName Description: Sets the file to write all sql data to. If is not set each file parsed will write it's own sql file Default: "" (No global sql file output) --> <add key="SQLFileName" value="new.sql"/> <!-- Option: SQLOrderByKey Description: Order Sql Output by key Default: "false" (No prompt) --> <add key="SQLOrderByKey" value="false"/> <!-- Option: ShowEndPrompt Description: Show end prompt after parsing all files Default: "false" (No prompt) --> <add key="ShowEndPrompt" value="false"/> <!-- Option: LogErrors Description: Log ReadEnum errors (Missing enum values) Default: "false" (No enum errors log) --> <add key="LogErrors" value="false"/> <!-- Option: LogPacketErrors Description: Log packet headers that were skipped or have packet errors to <snifffile>_errors.txt Default: "false" (No file created) --> <add key="LogPacketErrors" value="false"/> <!-- Option: OutputFlag Description: Configures what packets depending on parsing status are written to the .txt. 1 - Only success, 2 - Only with errors, 4 - Only skipped, 8 - Only wihtout structure Default: "15" (Success, WithErrors, NotParsed and NoStructure) --> <add key="OutputFlag" value="15"/> <!-- Option: DebugReads Description: Show hexadecimal data when reading any numeric value Default: "false" (Do not show hexadecimal output) --> <add key="DebugReads" value="false"/> <!-- Option: ParsingLog Description: Write to a text file what has been printed on console Default: "false" --> <add key="ParsingLog" value="false"/> <!-- Option: Threads Description: Number of threads to parse packets. 0 is number of avail. processors. Default: "1" --> <add key="Threads" value="1"/> <!-- SSH Tunneling settings --> <add key="SSHEnabled" value="false" /> <add key="SSHHost" value="" /> <add key="SSHUsername" value="" /> <add key="SSHPassword" value="" /> <add key="SSHPort" value="22" /> <add key="SSHLocalPort" value="3307" /> <!-- Database settings --> <add key="DBEnabled" value="false" /> <add key="Server" value="localhost" /> <add key="Port" value="3306" /> <add key="Username" value="root" /> <add key="Password" value="" /> <add key="WPPDatabase" value="WPP" /> <add key="TDBDatabase" value="world" /> <add key="HotfixesDatabase" value="hotfixes" /> <add key="CharacterSet" value="utf8" /> </appSettings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/> </startup> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <probing privatePath="Parsers"/> </assemblyBinding> </runtime> <system.data> <DbProviderFactories> <remove invariant="MySql.Data.MySqlClient" /> <add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.7.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> </DbProviderFactories> </system.data> </configuration> and i just get this # TrinityCore - WowPacketParser # File name: multi # Detected build: 20886 # Detected locale: enUS # Parsing date: 02/08/2016 16:34:46 INSERT IGNORE INTO `SniffData` (`Build`, `SniffName`, `ObjectType`, `Id`, `Data`) VALUES (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3175, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4336, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1082, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6144, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4956, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 171, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 619, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 191, 'NoStructure'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4215, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2566, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4271, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5549, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4143, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6318, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4378, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4979, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6534, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2338, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2280, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4976, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1012, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 851, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2237, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2358, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2664, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4509, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 257, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1756, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5755, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3056, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2414, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7190, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4502, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1081, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1639, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3162, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4377, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5277, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5394, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6988, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1383, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6558, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3947, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3494, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7131, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1987, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4852, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1007, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4588, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4408, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 245, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4812, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 859, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3923, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3114, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3707, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4324, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 239, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2767, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 648, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2088, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1025, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3329, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1522, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1338, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3927, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3553, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6776, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 256, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5265, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5149, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6096, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 420, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3679, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4943, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1385, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4098, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3800, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4932, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 364, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6087, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7554, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3514, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1090, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1003, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 525, 'NoStructure'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5095, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 968, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2792, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4487, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 251, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6545, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1257, 'NoStructure'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1199, 'NoStructure'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1566, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6189, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4972, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6903, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 620, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2668, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7036, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 500, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3062, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6329, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5160, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2473, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1229, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1076, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1331, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3807, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7465, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6314, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1044, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 291, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 167, 'CMSG_CHAT_CHANNEL_ANNOUNCEMENTS'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1486, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4323, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4519, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2165, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2290, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4459, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4489, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2154, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2610, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1017, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6783, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6454, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 716, 'SMSG_RAID_INSTANCE_INFO'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6084, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 61, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 96, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2627, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2783, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2032, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7032, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 232, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4988, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2663, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7148, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7115, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6767, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4808, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6992, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 864, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3831, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3912, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4860, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3780, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2656, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1904, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7111, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6136, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1532, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 496, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1459, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 239, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1640, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 631, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 192, 'NoStructure'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1883, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2326, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1864, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7152, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6112, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 518, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6852, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6003, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2168, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3258, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 675, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3123, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 775, 'NoStructure'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 644, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 7035, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4339, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1512, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3040, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6104, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6875, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 108, 'CMSG_ADD_IGNORE'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 240, 'NoStructure'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4451, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 380, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 3255, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 520, 'SMSG_GM_TICKET_UPDATE_TEXT'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4951, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5708, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 6128, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 5959, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 623, 'WithErrors'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 1875, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2771, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 4736, 'NotParsed'), (20886, '20886_2016-02-08_16-17-28_00D195FC.pkt', 'Opcode', 2423, 'NotParsed'); help please
  9. hey guys when i want to log in to the server getting error in the image created account in world server -> .acc create test@test test help please
  10. hello i have compiled 6.2.3 20886 source with tools but now when i want to generate vmaps, maps extractors close in 2sec and i didn't get anything and where i can download the last TDB please give link Thanks
×
×
  • Create New...