summaryrefslogtreecommitdiff
path: root/src/map
AgeCommit message (Collapse)AuthorFilesLines
2019-06-03Add *setfavoriteitemidx & *autofavoriteitem script command.Emistry Haoyan3-1/+54
- set an item as favorite item or not based inventory index. - if an item is set to favorite item, it will be moved into favorite tab, else move out from favorite tab. - only non-equipped item can adjust the favorite item state.
2019-06-02Merge pull request #2394 from bWolfie/buildin_delitemidxHaru1-0/+43
Adds BUILDIN(delitemidx), which deletes an item at the given index.
2019-06-02Adds BUILDIN(delitemidx), which deletes an item at the given index.EyesOfAHawk1-0/+43
Signed-off-by: Haru <haru@dotalux.com>
2019-06-02Merge pull request #2468 from 4144/updatepacketsHaru12-71/+472
Update packets up to 2019-05-29
2019-06-02Fix version check for packet ZC_PINGAndrei Karas2-2/+2
2019-06-02Use new shortcuts packets in zero 2019-05-15 and main 2019-05-22Andrei Karas3-8/+8
2019-06-02Use separate field hotkey_rowshift for each hotkeys groupAndrei Karas1-3/+8
2019-06-02Update packet CZ_SHORTCUTKEYBAR_ROTATEAndrei Karas4-10/+41
2019-06-02Update packet CZ_SHORTCUT_KEY_CHANGEAndrei Karas4-14/+59
2019-06-02Update packet ZC_SHORTCUT_KEY_LISTAndrei Karas3-27/+73
2019-06-02Extract hotkey packet data into separate structAndrei Karas1-9/+9
2019-06-01Update messages up to 2019-05-30Andrei Karas3-3/+255
2019-06-01Update shuffle packets up to 2019-05-30Andrei Karas3-6/+19
2019-06-01Update keys up to 2019-05-30Andrei Karas2-4/+13
2019-06-01Fix some stats calculation issues by reverting basic stats type from uint32 ↵Andrei Karas1-2/+3
to uint16
2019-06-01Merge pull request #2380 from AnnieRuru/59-all_AllHaru1-2/+8
Standardize to "all" in script commands
2019-06-01Merge pull request #2430 from Emistry/scriptcommand_npcspeedHaru1-46/+62
Fix map-crash when floating npc use *npcspeed script command
2019-06-01Merge pull request #2471 from Emistry/scriptcommand_mesclearHaru1-0/+14
Add *mesclear script command.
2019-06-01Merge pull request #2472 from Emistry/scriptcommand_cap_valueHaru1-0/+12
Add *cap_value script command
2019-06-01Merge pull request #2474 from Emistry/scriptcommand_getmapinfoHaru1-3/+9
Update *getmapinfo script command.
2019-06-01Merge pull request #2477 from Emistry/issue_2469Haru1-1/+2
Fix *failedremovecards script command.
2019-06-01Merge pull request #2375 from AnnieRuru/58-negative_inputHaru3-28/+41
Allow *input script command to support negative input
2019-06-01Merge pull request #2433 from Asheraf/questinfomemfixHaru9-196/+127
Move questinfo data from map to npc_data
2019-05-30Adds Option DB and Option Drop Groups DB to be loaded on minimal modeGuilherme Menaldo2-2/+4
2019-05-22Fix reading rates from refine dbAndrei Karas1-1/+1
2019-05-18Add new atcommand *reloadnpcEmistry Haoyan1-0/+33
- `@reloadnpc <path>` - unloads all NPCs in a file and reload it again. - Be aware that mapflags and monster spawned directly are not removed.
2019-05-18Fix *failedremovecards script command.Emistry Haoyan1-1/+2
- only `type == 1` will remove the card. - fixes #2469
2019-05-15Update *getmapinfo script command.Emistry Haoyan1-3/+9
- Added parameter `MAPINFO_NPC_COUNT` to return the total number of NPC exists in the map. - Added new server define `MAX_NPC_PER_MAP`
2019-05-14Add *cap_value script commandEmistry Haoyan1-0/+12
- add `cap_value(value, min, max)` script command. - avoid the ugly nested `min()` and `max()` combo if needed.
2019-05-14Added *mesclear script command.Emistry Haoyan1-0/+14
- `*mesclear()` script command will clear the NPC dialog text and continue the script without player interaction. example: `next();`.
2019-05-08Fix aspd and probably other stats issues.Andrei Karas1-2/+2
2019-05-08Merge pull request #2465 from 4144/updatepacketsHaru1-0/+2
Fix packet ZC_SE_PC_BUY_CASHITEM_RESULT for old packet versions
2019-05-08Merge pull request #2464 from 4144/fix2463Haru1-1/+32
Fix sending guild storage to client (Fixes #2463)
2019-05-07Fix sending guild storage to client (Fixes #2463)Andrei Karas1-1/+32
2019-05-07Fix packet ZC_SE_PC_BUY_CASHITEM_RESULT for old packet versionsAndrei Karas1-0/+2
2019-05-07Merge pull request #2461 from guilherme-gm/fix-randomoptHaru1-1/+2
Fixes a nullpo on MVP drops
2019-05-06Fixes a nullpo on MVP dropsGuilherme Menaldo1-1/+2
2019-05-06Merge pull request #2460 from 4144/fix2459Haru1-3/+3
Fix player name packet (Fixes #2459)
2019-05-06Fix player name packet (Fixes #2459)Andrei Karas1-3/+3
2019-05-06Move questinfo data from map to npc_dataAsheraf9-110/+91
this will fix the issue where having multiple `questinfo()` blocks wont work properly
2019-05-06remove duplicated code used to clean map dataAsheraf1-87/+37
2019-05-06Merge pull request #2453 from Emistry/scriptcommand_unitwarpHaru1-1/+1
Update unitwarp script command.
2019-05-06Merge pull request #2232 from guilherme-gm/201810-trap-visibilityHaru5-15/+44
Added option to make hunter traps invisible
2019-05-06Change return type of attack related functions from unsigned int to intAndrei Karas2-40/+40
2019-05-06Fix warnings after last changesAndrei Karas1-6/+10
2019-05-06Add configurable limits for attack related functionsAndrei Karas3-32/+61
2019-05-06Change attack related status functions to return int variableAndrei Karas2-51/+55
2019-05-06Change most field sizes from short to int in status_data struct.Andrei Karas1-8/+6
2019-05-05Implement Refine success/failure announcement featureIbrahim Zidan5-0/+69
Currently as far as we know kRO only sends this on success in refining an item through the refinery ui, from level 10 all the way to 20. Signed-off-by: Ibrahim Zidan <brahem@aotsw.com>
2019-05-05Fix serval variable scopes in refine.c to reduce scope as much asIbrahim Zidan1-11/+8
possible Signed-off-by: Ibrahim Zidan <brahem@aotsw.com>