-
Posts
2042 -
Joined
-
Last visited
-
Days Won
73 -
Donations
0.00 GBP
Content Type
Bug Tracker
Wiki
Release Notes
Forums
Downloads
Blogs
Events
Everything posted by madmax
-
Changed Status to In Progress Changed Assigned to H0zen
-
Further info: Players other then the group leader remain in the queue, even if they leave the group. Clicking the leave group by the minimap has no afffect Re-logging has no affect, the player will remain with the icon on the minimap showing they are in the queue still. This state remains until the server is restarted.
-
Not seeing this in my tests. I am seeing a failing role check on the group leader chat box. //I'll make a bug report and see if we can get the dungeon finder system looked at. Or at least an option in the config file to disable it until its ready.
-
Hi there, From my understanding the Dungeon finder is not fully implemented. I have passed this topic to @antz as he may be able to assist some more
-
Taken from
-
Grey level mobs granting EXP.
madmax commented on samljer's bug in Archived Reports (Two)(Resolved issues)
Changed Status to Not a bug Changed Implemented Version to 22.1 Changed Milestone to 21 Changed Priority to New / Assign Priority -
Grey level mobs granting EXP.
madmax commented on samljer's bug in Archived Reports (Two)(Resolved issues)
Above meaning you would not get XP for anything under level 41. This function is implemented correctly, we just checked -
Grey level mobs granting EXP.
madmax commented on samljer's bug in Archived Reports (Two)(Resolved issues)
This is not a bug, at least not what is documented in the video. http://wowwiki.wikia.com/wiki/Formulas:Mob_XP -
A working World Of Warcraft Cataclysm 4.3.4 Client can be downloaded via magnet torrent. magnet:?xt=urn:btih:848c1f366be2d7fbe4b69bd6bfb57daabd767b08&dn=World%20of%20Warcraft%204.3.4.15595 You will need a program such as uTorrent for this.
-
Another screenshot to confirm. You can see in the log the item i just removed and closed the loot window and then attempted to get another.
-
Changed Status to Confirmed Changed Implemented Version to 0.18 Changed Milestone to 21 Changed Priority to High Changed Type to Core Changed Category to Looting
-
2a76e7e - mailbox 21d3cc2 - getgrouptype function 647ad0e - merge some parts for dk rune cooldown
-
MaNGOS Standards And Practices: A Guide For Developers
madmax posted a Wiki Article in Standards And Practices
A Foreword by Unkle Nuke In the interest of continuing to give structure to how we work here at MaNGOS, I have republished our Standards And Practices, with modifications and updates by me as necessary while preserving the instruction and intent of the original. Some parts were scrapped entirely and rewritten by me to be more informative and current with the progress of time and the MaNGOS sources. This document, in another form, was originally published on the old MaNGOS web site. I don't have a bibliography as to whom the original author or authors were, but I strongly suspect TheLuda's involvement, at least. If any of our current members had a hand in this document or know who did, please feel free to message me with the details so I may give credit where it is due. We are all here because we have stood on the shoulders of giants. While it's focus is primarily on server core development with C++, much of what is presented here can be useful for all MaNGOS developers. I now call upon those masters of database and scripting to step forward and offer any recommendations to this document, so it may be as complete as possible. If anyone notices errors or omissions, please message me with any necessary corrections. This is an ever-evolving document, in keeping with changes to how we work and the technology with which we do that work. Somebody may want to mirror this in our wiki, too... Chapter 1, Page 1 "So You Want To Be A MaNGOS Dev?" Introduction While we here at MaNGOS do our utmost to extend a helping hand to those in need, there is never enough precious time to do everything that needs to be done. You can help us with that by making your best effort to help yourself. When you can learn the basics before jumping into things, it allows us more time to answer the really hard questions about MaNGOS development. What follows is one avenue where you can teach yourself some valuable fundamentals in how to be a MaNGOS Developer. The rest, and everything that follows, is built upon what you will now read. This is the official document outlining all the basic methodology for existing and prospective developers. It offers recommendations for everything from correctly configuring and using your Git client, to proper coding style for core patches, to submitting and reviewing code. All developers and patch contributors are strongly encouraged to read and adhere to these guidelines Of course, you're free to do as you wish, but it would be nice if you could work with us on this, especially if you want to work with us! The first thing you do should be to configure a name and email. By default, Git chooses a name based on the GECOS data (which is probably right) and a default email based on your login and hostname (which is almost certainly wrong). Best practices dictate using your real name and email here, not any other aliases you may have, but you may wish to use something other than your real name and personal e-mail if privacy or legal reasons warrant it. These fields will be immortalized in the repository history so make sure you get them right and use the identity by which you wish fame and glory to be heaped upon you. $ git config --global user.name Your Name $ git config --global user.email [email][email protected][/email]ess While you’re configuring, you may want to enable coloring for some commands: $ git config --global color.diff auto $ git config --global color.status auto $ git config --global color.branch auto $ git config --global color.interactive auto If you prefer to use an editor other than the default Vi, such as emacs in the example, specify it like this: $ git config --global core.editor emacs Finally, to properly handle line feeds between Windows and Linux, Windows users can use the following setting: $ git config --global core.autocrlf auto DOES NOT WORK ON CURRENT VERSION OF msysGit. Checking if this is due to a bug or changes to Git's config. It is NOT recommended to set autocrlf to "true" as this forces converting CRLF into LF, which has been known to cause issues. Linux users can set Git to automatically fix CRLF that can sometimes sneak in when a Windows user makes a commit by converting them into standard LF when making a commit: $ git config --global core.autocrlf input It is highly recommended to use a single coding style for the whole project source code. Exceptions are allowed for independent libraries used in the project, but it is generally advisable all contributors to use the style specified here. Failure to adhere to these standards can result in your submitted work being rejected until it has been brought into compliance. Tab Length All tabs used in code editing consist of four blank spaces. If your editor allows configuration of the <Tab> key, please set it to use four spaces. Otherwise, do not use the <Tab> key! Instead, use the <Space> key and type in four blank spaces manually. Tab lengths other than four blank spaces are unacceptable. The Microsoft Visual Studio C++ code editor has tabs set to four spaces by default. Line Length (or Width) Please use 80-column width, or 80 characters, for line length. This includes spaces and punctuation. If your line is longer than that, please split it into two or more lines. If it's sometimes a little longer, by just a few characters, then it may be permitted at the discretion of the Code Reviewer. If you're splitting text inside brackets { }, the continuing text should be indented to the position after the opening bracket. printf ("This is a example of how we split lines longer than 80 characters\n" "into several so that they won't exceed this limit.\n", max_sourcecode_width); If you have long strings, you can split them as shown above, just remember that C/C++ compilers will glue together several strings that come without any special characters between them into a single string. Brackets When writing C++ code, brackets are placed symmetrically, with the ending bracket lined up to the opening bracket. if (something) { some function ...; } else { some function ...; } switch (x) { case 1: printf ("X is one!\n"); break; case 2: { printf ("X is two!\n"); break; } } Every bracketed block moves its contents by one tab to right. Labels (but not case selectors!) and public:/private:/protected: C++ keywords are placed at the leftmost indented position for the current block, that is, in the same position where enclosing brackets are. Also please don't use brackets around a single statement because it clutters the code; use brackets only when using non-obvious constructs, like: if (foo) { if (foo) some function ...; } else some function ...; Also, please place one space before opening parenthesis. Before, but not after: ( the if( blah ) style is a no-no! ) (the if (blah) style is correct!) Following these few and simple formatting styles with your work for MaNGOS will ensure it is readable and easily understood by every developer on the project. To ensure proper generation of annotated code, please use DoxyGen style comments. This is a bit similar to JavaDoc comments and other automatic code documentation generators. Single-line documentation or comments should be placed following three slashes. ///This is a single line. I only had a brief thing to say regarding some code. Documentation and comments that require more than one line should be enclosed in a comment block, which consists of a slash and two asterisks to show the start while the end is indicated by one asterisk and a slash /** ... ... */. All lines between the comment block markers begin with a single asterisk *. Here's an example that shows most useful keywords you can use in a comment block: /** * This function does something very useful. If used with care, this function * has the potential to make your programs really really useful. * * \arg \c x * The x argument specifies a integer that is transformed into something useful. * \arg \c y * This argument, if not NULL, is a pointer to a free memory area where this * function will put something really really useful. * \return * A useful value, or NULL if error. * * Here is a example that you can paste into your code so that it saves you a * lot of typing: * * \verbatim * for (int x = 0; x < 100; x++) * printf ("DoSomethingUseful%d = %s\n", i, * DoSomethingUseful (i, &ScratchPad)); * \endverbatim * * Paragraphs are split from each other by inserting a empty line. Also some HTML * tags are supported, like <ol> [<li>...] </ol> and <ul> [<li>...] </ul> for * ordered (numbered) and unordered (dotted) lists respectively. */ char *DoSomethingUseful (int x, void *y); /// This is a one-line comment void Something (); For comments and documenting not intended for printing by DoxyGen, use normal comment markers (// and /* ... */). These can be notes to yourself or remarks meant only as part of the work in progress. In addition, when you comment-out a line or more of code to prevent it from being used in the source when compiled, use two slashes ( // )at the beginning of each line of code. This is useful for having code as a placeholder until the full function has been completed, a bug remains unresolved elsewhere that breaks your code, or you wish to place debug routines that are not used for normal execution. Please remember to also add a note that the code has been disabled and the reasons for this. Use the standard outlined above for documentation and comments when doing so. void WorldSession::HandleSetSheathedOpcode( WorldPacket & recv_data ) /* * This should fix the problem with weapons still being seen as sheathed by * the client. Should make players happy to know they can now use their * weapons in combat! * Once this has been reviewed, I can do some proper documenting. */ { uint32 sheathed; recv_data >> sheathed; //Uncomment the following only when debugging the function. //DEBUG_LOG( "WORLD: Recvd CMSG_SETSHEATHED Message guidlow:%u value1:%u", GetPlayer()->GetGUIDLow(), sheathed ); if(sheathed >= MAX_SHEATH_STATE) { sLog.outError("Unknown sheath state %u ??",sheathed); return; } GetPlayer()->SetSheath(SheathState(sheathed)); } Remember, use DoxyGen style markers when you want your comments and documentation to be printed out. Use standard markers for comments and documents you do not want printed by DoxyGen, but need to make notes about the code for yourself and other devs. Afterword by Unkle Nuke Git can be a challenge, especially for those who have been brainwashed by other version control methods like CVS or Subversion. Honestly, Git isn't that hard, once you let go of old ideas and embrace the concept that code can exist in an ever-changing state which can then be frozen in a snapshot of time for your review. I was once like you, a lost soul, but I was brought into the light! Even as I was shown the way, let me guide you to the holy texts and free your minds, brothers! If you need an introduction to Git, check out these resources. They're all free!: Try Git lets you learn how Git works by using it in your web browser. No software installation needed! Git's documentation page is where you can find the Git Pro Book, the Git Manual, and some introductory videos. And that's just for starters! The Git Pro Book, is also free to download in PDF, EPUB, or mobi formats. The Git Manual is also included with the Git client, as man pages, plain text, or HTML, depending on which platform you are running Git. While you're there, don't forget to download the cheat sheets, for quick access to Git's most commonly used commands and workflow at a glance. Too much more to list here. Give the entire site a good long look. The Git Reference is an online manual, similar to the Git Manual, but it focuses on actually working with and setting up Git. Kernel.org also has a mirror of the Git Manual Git Immersion is an online training course that promises to teach you the fundamentals in a "learn by doing" style. If you don't already have Git installed, they provide links to the client version you will need as the first step. Git Reference has a similar title to the official Git Reference, but it is meant to be a quick reference for learning and remembering the most important and commonly used Git commands. As you work through each section, every page will also link to more in-depth Git documentation and provide you with an immersive experience that lets you go as deep as you want. Git Magic is an excellent online book that I highly recommend everyone have on their virtual bookshelf. It has a practical, hands-on approach that teaches you how to use Git by the way you should use Git. Also available in PDF, simplified HTML, and as packages for Debian and Ubuntu (Actually a compressed, lightwieght copy of the web site itself for offline browsing. Did I say it was good, or what?). Ry's Git Tutorial is mapped out by subjects, in order from beginner to advanced. This one has to be among the best there is for this type of tutorial. Each lesson covers using Git in an actual project, by working with example code and patches on your very own Git repository! If the all the other books, docs, and tutorials just seem too confusing, I'm sure Ry's Git Tutorial is the one for you! Github Help covers just about every possible question, topic, fact, subject, method, and everything else related to using Github. You definitely want to save this web page in your browser! That should have you working with Git like a seasoned hacker in a very short time! That gives us more opportunity to help with the MaNGOS-specific problems you may encounter. -
Need feedback on if this is still an issue.
-
When flying in mangos three the core crashes. Ref:
-
The <GM> tag displays as <DND> in chat. Ref:
-
So I went to Loch Modan as a Horde character and the Mountainers there didn't loot anything, but they should loot silk cloth, a lot of it.Tried in Duskwood on The Night Watch mobs, and no loot as well. Ref:
-
If the Path for the creature is too long to get to the player it will instantly reset, It should run to the player no matter how long the path is if you are within a dungeon instance. Ref:
-
When creatures of the same faction run near each other while in combat with a player that pulled them, they do not aggro the other creatures that they run past when they should. Ref:
-
Sadly I think Tuker has not had the time to be working on this lately.
-
2017-07-08 11:37:01 Loading Game Object Templates... 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 13873 GoType: 3) have data7=12653 but trap GO (Entry 12653) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 122088 GoType: 1) have data3=103575 but trap GO (Entry 103575) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 126337 GoType: 8) have data2=4 but trap GO (Entry 4) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 126338 GoType: 8) have data2=4 but trap GO (Entry 4) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 126339 GoType: 8) have data2=4 but trap GO (Entry 4) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 126340 GoType: 8) have data2=4 but trap GO (Entry 4) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 126341 GoType: 8) have data2=4 but trap GO (Entry 4) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 126342 GoType: 8) have data2=4 but trap GO (Entry 4) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 126345 GoType: 8) have data2=4 but trap GO (Entry 4) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 128403 GoType: 3) have data7=128972 but trap GO (Entry 128972) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 160839 GoType: 8) have data2=160842 but trap GO (Entry 160842) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 175588 GoType: 3) have data7=175590 but trap GO (Entry 175590) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 176635 GoType: 3) have data7=176592 but trap GO (Entry 176592) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 176751 GoType: 3) have data7=176750 but trap GO (Entry 176750) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 176952 GoType: 1) have data3=178188 but trap GO (Entry 178188) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 177404 GoType: 1) have data3=177529 but trap GO (Entry 177529) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 177417 GoType: 1) have data3=177493 but trap GO (Entry 177493) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 178104 GoType: 3) have data7=178124 but trap GO (Entry 178124) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 178105 GoType: 3) have data7=178124 but trap GO (Entry 178124) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 178106 GoType: 3) have data7=178124 but trap GO (Entry 178124) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 178247 GoType: 1) have data3=178248 but trap GO (Entry 178248) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 178584 GoType: 3) have data7=178644 but trap GO (Entry 178644) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 178965 GoType: 1) have data3=178963 but trap GO (Entry 178963) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 179526 GoType: 3) have data7=179527 but trap GO (Entry 179527) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 179532 GoType: 3) have data7=179530 but trap GO (Entry 179530) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 179533 GoType: 3) have data7=179531 but trap GO (Entry 179531) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 180524 GoType: 1) have data3=180525 but trap GO (Entry 180525) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181154 GoType: 1) have data3=181214 but trap GO (Entry 181214) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181168 GoType: 10) have data12=4 but trap GO (Entry 4) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181169 GoType: 10) have data12=4 but trap GO (Entry 4) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181215 GoType: 1) have data3=181214 but trap GO (Entry 181214) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181223 GoType: 1) have data3=181214 but trap GO (Entry 181214) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181288 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181332 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181333 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181334 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181335 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181336 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181337 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181338 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181339 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181340 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181341 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181342 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181343 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181344 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181345 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181346 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181348 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181349 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181373 GoType: 1) have data3=181214 but trap GO (Entry 181214) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181374 GoType: 1) have data3=181214 but trap GO (Entry 181214) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181560 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181561 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181562 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181563 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181564 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181565 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181566 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181567 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181576 GoType: 10) have data12=129 but trap GO (Entry 129) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181577 GoType: 10) have data12=129 but trap GO (Entry 129) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181578 GoType: 10) have data12=129 but trap GO (Entry 129) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181605 GoType: 10) have data12=181604 but trap GO (Entry 181604) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181833 GoType: 3) have data7=181831 but trap GO (Entry 181831) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181837 GoType: 3) have data7=181838 but trap GO (Entry 181838) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181839 GoType: 3) have data7=181840 but trap GO (Entry 181840) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181841 GoType: 3) have data7=181842 but trap GO (Entry 181842) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 181843 GoType: 3) have data7=181844 but trap GO (Entry 181844) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 183816 GoType: 10) have data12=183929 but trap GO (Entry 183929) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 184715 GoType: 10) have data12=184718 but trap GO (Entry 184718) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 184743 GoType: 8) have data2=178673 but trap GO (Entry 178673) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 184807 GoType: 8) have data2=178673 but trap GO (Entry 178673) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 184867 GoType: 10) have data12=184958 but trap GO (Entry 184958) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 184906 GoType: 10) have data12=184910 but trap GO (Entry 184910) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 184980 GoType: 3) have data7=184981 but trap GO (Entry 184981) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 185128 GoType: 3) have data7=185297 but trap GO (Entry 185297) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 185304 GoType: 10) have data12=185305 but trap GO (Entry 185305) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 185861 GoType: 10) have data12=185862 but trap GO (Entry 185862) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 186478 GoType: 8) have data2=186471 but trap GO (Entry 186471) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 187882 GoType: 2) have too small size=0.000000 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 188067 GoType: 5) have too small size=0.000000 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 188072 GoType: 5) have too small size=0.000000 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 188073 GoType: 5) have too small size=0.000000 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 188077 GoType: 1) have too small size=0.000000 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 188142 GoType: 5) have too small size=0.000000 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 188352 GoType: 10) have data12=181290 but trap GO (Entry 181290) not exist in `gameobject_template`. 2017-07-08 11:37:02 ERROR:Gameobject (Entry: 188508 GoType: 1) have data3=188509 but trap GO (Entry 188509) not exist in `gameobject_template`. 2017-07-08 11:37:02 >> Loaded 13658 game object templates
-
2017-07-08 11:37:02 Loading Item Templates... 2017-07-08 11:37:03 ERROR:Item (Entry: 9149) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 17982) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34227) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34228) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34231) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34232) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34241) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34242) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34247) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34329) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34331) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34333) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34335) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34336) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34337) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34340) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34341) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34343) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34344) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34355) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34372) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34374) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34376) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34378) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34427) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 34430) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 35514) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 37597) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 ERROR:Item (Entry: 38506) marked as disenchantable by RequiredDisenchantSkill, but not have disenchanting loot id. 2017-07-08 11:37:03 >> Loaded 24076 item prototypes
-
2017-07-08 11:37:04 Loading SpellsScriptTarget... 2017-07-08 11:37:04 ERROR:Spell (ID: 5249) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 6955) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 7022) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 7082) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 7277) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 9457) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 10451) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 10805) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 10834) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 10835) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 10836) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 16032) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 16068) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 16069) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 16070) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 16074) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 16404) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 16637) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 17272) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 17748) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 18969) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 19515) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 19721) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 19749) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 21391) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 21556) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 21566) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 22205) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 23016) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 23018) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 23024) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 23168) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 23415) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 24217) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 24311) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 24323) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 25896) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 26879) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 27583) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 27894) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28032) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28054) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28056) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28078) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28087) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28096) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28111) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28159) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28250) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28281) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28309) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28326) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28338) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28339) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28353) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28365) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28366) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28367) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28697) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 28861) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 29172) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 29176) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 29531) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 29705) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 29726) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 29727) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 29831) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 29945) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 30107) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 30232) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 30273) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 30477) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 30662) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 30676) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 31611) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 31617) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 31624) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 31625) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 31727) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 31749) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 31806) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 31979) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 31993) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 32127) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 32241) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 32638) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 32760) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 32928) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 32929) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 32953) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 32974) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 32976) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 33644) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 33670) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 33742) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 33809) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 34156) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 34330) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 34332) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 34350) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 34393) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 34430) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 34613) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 34662) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 34806) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35040) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35140) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35245) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35262) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35516) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35596) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35598) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35599) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35600) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35673) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35756) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35930) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35960) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35961) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 35962) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36000) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36066) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36089) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36090) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36103) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36167) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36174) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36196) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36197) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36198) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36220) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36239) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36241) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36243) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36378) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36431) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36452) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36651) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36692) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36779) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36795) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36811) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36817) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36871) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36878) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36884) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36953) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36969) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 36995) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37032) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37033) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37034) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37035) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37199) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37205) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37206) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37229) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37285) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37422) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37754) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37868) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37893) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37895) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37913) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37942) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37954) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37964) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 37970) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38003) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38046) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38072) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38073) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38099) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38100) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38101) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38102) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38103) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38104) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38105) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38106) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38121) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38123) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38126) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38128) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38130) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38250) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38269) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38371) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38508) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38629) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38632) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38711) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38722) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38774) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 38968) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39126) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39185) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39211) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39218) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39221) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39353) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39354) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39356) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39358) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39362) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39552) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39559) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39915) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39919) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39930) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39938) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39939) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39940) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39974) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39985) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39989) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 39993) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40105) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40106) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40110) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40222) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40259) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40341) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40359) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40380) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40382) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40383) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40397) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40454) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40503) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40521) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40523) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40547) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40675) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40715) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40738) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40761) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40788) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40789) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40821) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 40828) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41122) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41125) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41128) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41129) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41344) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41457) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41614) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41962) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41975) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 41976) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42014) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42079) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42228) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42269) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42271) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42272) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42391) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42405) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42410) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42654) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 42868) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 43101) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 43306) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 43525) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 43942) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 43943) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 44411) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 44838) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 44839) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 44840) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 44844) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 44865) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 44883) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 44884) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45012) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45201) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45224) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45388) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45586) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45622) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45623) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45633) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45635) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45666) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 45714) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46173) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46174) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46175) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46219) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46319) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46330) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46609) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46623) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46637) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46735) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46818) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46852) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 46896) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 47104) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 47771) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 ERROR:Spell (ID: 49058) has effect EffectImplicitTargetA/EffectImplicitTargetB = 38 (TARGET_SCRIPT), but does not have record in `spell_script_target` 2017-07-08 11:37:04 >> Loaded 929 spell_script_target definitions
-
See attached file. Creature Addon Data.txt
-
2017-07-08 11:37:10 Loading Loot Tables... 2017-07-08 11:37:11 >> Loaded 264017 loot definitions (6244 templates) from table creature_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 >> Loaded 195 loot definitions (178 templates) from table fishing_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 >> Loaded 18110 loot definitions (787 templates) from table gameobject_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 >> Loaded 4755 loot definitions (220 templates) from table item_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 5858 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 6715 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 10595 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 13247 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 18636 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 21131 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 21162 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 21164 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 21243 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 21271 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 21740 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 21741 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 21742 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 21743 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 23022 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 30320 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 30650 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 32544 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 32624 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 32625 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 32626 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 32627 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 32628 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 32629 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 32630 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 32631 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 34077 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 ERROR:Table 'item_loot_template' entry 35512 (item entry with ITEM_FLAG_LOOTABLE) not exist but used as loot id in DB. 2017-07-08 11:37:11 >> Loaded 84 loot definitions (83 templates) from table mail_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 >> Loaded 10602 loot definitions (2445 templates) from table pickpocketing_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 >> Loaded 3314 loot definitions (925 templates) from table skinning_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 >> Loaded 102 loot definitions (46 templates) from table disenchant_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 >> Loaded 60 loot definitions (7 templates) from table prospecting_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 >> Loaded 6754 loot definitions (324 templates) from table reference_loot_template 2017-07-08 11:37:11 2017-07-08 11:37:11 >>> Loot Tables loaded
Contact Us
To contact us
click here
You can also email us at [email protected]
Privacy Policy | Terms & Conditions

You can also email us at [email protected]
Privacy Policy | Terms & Conditions
Copyright © getMaNGOS. All rights Reserved.
This website is in no way associated with or endorsed by Blizzard Entertainment®
This website is in no way associated with or endorsed by Blizzard Entertainment®