Pass PMob back into Lua from EXPERIENCE_POINTS listener
Add additional safety to checkKillCredit
Fix logic, syntax in command
Fix shadowing in wyvern.lua
Queries database then scans corresponding SQL file, replacing values
in INSERT statements with data from the database.
Is not smart about which INSERT statement gets which data; line-end
comments can get shuffled around if SQL file INSERTs are out of order
or missing. If you're doing INSERT or DELETE operations, make sure
to add a blank "INSERT INTO `table` VALUES ();" or manually remove
the INSERT statement respectively before dumping tables.
* Adds in missing Mog Kupon Item/Key Item IDs
* Updates Mask Generation Function to apply appropriate bit shifts
* Updates Trade logic to account for scenarios where player may already have the Key Item corresponding to the Traded Item
* Updates comments to detail script behavior
* Adds Kupon IDs to xi.items
* Flags all Mog Kupon Items as non-vendorable
* TODO: Add in the items for each respective Kupon (WIP)
* Spark vendor items adjusted the NPC sell prices
bought every item from 1-39 from sparks vendor on retail and sold to the fameless NPC. i also have pictures of every price as well if needed but will post a couple to show for proof
* got rid of the extra ``
got rid of the extra lines
* [Synth] updated items from 35523 to 34541 for issue #855
Updated items from 35523 to 34541 for issue #855
Also created missing item skrymir_cord and skrymir_cord +1 from both item_basic and Item_equipment
* Re-roder synth item, added gear and stat for Skrymir cord
* Update following recommendation
* Changing mistake to Skrymir cord
* Udate skrymir_cord flag
* Adding info to comment
* Reformating
* Gear Update
Gear that was missing mods or was not able to equip
* Update item_mods.sql
Update for Space
* Update item_mods.sql
Space Update
* Gear Updates
Added some Odyssey Gear that was missing mods or could not equip
* Update item_mods_pet.sql
* Update item_mods.sql
* Add what is missing
Added back forgot the space first time. Not able to find Mod at this time.
* Remove the Space
Removed the space that was not needed
Giving up on trying to complete the list this time around, before something comes in and messes up what I have done so far...
Also, added require("scripts/globals/items") to the item luas, and added the new use items to items.lua.
Update: Fixed the item luas to change the item id to the item name after adding to items.lua.
MyISAM = table level locking, fast but not safe for multiple simultaneous writes
InnoDB = row level locking, slow, but is safe for multiple simultaneous writes
```
Features MyISAM InnoDB
Type Non-Transactional Transactional
Locking Table locking Row-level locking
Foreign keys No Yes
Table, index, data storage Three separate files Combined Tablespace
ACID No Yes
```