summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-06-03Add packets for client 2017-05-17aRagexeRE.Andrei Karas1-0/+38
2017-06-03Add packets for client 2017-04-05bRagexeRE.Andrei Karas1-0/+38
2017-06-03Add packets for client 2017-03-29dRagexeRE.Andrei Karas1-0/+38
2017-06-03Add packets for client 2017-03-22aRagexeRE.Andrei Karas1-0/+38
2017-06-03Add packets for client 2017-03-15cRagexeRE.Andrei Karas1-0/+38
2017-06-03Add packets for client 2017-03-08bRagexeRE.Andrei Karas1-0/+38
2017-06-03Add packets for client 2017-02-28aRagexeRE.Andrei Karas1-0/+38
2017-06-03Add packets for client 2017-02-08aRagexeRE.Andrei Karas1-1/+39
2017-06-03Add shuffle packets for client 2017-01-25aRagexeRE.Andrei Karas1-0/+37
2017-06-03Add non shuffle packets for clients 2017-04-26dRagexeRE and 2017-05-02dRagexeRE.Andrei Karas1-0/+15
2017-06-03Merge pull request #1736 from mekolat/group2Haru4-19/+84
new buildin: add_group_command
2017-06-03ItemDB SQL SyncHercules.ws2-57/+57
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2017-06-03Merge pull request #1739 from mekolat/pow2Haru8-85/+117
implementation of the exponentiation operator
2017-06-03Add tests for the exponentiation operatorHaru1-0/+13
Signed-off-by: Haru <haru@dotalux.com>
2017-06-02Merge pull request #1759 from Smokexyz/mmo_charstatus-fixsmokexyz1-3/+3
Fix replace statement formatting in storage save function.
2017-06-02Fix replace statement formatting in storage save function.smokexyz1-3/+3
2017-05-31HPM Hooks UpdateHercules.ws4-121/+8
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2017-05-31Merge pull request #1757 from HerculesWS/storagefixsmokexyz3-82/+18
Fix a race condition when saving the storage on logout
2017-05-31Fix a race condition when saving the storage on logoutHaru3-82/+18
The storage data is no longer cached in the char server. This removal doesn't cause any performance loss, since the cached data was refreshed (loaded from the database) after every save operation. This commit moves the load at the beginning of the save rather than at the end, and discars the cached copy after the save is completed. Related to #1754 Signed-off-by: Haru <haru@dotalux.com>
2017-05-30Fix saving of storage for non-stackable items.smokexyz1-0/+2
Thanks to @MishimaHaruna for the fix.
2017-05-30Merge pull request #1756 from Smokexyz/mmo_charstatus-fixsmokexyz2-7/+8
Fix storage saving checks and amount update.
2017-05-30Fix storage saving checks and amount update.smokexyz2-7/+8
Special thanks to @MishimaHaruna for the fix.
2017-05-30HPM Hooks UpdateHercules.ws4-0/+33
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2017-05-30Merge pull request #1752 from 4144/fix1751Haru3-1/+16
Fix memory leak in storage item vector (Fixes #1751)
2017-05-29Fix memory leak in storage item vector (Fixes #1751)Andrei Karas3-1/+16
2017-05-28update documentation for add_group_commandgumi1-1/+17
2017-05-28add support for custom atcommands in can_use_commandgumi1-14/+17
2017-05-28add buildin add_group_command()gumi1-0/+40
2017-05-28allow custom atcommands to have different permissions for each groupgumi2-4/+10
2017-05-28flag the pow() buildin as deprecatedgumi2-1/+9
2017-05-28remove the pow buildin from item databasesgumi2-66/+66
2017-05-28remove the pow buildin from existing scriptsgumi2-6/+6
2017-05-28update documentation for the exponentiation operatorgumi1-12/+16
2017-05-28add exponentiation operatorgumi2-0/+7
2017-05-27Merge pull request #1722 from Smokexyz/mmo_charstatus-fixHaru27-218/+1127
Dismemberment of `storage_data` from `mmo_charstatus`.
2017-05-22HPM Hook Update follow-up e8affc41f106503b530abaa7faa20d6e63b727b8smokexyz7-8/+355
2017-05-22Add storage_data reception, parsing and sending to/from the map-server.Smokexyz20-210/+772
Remove loading and saving of storage_data through char.c Re-declaration of structure storage_data as a vector. Re-code of portions in the map-server using storage_data. A new approach is taken by saving the loaded storage data from sql into memory for the duration of the session, thereby removing the need of querying the database to re-load all items everytime a storage save routine is issued from the map-server. Saving of storage items is done through a new function that significantly reduces the number of queries compared to char_memitemdata_tosql(), and therefore run-time speed. This method potentially reduces the number of update and delete queries from MAX_STORAGE (which could be >= 600) times to literally 1. Storage items are stored in a dynamically allocated array and handled accordingly. struct mmo_charstatus size reduces by 34,800 bytes. Update pc_checkitem() with masks for item checks. `sd->state.itemcheck` has been changed to `sd->itemcheck` of type `enum pc_checkitem_types` `battle/items.conf` has been updated to reflect configuration changes. Further updates to assert a successful reception of storage data in related functions.
2017-05-15Merge pull request #1719 from mekolat/channel2Haru4-0/+85
add channel handler events
2017-05-15Merge pull request #1723 from Ridley8819/expHaru1-2/+2
Update Exp Table
2017-05-12add channel handler eventsgumi4-0/+85
2017-05-12Merge pull request #1729 from HerculesWS/uwe_kleine_questskyleo1-2102/+618
Optimize Uwe Kleine NPC, fix typos and an unintended fallthrough in quests_ein Uwe Kleine NPC had a lot of repetition, solved by using functions. There was a case where you'd select the option "About Cooking" which only displays text when ein_cook % 2 == 1 and ein_cook < 10, for any other case it would fallthrough to the next option. Wrong grammar and typos have been corrected as well, some of them outside of the Uwe Kleine NPC.
2017-05-12Optimize Uwe Kleine NPC, fix typos and an unintended fallthrough in quests_einskyleo1-2102/+618
Uwe Kleine NPC had a lot of repetition, solved by using functions. There was a case where you'd select the option "About Cooking" which only displays text when ein_cook % 2 == 1 and ein_cook < 10, for any other case it would fallthrough to the next option. Wrong grammar and typos have been corrected as well, some of them outside of the Uwe Kleine NPC.
2017-05-11Update Exp TableRidley1-2/+2
Values updated according to: http://ro.gnjoy.com/news/update/View.asp?seq=162&curpage=1
2017-05-09Merge pull request #1730 from marky291/patch-1smokexyz1-2/+3
Updated *showscript documentation description.
2017-05-09Constants Documentation SyncHercules.ws1-1/+3
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2017-05-09Merge pull request #1699 from Jedzkie/11-SummerCostumeHaru10-64/+111
Implemented Official Summer 2 Costume
2017-05-08Updated *showscript documentation description.marky2911-2/+3
2017-05-07Spacing correction. (#1728)marky2911-0/+1
2017-05-04ItemDB SQL SyncHercules.ws2-12/+12
Signed-off-by: HerculesWSAPI <dev@herc.ws>
2017-05-04Merge pull request #1695 from Jedzkie/7-CashFoodFixHaru8-98/+39
Cash Foods Update