summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2017-06-09Merge pull request #1139 from SamuelHercules/WarlockCLFixsmokexyz1-1/+1
Fixed Chain Lighting animation was sent in wrong flow.
2017-06-08Corrected Documentation of getequipoption.Dastgir1-6/+6
2017-06-06Fixed assert report when arrow shower(skill) was used on traps.Dastgir1-3/+3
Fixes #1676
2017-06-05fix loss of reference in buildin_swapgumi1-4/+7
2017-06-05fix memory leak introduced by 5ceccb7gumi1-0/+4
2017-06-03flag misceffect() as deprecatedgumi1-1/+1
2017-06-03flag specialeffect2() as deprecatedgumi1-1/+1
2017-06-03allow to use specialeffect() on any unit, and to send to any playergumi1-10/+26
2017-06-03Merge pull request #1684 from Smokexyz/refine-updateHaru6-45/+96
Enriched refine chance correction
2017-06-03Merge pull request #1747 from mekolat/param2Haru1-8/+14
patch for readparam()
2017-06-03Merge pull request #1753 from mekolat/string2Haru1-0/+38
new buildins: isstr, getarrayindex
2017-06-03Add packet 0xac5 for clients >= 20170329.Andrei Karas1-7/+14
2017-06-03Add packet 0x0ac4 for 2017-03-15+ based on 3CeAM commit:Andrei Karas2-0/+12
commit 70e0efb7035707542a091c8f2edb533f89b2552f Author: rytech16 <rytech16@cad27aaa-dce3-4a30-a00a-e4fd67c11881> Date: Tue Apr 18 21:42:40 2017 +0000 =General *Added temporarly support for the 2017-03-29dRagexeRE -This is for experimental testing and will not stay in the future. *Added support for the AC_ACCEPT_LOGIN4 packet. -March 2017 and newer clients require this since they no longer -support the legacy AC_ACCEPT_LOGIN packet. git-svn-id: svn://svn.code.sf.net/p/v1-3ceam/code/trunk@816 cad27aaa-dce3-4a30-a00a-e4fd67c11881
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/group2Haru3-18/+67
new buildin: add_group_command
2017-06-03Merge pull request #1739 from mekolat/pow2Haru2-1/+8
implementation of the exponentiation operator
2017-06-02Fix replace statement formatting in storage save function.smokexyz1-3/+3
2017-06-01add buildin getarrayindex()gumi1-0/+17
2017-06-01add buildin isstr()Andrei Karas1-0/+21
2017-05-31HPM Hooks UpdateHercules.ws4-121/+8
Signed-off-by: HerculesWSAPI <dev@herc.ws>
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-29Fix memory leak in storage item vector (Fixes #1751)Andrei Karas3-1/+16
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 deprecatedgumi1-1/+1
2017-05-28add exponentiation operatorgumi2-0/+7
2017-05-28allow to pass actual params to getparamgumi1-8/+14
2017-05-27Merge pull request #1722 from Smokexyz/mmo_charstatus-fixHaru26-217/+1126
Dismemberment of `storage_data` from `mmo_charstatus`.
2017-05-23HPM Hook Update - followup 1570d3abbbc999ebc3242d99f87a5bd3b283e479smokexyz2-8/+8
2017-05-22HPM Hook Update follow-up e8affc41f106503b530abaa7faa20d6e63b727b8smokexyz7-8/+355
2017-05-22Add storage_data reception, parsing and sending to/from the map-server.Smokexyz19-209/+771
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-21Refine rate correction from kRO.smokexyz4-37/+88
Normal Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941553&curpage=1 Enriched Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941565&curpage=1 Event Normal Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941558&curpage=1 Event Enriched Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941567&curpage=1
2017-05-12add channel handler eventsgumi3-0/+64
2017-05-09Merge pull request #1699 from Jedzkie/11-SummerCostumeHaru8-64/+100
Implemented Official Summer 2 Costume
2017-05-04Merge pull request #1695 from Jedzkie/7-CashFoodFixHaru5-71/+15
Cash Foods Update
2017-05-04Merge pull request #1717 from mekolat/vault2Haru3-0/+18
expose the bank vault to the script engine