Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-05-05 | Update packet ZC_PARTY_CONFIG | Andrei Karas | 2 | -4/+15 | |
2019-05-05 | Fix compilation for old packet versions (Fixes #2438) | Andrei Karas | 1 | -0/+2 | |
2019-05-05 | Use new name packet for monsters too | Andrei Karas | 2 | -19/+84 | |
2019-05-05 | Move UDT_* constants from constants.conf into script.c | Andrei Karas | 1 | -0/+60 | |
2019-05-05 | Add commands getunittitle and setunittitle | Andrei Karas | 1 | -0/+42 | |
This commands get/set title for non players bl | |||||
2019-05-05 | Extend setinitdata and getunitdata with UDT_GROUP flag | Andrei Karas | 2 | -0/+24 | |
2019-05-05 | Add into unit_data groupId and title | Andrei Karas | 2 | -0/+44 | |
Send this fields in packet ZC_ACK_REQNAME_TITLE. | |||||
2019-05-05 | Add packet ZC_ACK_REQNAME_TITLE | Andrei Karas | 2 | -29/+39 | |
2019-05-05 | Update HPM | Andrei Karas | 1 | -1/+1 | |
2019-05-05 | Send old name packet for players if fake name or disquise used | Andrei Karas | 1 | -2/+2 | |
2019-05-05 | Rename packet_reqnameall_ack into PACKET_ZC_ACK_REQNAMEALL | Andrei Karas | 2 | -24/+30 | |
2019-05-05 | Fix packet version for pc name packet with title | Andrei Karas | 2 | -5/+5 | |
2019-05-05 | Add function clif_send_selforarea for send packet to self or area | Andrei Karas | 2 | -97/+26 | |
2019-05-05 | Split clif_blname_ack into function per type | Andrei Karas | 2 | -103/+329 | |
2019-05-05 | Before correct client disconnect send disconnect packet and flush socket | Andrei Karas | 1 | -1/+2 | |
2019-05-05 | Add packet ZC_LOAD_CONFIRM | Andrei Karas | 3 | -0/+20 | |
2019-05-05 | Update packet CZ_PING | Andrei Karas | 1 | -1/+1 | |
2019-05-05 | Update messages up to 2019-05-02 | Andrei Karas | 3 | -3/+165 | |
2019-05-05 | Update shuffle up to 2019-05-02 | Andrei Karas | 3 | -6/+13 | |
2019-05-05 | Update keys up to 2019-05-02 | Andrei Karas | 2 | -4/+9 | |
2019-05-05 | Update packets table to 2019-05-02 | Andrei Karas | 3 | -12/+92 | |
2019-05-05 | Truncate too big time in guild member login time field | Andrei Karas | 1 | -1/+7 | |
2019-05-05 | Fix last inventory name letter in packet ZC_INVENTORY_START | Andrei Karas | 1 | -1/+1 | |
2019-05-05 | Merge pull request #2425 from hemagx/hercules_signed_items_fix | Haru | 2 | -9/+9 | |
Fix an issue with named/brewed/forged items getting saved with the wrong character id | |||||
2019-05-05 | Merge pull request #2424 from hemagx/hercules_packet_fixes | Haru | 2 | -33/+30 | |
Storage item list packet size fix and minor clif.c fixes | |||||
2019-05-05 | Merge pull request #2426 from Emistry/scriptcommand_getinventorylist_favourite | Haru | 1 | -25/+32 | |
Expand *getinventorylist() script command - favorite field | |||||
2019-05-05 | Merge pull request #2309 from guilherme-gm/201810-randomopt-drop | Haru | 9 | -23/+652 | |
Support for monster drops with Random Options | |||||
2019-05-04 | Fix inter-server deleting zeny from rodex mails when a player requests to ↵ | Ibrahim Zidan | 1 | -2/+0 | |
take item Signed-off-by: Ibrahim Zidan <brahem@aotsw.com> | |||||
2019-05-01 | Update unitwarp script command. | Emistry Haoyan | 1 | -1/+1 | |
- allow NPC to warp to non-walkable cell. Just like `*movenpc` | |||||
2019-04-29 | Merge pull request #2439 from Emistry/atcommand_dropall | Ibrahem Zidan | 2 | -6/+31 | |
Update dropall atcommand drop item based on type. | |||||
2019-04-29 | Update dropall atcommand drop item based on type. | Emistry Haoyan | 2 | -6/+31 | |
- Enable to drop items based on item type. | |||||
2019-04-29 | Merge pull request #2440 from Emistry/scriptcommand_consolemes | Ibrahem Zidan | 1 | -1/+61 | |
Added *consolemes script command | |||||
2019-04-29 | Merge pull request #2443 from Emistry/issue_1569 | Ibrahem Zidan | 1 | -0/+8 | |
Disable chatroom creation if cell_chknochat | |||||
2019-04-29 | Added *consolemes script command | Emistry Haoyan | 1 | -1/+61 | |
- deprecated `*debugmes` script command. - added `*consolemes` script command which display the console message based on `type`. - allow map-server console to auto logging into text file depend on type of message. | |||||
2019-04-21 | Update MSVC version naming in console info | Asheraf | 1 | -2/+6 | |
2019-04-20 | Regenerate HPM Hook | Guilherme G. Menaldo | 5 | -8/+248 | |
2019-04-20 | Moved mob drop data to its own structure | Guilherme G. Menaldo | 2 | -7/+12 | |
2019-04-20 | Added support for mobs to drop items with Random Options | Guilherme G. Menaldo | 4 | -11/+395 | |
2019-04-18 | Restore the ability for HPM Hooks to hook to private interfaces | Ibrahim Zidan | 2 | -0/+33 | |
- Starting from 5db7c799055c6ae9c4463f6cf4c88a35597d5d31 the ability to hook to private interfaces was removed, this commit restores this ability by introducing two new macros specifically for this. - addHookPrePriv to add a pre-hook for private interface member - addHookPostPriv to add a post-hook for private interface member Signed-off-by: Ibrahim Zidan <brahem@aotsw.com> | |||||
2019-04-17 | Merge pull request #2428 from hemagx/hercules_pet_fixes | Haru | 1 | -0/+15 | |
Automatically migrate pets to the new system that keeps hatched eggs in the inventory | |||||
2019-04-15 | Update HPM | Andrei Karas | 8 | -16/+283 | |
2019-04-15 | Improve get items from rodex | Andrei Karas | 9 | -34/+169 | |
2019-04-15 | Improve get zeny from rodex | Andrei Karas | 8 | -12/+83 | |
2019-04-14 | Disable chatroom creation if cell_chknochat | Emistry Haoyan | 1 | -0/+8 | |
- doesn't allow chatroom creation/switch if the coordinated cell are set with cell_chknochat. - chatroom will be auto deleted. | |||||
2019-04-14 | Add account id and char id into inter server rodex update packet | Andrei Karas | 7 | -18/+29 | |
2019-04-11 | Added NULL unit data validation for NPC. | Emistry Haoyan | 1 | -46/+62 | |
- script command `npcspeed`, `npcwalkto`, `npcstop`, `unitwalk`, `unitwarp`, `unitstop` are not applicable for floating npc (without coordinate/location). - Fix map-crash due to unit_data `NULL`. | |||||
2019-04-11 | Standardize to "all" in script commands | AnnieRuru | 1 | -2/+8 | |
2019-04-11 | Add 3 pc variables just for the input limit ... | AnnieRuru | 3 | -6/+21 | |
sd->npc_amount_min and sd->npc_amount_max to limit input range and sd->npc_input_capped_range because the documentation ask for it | |||||
2019-04-11 | Modernize coding style | AnnieRuru | 1 | -23/+21 | |
2019-04-10 | Fix direct calls to clif_send in clif.c | Ibrahim Zidan | 1 | -5/+3 | |
Signed-off-by: Ibrahim Zidan <brahem@aotsw.com> |