aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix stripping line breaks in config loaderLMBishop2022-03-051-2/+2
|
* Add warning on initial start up if there are configuration issuesLMBishop2022-03-051-0/+4
|
* Surround values by quotes in default configLMBishop2022-03-031-3/+3
|
* Add UI button customisation (closes #158, closes #319)LMBishop2022-03-034-5/+33
|
* Fix quest command's behaviorSirSalad2022-02-281-2/+3
| | | | | | - Return if quest id arg is invalid - Tab complete quests instead of categories - Change usage message to reflect real usage
* Add check for CTRL+Q drop (closes #317)LMBishop2022-02-251-1/+2
|
* Version dependencies for ciLMBishop2022-02-231-2/+2
|
* Add global macros (closes #316)LMBishop2022-02-232-2/+33
|
* Update icon linkLeonardo Bishop2021-12-221-1/+1
|
* Add NuVotifier task type (closes #299)LMBishop2021-12-083-0/+92
|
* [ci skip] Add FUNDING.ymlLeonardo Bishop2021-12-061-0/+1
|
* Bump version numberv3.9.2LMBishop2021-12-031-1/+1
|
* Fix typo in command help menuLMBishop2021-12-031-1/+1
|
* Fix suicides counting towards playerkilling (closes #295)LMBishop2021-12-011-7/+4
|
* Fix broken mobkillingcertain task type (closes #285)LMBishop2021-11-301-1/+1
|
* Truncate decimals to 2 d.p. (closes #276)LMBishop2021-10-011-2/+9
|
* Track first available quest if autotrack is enabled (closes #281)LMBishop2021-10-011-0/+11
|
* Add data source configuration (closes #275)LMBishop2021-09-281-0/+6
|
* Add cancel shortcut command (closes #283)LMBishop2021-09-284-0/+60
|
* Fix PAPI task completed placeholder not following config (closes #251)LMBishop2021-09-121-1/+1
|
* Add modes of transport (closes #269)LMBishop2021-09-121-0/+28
|
* Add citizens ID support (closes #271)LMBishop2021-09-122-11/+27
|
* [ci skip] Clarify issue templatesLMBishop2021-09-102-1/+11
|
* Nuke DS_StoreLMBishop2021-09-102-0/+0
|
* Bump version numberv3.9.1LMBishop2021-09-091-1/+1
|
* Set progress on numeric placeholders for PAPI tasks (closes #240)LMBishop2021-09-091-0/+1
|
* Apply placeholders on custom GUI items (closes #235, closes #246)LMBishop2021-09-093-4/+8
|
* Update Slimefun (closes #258)LMBishop2021-09-092-5/+7
|
* Remove cancel ability from auto-started quests (fixes #260)LMBishop2021-09-094-2/+6
|
* Remove ITEM_FLAGS item filter from QItemStack (closes #256)LMBishop2021-09-081-1/+1
|
* Made display names no longer a requirement (closes #249)LMBishop2021-09-083-21/+12
|
* Remove wiki from repositoryLMBishop2021-09-041-664/+0
|
* Fix wiki updates missing.SirBlobman2021-09-031-2/+4
|
* Added wiki page to repository with new ShopGUIPlus changes.SirBlobman2021-09-031-0/+662
|
* Add shop id and improve detection of ShopGUIPlus purchases/sales.SirBlobman2021-09-032-103/+185
|
* Bump version numberv3.9LMBishop2021-08-171-1/+1
|
* Add slimefun quest itemLMBishop2021-08-173-4/+40
|
* Add bucket task types (closes #226)LMBishop2021-08-174-0/+144
|
* Add consume task (closes #237)LMBishop2021-08-172-0/+127
|
* Fix joined before check (closes #232)LMBishop2021-08-161-1/+1
|
* Add mmoitems as a quest item type (closes #221)LMBishop2021-08-1614-71/+202
|
* Redo tab completionLMBishop2021-08-1225-135/+283
|
* Fix missing validationLMBishop2021-08-1229-148/+23
|
* Bump version numberv3.8LMBishop2021-08-121-1/+1
|
* Move essentials hook initialisationLMBishop2021-08-121-4/+3
|
* Add item importing (closes #222)LMBishop2021-08-1213-78/+288
|
* Revert config key changes to remove afk playtimeCoolLord222021-08-111-2/+0
|
* Remove Essentials dependent code and use plugin hookCoolLord222021-08-111-6/+5
| | | | | | Uses EssentialsHook to check if user is AFK. Requires task to have config option "ignore-afk" to be true in order to proceed; default fallback is false so this does not pose issues on servers w/o Essentials.
* Add EssentialsHookCoolLord222021-08-113-0/+43
| | | | | | Adds EssentialsHook class which will handle the imports for dependent classes. This class handles checks for whether or not the player is AFK. To stay consistent with how the project handles hooks, went ahead and created the abstract type as well.
* Add option to ignore AFK players for PlaytimeTaskTypeCoolLord222021-08-112-0/+8
| | | | | | Hooks into Essentials and exempts users who are AFK at the time of the PlaytimeTask increment from getting time added to their quest progress. Adds config option to enable this (defaults to false, that way this feature isn't automatically on in old configs).