Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-07-25 | Merge pull request #2138 from Asheraf/stylistupdate | Haru | 1 | -3/+1 | |
Add support for bodystyle in stylist shop ui | |||||
2018-07-24 | Merge pull request #2088 from guilherme-gm/fix-ghostmonsters | Haru | 1 | -0/+7 | |
Fixed monsters not disappearing from some clients upon death | |||||
2018-07-19 | enable bodystyle saving by default | Asheraf | 1 | -3/+1 | |
2018-07-12 | Fixed clearunit packet not being sent to clients going out of the view range ↵ | Guilherme G. Menaldo | 1 | -0/+7 | |
when monster dies | |||||
2018-07-12 | Fix date part2 | Unknown | 36 | -36/+36 | |
2018-06-29 | Merge pull request #2098 from Asheraf/pairshipupdate | Haru | 1 | -0/+154 | |
update private airship map list to match main kRO servers | |||||
2018-06-25 | Implemented Pet Autofeeding | Dastgir | 1 | -0/+5 | |
2018-06-21 | Update Maps Database | Asheraf | 1 | -0/+154 | |
2018-06-02 | Implementation of stylist ui | Asheraf | 1 | -1/+5 | |
2018-05-04 | Implementation of Private AirShip | Asheraf | 1 | -1/+2 | |
2018-04-23 | Merge pull request #2005 from guilherme-gm/guildskillcd | Haru | 1 | -4/+5 | |
Allow guild skills cooldown to continue when logged out | |||||
2018-04-22 | Merge pull request #2020 from Asheraf/packets | Haru | 1 | -1/+1 | |
Enable some features for newer client versions | |||||
2018-04-22 | Merge pull request #2007 from Jedzkie/PincodeUpdate | Haru | 1 | -1/+26 | |
Pincode Update | |||||
2018-04-18 | Enable attendance system for PACKETVER_ZERO_NUM >= 20180411 | Asheraf | 1 | -1/+1 | |
2018-04-08 | Merge pull request #2001 from guilherme-gm/tombspawn | Haru | 1 | -0/+4 | |
Added delay to tomb spawn | |||||
2018-04-08 | Allow guild skills cooldown to continue when logged out | Guilherme G. Menaldo | 1 | -4/+5 | |
2018-04-08 | Added delay to tomb spawn | Guilherme G. Menaldo | 1 | -0/+4 | |
2018-04-08 | Merge pull request #2006 from Jedzkie/MessageFixes | Haru | 1 | -1/+4 | |
Message Fixes | |||||
2018-04-07 | Implementation of Attendance system | Asheraf | 2 | -1/+11 | |
2018-04-08 | Update Skill/Item messages | Jedzkie | 1 | -1/+4 | |
2018-04-07 | Add an option to prevent item usage when storage is open | Jedzkie | 1 | -0/+4 | |
In official servers, you can't open boxes and use usable/consumables items when the storage is open. Fixes #1806 | |||||
2018-04-02 | Pincode Update | Jedzkie | 1 | -1/+26 | |
- Added blacklist feature - Added official message when successfully create a pincode / successfully change a pincode | |||||
2018-02-12 | Fix messages about enabled/disabled cvc mode. | Andrei Karas | 1 | -1/+3 | |
2018-01-25 | Implementation of Official Clan System | Murilo Pereti Tavares | 3 | -3/+56 | |
All official features work including the autokick for inactive members And the system is completely customizable. | |||||
2017-12-17 | Merge pull request #1923 from 4144/fixpackets | Haru | 1 | -1/+1 | |
Add support for Ragnarok zero clients, split packets.h again | |||||
2017-12-14 | Enable packets encryption by default. | Andrei Karas | 1 | -1/+1 | |
Old autodetection mode for some clients not works and need fix it. | |||||
2017-11-18 | Implement Homunculus autofeeding | Asheraf | 1 | -0/+5 | |
2017-10-29 | Add configurable way to show char servers with color in list in client. | Andrei Karas | 1 | -0/+16 | |
Options configurable in login-server.conf in users_count section. | |||||
2017-10-21 | Merge pull request #1833 from Emistry/mapflag_noautoloot | Haru | 1 | -2/+5 | |
Add NoAutoloot mapflag | |||||
2017-10-22 | Add NoAutoloot mapflag | Emistry Haoyan | 1 | -2/+5 | |
- Enable server to disable autoloot settings for certain maps. | |||||
2017-10-21 | Merge pull request #1812 from mekolat/partyleader2 | Haru | 1 | -0/+6 | |
add option to restrict party leader change to same map | |||||
2017-09-12 | Fix several typos and grammar mistakes | Haru | 1 | -5/+5 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2017-08-01 | add option to restrict party leader change to same map | gumi | 1 | -0/+6 | |
2017-07-30 | Implementation of RoDEX | KirieZ | 1 | -0/+10 | |
2017-06-13 | Removed reading battle.conf multiple times from import folder. | Dastgir | 1 | -3/+1 | |
2017-05-27 | Merge pull request #1722 from Smokexyz/mmo_charstatus-fix | Haru | 1 | -1/+1 | |
Dismemberment of `storage_data` from `mmo_charstatus`. | |||||
2017-05-22 | Add storage_data reception, parsing and sending to/from the map-server. | Smokexyz | 1 | -1/+1 | |
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-09 | Merge pull request #1699 from Jedzkie/11-SummerCostume | Haru | 1 | -0/+8 | |
Implemented Official Summer 2 Costume | |||||
2017-05-07 | Spacing correction. (#1728) | marky291 | 1 | -0/+1 | |
2017-05-04 | Merge pull request #1695 from Jedzkie/7-CashFoodFix | Haru | 1 | -3/+0 | |
Cash Foods Update | |||||
2017-05-01 | Merge pull request #1698 from Jedzkie/10-BodyStyle | Haru | 1 | -1/+1 | |
Added job checks for @bodystyle command | |||||
2017-05-01 | Added job checks for @bodystyle command | Jedzkie | 1 | -1/+1 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2017-04-29 | Merge pull request #1713 from Jedzkie/17-DropAnnounce | Haru | 2 | -15/+1 | |
Fixes #994 | |||||
2017-04-29 | Removal of rare_drop_announce config. | Jedzkie | 2 | -15/+1 | |
2017-04-25 | Removal of cashfood_use_interval setting. | Jedzkie | 1 | -3/+0 | |
2017-04-25 | Merge pull request #1694 from Jedzkie/6-NPCWorkInProgressFix | Haru | 1 | -1/+2 | |
Added the correct PACKETVER Date for MSG_NPC_WORK_IN_PROGRESS message. | |||||
2017-04-24 | Removed hard coded values on @cashmount and setcashmount. | Jedzkie | 1 | -0/+4 | |
2017-04-24 | Merge pull request #1704 from Jedzkie/13-AddHealRate | Haru | 1 | -1/+1 | |
Added AB_HIGHNESSHEAL in skill_add_heal_rate configuration | |||||
2017-04-23 | Added the correct PACKETVER Date for MSG_NPC_WORK_IN_PROGRESS message. | Jedzkie | 1 | -1/+2 | |
2017-04-23 | Merge pull request #1697 from Jedzkie/9-PreventLogout | Haru | 1 | -0/+9 | |
Made prevent_logout effect on log-in optional |