Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-06-01 | Merge pull request #2380 from AnnieRuru/59-all_All | Haru | 1 | -2/+8 | |
Standardize to "all" in script commands | |||||
2019-06-01 | Merge pull request #2430 from Emistry/scriptcommand_npcspeed | Haru | 1 | -46/+62 | |
Fix map-crash when floating npc use *npcspeed script command | |||||
2019-06-01 | Merge pull request #2471 from Emistry/scriptcommand_mesclear | Haru | 1 | -0/+14 | |
Add *mesclear script command. | |||||
2019-06-01 | Merge pull request #2472 from Emistry/scriptcommand_cap_value | Haru | 1 | -0/+12 | |
Add *cap_value script command | |||||
2019-06-01 | Merge pull request #2474 from Emistry/scriptcommand_getmapinfo | Haru | 1 | -3/+9 | |
Update *getmapinfo script command. | |||||
2019-06-01 | Merge pull request #2477 from Emistry/issue_2469 | Haru | 1 | -1/+2 | |
Fix *failedremovecards script command. | |||||
2019-06-01 | Merge pull request #2375 from AnnieRuru/58-negative_input | Haru | 1 | -25/+26 | |
Allow *input script command to support negative input | |||||
2019-05-18 | Fix *failedremovecards script command. | Emistry Haoyan | 1 | -1/+2 | |
- only `type == 1` will remove the card. - fixes #2469 | |||||
2019-05-15 | Update *getmapinfo script command. | Emistry Haoyan | 1 | -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-14 | Add *cap_value script command | Emistry Haoyan | 1 | -0/+12 | |
- add `cap_value(value, min, max)` script command. - avoid the ugly nested `min()` and `max()` combo if needed. | |||||
2019-05-14 | Added *mesclear script command. | Emistry Haoyan | 1 | -0/+14 | |
- `*mesclear()` script command will clear the NPC dialog text and continue the script without player interaction. example: `next();`. | |||||
2019-05-06 | Move questinfo data from map to npc_data | Asheraf | 1 | -7/+5 | |
this will fix the issue where having multiple `questinfo()` blocks wont work properly | |||||
2019-05-05 | Implement Refinery UI | Ibrahim Zidan | 1 | -0/+20 | |
Signed-off-by: Ibrahim Zidan <brahem@aotsw.com> | |||||
2019-05-05 | Removal of refine database code from status.c and moving it respectfully to ↵ | Ibrahim Zidan | 1 | -1/+2 | |
its own files Signed-off-by: Ibrahim Zidan <brahem@aotsw.com> | |||||
2019-05-05 | Add script function for close roulette window | Andrei Karas | 1 | -0/+12 | |
New script function: closeroulette() | |||||
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 | 1 | -0/+23 | |
2019-05-05 | Merge pull request #2425 from hemagx/hercules_signed_items_fix | Haru | 1 | -6/+6 | |
Fix an issue with named/brewed/forged items getting saved with the wrong character id | |||||
2019-05-05 | Merge pull request #2426 from Emistry/scriptcommand_getinventorylist_favourite | Haru | 1 | -25/+32 | |
Expand *getinventorylist() script command - favorite field | |||||
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-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 | 1 | -3/+6 | |
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 | Expand *getinventorylist() script command | Emistry Haoyan | 1 | -25/+32 | |
- return an array `@inventorylist_favorite` - indicate whether an item in the inventory are located inside favorite tab or not. | |||||
2019-04-08 | Fix an issue with named/brewed/forged items getting saved with the wrong ↵ | Ibrahim Zidan | 1 | -6/+6 | |
character id The isue was triggered by the refactoring of old undocumented code that relied on the overflow behavior during assignment from int32 to int16 and from uint16 to int16, and by a subsequent clamping to SMALLINT range operated by the SQL server. Credits: Haru <haru@dotalux.com> Fixes #2409 Signed-off-by: Ibrahim Zidan <brahem@aotsw.com> | |||||
2019-04-07 | Merge pull request #2415 from AnnieRuru/76-showscript | Haru | 1 | -7/+7 | |
Add optional parameter for *showscript to send target to SELF only | |||||
2019-04-07 | Merge pull request #2367 from AnnieRuru/54-MAX_ITEM_ID | Haru | 1 | -0/+1 | |
Add new server define constant MAX_ITEM_ID | |||||
2019-04-07 | Rename clif_charnameack into clif_blname_ack | Andrei Karas | 1 | -5/+5 | |
2019-04-07 | Merge pull request #2398 from AnnieRuru/69-getpetinfo | Haru | 1 | -22/+75 | |
Deprecate *petstat and add CONSTANTS to *getpetinfo | |||||
2019-04-07 | Merge pull request #2408 from AnnieRuru/73-UDT_LEVEL | Haru | 1 | -0/+2 | |
Fix UDT_LEVEL when show_mob_info level display is on | |||||
2019-04-07 | Merge pull request #2388 from AnnieRuru/61-gettimestr | Haru | 1 | -10/+22 | |
Add optional parameter for *gettimestr | |||||
2019-04-07 | Merge pull request #2401 from dastgirp/feature/getinventorylist | Haru | 1 | -0/+1 | |
Expanded getinventorylist: | |||||
2019-03-30 | Add optional parameter for *showscript to send target to SELF only | AnnieRuru | 1 | -7/+7 | |
- also remove the useless script_pushint | |||||
2019-03-23 | white space edit | AnnieRuru | 1 | -8/+8 | |
2019-03-23 | Add optional parameter for *gettimestr | AnnieRuru | 1 | -2/+14 | |
2019-03-20 | Fix UDT_LEVEL when show_mob_info level display is on | AnnieRuru | 1 | -0/+2 | |
2019-03-12 | Add constants to *getpetinfo, and add some new fields | AnnieRuru | 1 | -21/+74 | |
2019-03-11 | Deprecate *petstat script command | AnnieRuru | 1 | -1/+1 | |
2019-03-11 | Merge pull request #2399 from AnnieRuru/70-needed_status_point | Haru | 1 | -2/+2 | |
Fix *needed_status_point not support <char_id> | |||||
2019-03-11 | Merge pull request #2391 from AnnieRuru/64-setunitdata_phase_1 | Haru | 1 | -2/+10 | |
setunitdata/getunitdata clean up. Phase 1 | |||||
2019-03-11 | Merge pull request #2396 from AnnieRuru/67-mobattached | Haru | 1 | -0/+29 | |
* Add *mobattached and *killmonstergid script command | |||||
2019-03-11 | Merge pull request #2397 from AnnieRuru/68-getmercinfo | Haru | 1 | -32/+59 | |
Add constants and MERCINFO_GID to *getmercinfo script command | |||||
2019-03-11 | Merge pull request #2381 from AnnieRuru/60-bg_norespawn | Haru | 1 | -1/+1 | |
Add missing documentation for disable battleground respawn | |||||
2019-03-11 | Add constants and MERCINFO_GID to *getmercinfo script command | AnnieRuru | 1 | -32/+59 | |
2019-03-09 | Expanded getinventorylist: | Dastgir | 1 | -0/+1 | |
* getinventorylist now creates extra variable named @inventorylist_idx, which returns items corresponding inventory index. | |||||
2019-03-03 | Fix *needed_status_point not support <char_id> | AnnieRuru | 1 | -2/+2 | |
2019-03-02 | Merge pull request #2390 from AnnieRuru/63-MOB_CLONE_START | Asheraf | 1 | -0/+2 | |
Add MOB_CLONE_START & MOB_CLONE_END to server defined constants | |||||
2019-03-02 | * Add *mobattached and *killmonstergid script command | AnnieRuru | 1 | -0/+29 | |
also fix quests_rachel, now support with *unitemote |