Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Potion Duration Not listed #2205

Closed
HorusApl opened this issue May 11, 2024 · 12 comments
Closed

Potion Duration Not listed #2205

HorusApl opened this issue May 11, 2024 · 12 comments
Labels

Comments

@HorusApl
Copy link

What is your Quests version / build number (do not say "latest")?

5.0.2-b462

Describe the problem and how to replicate it.

If you have a quest to brew a potion, the duration is not listed in the objectives given to the player, but quests does indeed care what duration is brewed. It just doesn't tell the player what duration to brew so they have to guess. It will complete the quest as expected, but it should tell the player what duration they're meant to be brewing.

In the screenshot, potions 2, 4 and 6 are all the longer durations of those potion types. If this was a stage based quest, Stage 1 being Brew Short Duration night vision and Stage 2 Brew Long Duration night vision, you'd have no idea.

Using the /quests editor and using the option 0 to load the item in hand to create the quest makes no difference (as mentioned in #954 ) Opening new issue as requested.

image

Any console errors to share?

N/A

If applicable, can you provide an example quest from quests.yml?

No response

@HorusApl HorusApl added the bug label May 11, 2024
@PikaMug
Copy link
Owner

PikaMug commented May 13, 2024

So I've been looking into this, and unfortunately it appears older versions of the Bukkit/Spigot API don't have a way to get the duration time (which is a problem since we support back to 1.8 as of writing). I can get the level (I, II, III, IV) instead, but some potions have an enhanced version that doesn't upgrade the level but does extend the duration time (so there'd be no way to distinguish Potion of Leaping (3:00) from Potion of Leaping (8:00), and there's still Potion of Leaping II (1:30), for example). Could take me a while to sort something out.

@HorusApl
Copy link
Author

It does seem to differentiate in the item meta as potion_name vs long_potion_name. The same seems to apply for tipped arrows and lingering potions as well, I can see this from the config if I use the load from hand via the quests editor. Unsure if this helps you, but thought it'd be relevant to comment.

@PikaMug
Copy link
Owner

PikaMug commented May 13, 2024

Yes, but this has to be done through the API, and not reading the item's metadata directly. I was also looking to get the duration as your ticket stated, but I suppose just tacking "(Long)" or "+" on the end could work. Thanks for your input.

@PikaMug
Copy link
Owner

PikaMug commented May 13, 2024

@HorusApl Please delete or move your /Quests/lang folder and give this build a try:
https://ci.codemc.io/job/PikaMug/job/Quests/463/
https://ci.codemc.io/job/PikaMug/job/Quests/464/

Note the changes will only be apparent on Minecraft 1.9 or above.

@HorusApl
Copy link
Author

Definitely doesn't look quite right. Using 1.20.4 so should be compatible with whatever method you're trying. As well, I think doing the + would be just as confusing for a player as not listing a duration at all. Can the exact duration of each item not be listed? Potion, tipped arrow, etc?

image

@HorusApl
Copy link
Author

The + could mean Instant Health II, or for example the Jump Boost potion has the extended duration variant, and the II variant.

@HorusApl
Copy link
Author

I have tried using the details list override for stages, but it doesn't track progress as there doesn't seem to be a placeholder or any such means to tell the player how far in the quest they are if I use this method of doing things. Otherwise, this would be a good fit.

image

@PikaMug
Copy link
Owner

PikaMug commented May 14, 2024

Looks like I neglected to account for Splash and Lingering Potions. The "+" or roman numeral is based off of how the Minecraft Wiki differentiates them. I'm open to alternatives but again, no, the exact duration is not accessible via API (at least pre-1.14).

Overrides are a good alternative, but the progress count is a separate issue #2194

@PikaMug
Copy link
Owner

PikaMug commented May 15, 2024

@PikaMug PikaMug closed this as completed May 15, 2024
@HorusApl
Copy link
Author

Can confirm this has worked for potions and I see the + for all potion types, and the II correctly. Tipped arrows do not appear to have been affected by your changes and still appear pre-changes.
image

@HorusApl
Copy link
Author

Each of these are the lower duration, longer duration and Swiftness II, in the order pictured.

@PikaMug
Copy link
Owner

PikaMug commented May 16, 2024

At this point go ahead and make a separate ticket for arrows.

IAmSoccer added a commit to Advanced-Kind-MC/Quests that referenced this issue Jun 21, 2024
commit 8eec73b
Author: PikaMug <[email protected]>
Date:   Mon Jun 17 20:02:15 2024 -0400

    Hotfix for new item flags

commit aa79aeb
Author: PikaMug <[email protected]>
Date:   Mon Jun 17 19:47:34 2024 -0400

    Bump version

commit 6afb92c
Author: PikaMug <[email protected]>
Date:   Sat Jun 15 14:33:47 2024 -0400

    Compatibility with Minecraft 1.21

commit cc48f14
Author: PikaMug <[email protected]>
Date:   Sat Jun 15 14:14:43 2024 -0400

    Bump version

commit f182668
Author: PikaMug <[email protected]>
Date:   Sat Jun 8 16:54:51 2024 -0400

    New translations strings.yml (English, United Kingdom) (PikaMug#2213)

commit f68a9fb
Author: PikaMug <[email protected]>
Date:   Wed Jun 5 11:11:27 2024 -0400

    Forced quest messages can be empty, fixes PikaMug#2221

commit e39c5aa
Author: PikaMug <[email protected]>
Date:   Tue Jun 4 17:29:23 2024 -0400

    Clear other languages before load, see PikaMug#2220

commit 2a48e14
Author: PikaMug <[email protected]>
Date:   Sat Jun 1 06:05:26 2024 -0400

    Only advise updates for newer versions

commit d3ee8c6
Author: PikaMug <[email protected]>
Date:   Fri May 31 13:20:02 2024 -0400

    Use trivial block for selection, fixes PikaMug#2217

commit dde8aa2
Author: PikaMug <[email protected]>
Date:   Wed May 29 14:43:48 2024 -0400

    Only get package name for 1.8, part 2. See PikaMug#2216

commit 5d9bab9
Author: PikaMug <[email protected]>
Date:   Mon May 27 05:47:47 2024 -0400

    Update locale library, fixes PikaMug#2215

commit 3f9d43c
Author: PikaMug <[email protected]>
Date:   Wed May 22 20:38:13 2024 -0400

    End distribution on BuiltByBit. Bump version

commit c56d358
Author: PikaMug <[email protected]>
Date:   Wed May 22 19:44:37 2024 -0400

    Include base 1.8 for particles

commit 7ce87b8
Author: PikaMug <[email protected]>
Date:   Wed May 22 04:52:44 2024 -0400

    Update locale library

commit 4dacb45
Author: PikaMug <[email protected]>
Date:   Tue May 21 05:03:52 2024 -0400

    Clean up a few warnings, update library

commit a7e9e41
Author: PikaMug <[email protected]>
Date:   Tue May 21 04:57:30 2024 -0400

    Employ safer collections in factories, fixes PikaMug#2212

commit 0b19116
Merge: 3731623 abe97e5
Author: PikaMug <[email protected]>
Date:   Sun May 19 00:53:52 2024 -0400

    Merge branch 'main' of https://github.com/PikaMug/Quests

commit 3731623
Author: PikaMug <[email protected]>
Date:   Sun May 19 00:53:18 2024 -0400

    Only get package name for 1.8 versions

commit abe97e5
Author: PikaMug <[email protected]>
Date:   Fri May 17 23:03:50 2024 -0400

    New Crowdin updates (PikaMug#2210)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Spanish)

    * New translations strings.yml (Romanian)

    * New translations strings.yml (French)

    * New translations strings.yml (Arabic)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Danish)

    * New translations strings.yml (German)

    * New translations strings.yml (Finnish)

    * New translations strings.yml (Hungarian)

    * New translations strings.yml (Italian)

    * New translations strings.yml (Japanese)

    * New translations strings.yml (Korean)

    * New translations strings.yml (Dutch)

    * New translations strings.yml (Polish)

    * New translations strings.yml (Portuguese)

    * New translations strings.yml (Russian)

    * New translations strings.yml (Swedish)

    * New translations strings.yml (Turkish)

    * New translations strings.yml (Ukrainian)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (English)

    * New translations strings.yml (Vietnamese)

    * New translations strings.yml (Portuguese, Brazilian)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Thai)

    * New translations strings.yml (Croatian)

    * New translations strings.yml (Estonian)

    * New translations strings.yml (Pirate English)

    * New translations strings.yml (Filipino)

    * New translations strings.yml (Norwegian Bokmal)

    * New translations strings.yml (LOLCAT)

    * New translations strings.yml (English)

    * New translations strings.yml (Pirate English)

commit 15044ba
Author: PikaMug <[email protected]>
Date:   Fri May 17 22:55:15 2024 -0400

    Display tipped arrow level, fixes PikaMug#2208

commit 9f26e9d
Author: PikaMug <[email protected]>
Date:   Fri May 17 19:41:42 2024 -0400

    Show input when name not found, fixes PikaMug#2209

commit 181f4e0
Author: PikaMug <[email protected]>
Date:   Tue May 14 18:16:24 2024 -0400

    Expose potion level for 1.9+, part 3. See PikaMug#2205

commit 90f8f0e
Author: PikaMug <[email protected]>
Date:   Mon May 13 01:44:40 2024 -0400

    Expose potion level for 1.9+, part 2. See PikaMug#2205

commit 1fdb1b8
Author: PikaMug <[email protected]>
Date:   Mon May 13 01:20:38 2024 -0400

    Check bottle after shift-click, fixes PikaMug#2206

commit 3d6c0fa
Author: PikaMug <[email protected]>
Date:   Mon May 13 00:11:34 2024 -0400

    New Crowdin updates (PikaMug#2207)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Spanish)

    * New translations strings.yml (French)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Danish)

    * New translations strings.yml (German)

    * New translations strings.yml (Finnish)

    * New translations strings.yml (Hungarian)

    * New translations strings.yml (Italian)

    * New translations strings.yml (Japanese)

    * New translations strings.yml (Korean)

    * New translations strings.yml (Dutch)

    * New translations strings.yml (Polish)

    * New translations strings.yml (Portuguese)

    * New translations strings.yml (Russian)

    * New translations strings.yml (Turkish)

    * New translations strings.yml (Ukrainian)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (English)

    * New translations strings.yml (Vietnamese)

    * New translations strings.yml (Portuguese, Brazilian)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Thai)

    * New translations strings.yml (Pirate English)

    * New translations strings.yml (Filipino)

    * New translations strings.yml (LOLCAT)

commit 94fee10
Author: PikaMug <[email protected]>
Date:   Sun May 12 23:04:18 2024 -0400

    Expose potion level for 1.9+, fixes PikaMug#2205

commit 74a3d09
Author: PikaMug <[email protected]>
Date:   Fri May 10 01:24:04 2024 -0400

    Prevent brew result drag, fixes PikaMug#2203

commit d0c1f92
Author: PikaMug <[email protected]>
Date:   Sat May 4 20:55:21 2024 -0400

    New Crowdin updates (PikaMug#2196)

    * New translations strings.yml (French)

    * New translations strings.yml (Romanian)

    * New translations strings.yml (Spanish)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Danish)

    * New translations strings.yml (German)

    * New translations strings.yml (Finnish)

    * New translations strings.yml (Hungarian)

    * New translations strings.yml (Italian)

    * New translations strings.yml (Japanese)

    * New translations strings.yml (Korean)

    * New translations strings.yml (Dutch)

    * New translations strings.yml (Polish)

    * New translations strings.yml (Russian)

    * New translations strings.yml (Swedish)

    * New translations strings.yml (Turkish)

    * New translations strings.yml (Ukrainian)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (English)

    * New translations strings.yml (Vietnamese)

    * New translations strings.yml (Portuguese, Brazilian)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Persian)

    * New translations strings.yml (Thai)

    * New translations strings.yml (Croatian)

    * New translations strings.yml (Pirate English)

    * New translations strings.yml (Filipino)

    * New translations strings.yml (Norwegian Bokmal)

    * New translations strings.yml (LOLCAT)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Spanish)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Spanish)

    * New translations strings.yml (Romanian)

    * New translations strings.yml (French)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Danish)

    * New translations strings.yml (German)

    * New translations strings.yml (Finnish)

    * New translations strings.yml (Hungarian)

    * New translations strings.yml (Italian)

    * New translations strings.yml (Japanese)

    * New translations strings.yml (Korean)

    * New translations strings.yml (Dutch)

    * New translations strings.yml (Polish)

    * New translations strings.yml (Portuguese)

    * New translations strings.yml (Russian)

    * New translations strings.yml (Turkish)

    * New translations strings.yml (Ukrainian)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (English)

    * New translations strings.yml (Vietnamese)

    * New translations strings.yml (Portuguese, Brazilian)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Thai)

    * New translations strings.yml (Croatian)

    * New translations strings.yml (Pirate English)

    * New translations strings.yml (Filipino)

    * New translations strings.yml (LOLCAT)

    * New translations strings.yml (English)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Pirate English)

    * New translations strings.yml (English)

commit 6c4f0b2
Author: PikaMug <[email protected]>
Date:   Sat May 4 20:44:27 2024 -0400

    Update strings.yml

commit a40054d
Author: PikaMug <[email protected]>
Date:   Fri May 3 13:02:55 2024 -0400

    Divert tag color to lang files, part 2. Fixes PikaMug#2202

commit a6635bb
Author: PikaMug <[email protected]>
Date:   Fri May 3 10:11:48 2024 -0400

    Divert tag color to lang files, part 1. See PikaMug#2202

commit c31362b
Author: PikaMug <[email protected]>
Date:   Sun Apr 21 08:48:13 2024 -0400

    Update mcMMO Overhaul party support via Unite

commit 63f6ea0
Author: PikaMug <[email protected]>
Date:   Thu Apr 18 19:17:16 2024 -0400

    Check if player online for fail quest, see PikaMug#2199

commit d8a7add
Author: PikaMug <[email protected]>
Date:   Wed Apr 17 06:00:35 2024 -0400

    Check if player online for Action timer, see PikaMug#2199

commit 605e63d
Author: PikaMug <[email protected]>
Date:   Wed Apr 17 04:21:24 2024 -0400

    Use offline player on quit, fixes PikaMug#2199

commit c58e591
Author: PikaMug <[email protected]>
Date:   Sat Apr 13 22:59:17 2024 -0400

    Shade NBT API by @tr7zw

commit 00046d1
Author: PikaMug <[email protected]>
Date:   Fri Apr 12 20:23:09 2024 -0400

    Check for bad split in Quests Journal

commit 085cb1e
Author: PikaMug <[email protected]>
Date:   Wed Mar 20 06:14:11 2024 -0400

    Remove unused dependency information

commit 190e4f4
Author: PikaMug <[email protected]>
Date:   Wed Mar 20 06:09:26 2024 -0400

    Bump version

commit 2c1a0e8
Author: PikaMug <[email protected]>
Date:   Tue Mar 19 03:52:57 2024 -0400

    New Crowdin updates (PikaMug#2195)

    * New translations strings.yml (French)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Danish)

    * New translations strings.yml (Dutch)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (Vietnamese)

commit f908d1c
Author: PikaMug <[email protected]>
Date:   Tue Mar 19 03:51:56 2024 -0400

    Remove legacy objective message code

commit a4446cc
Author: PikaMug <[email protected]>
Date:   Fri Mar 15 07:10:13 2024 -0400

    Permit module error for missing dependency

commit f440ea4
Author: PikaMug <[email protected]>
Date:   Sat Mar 2 02:47:29 2024 -0500

    Restore missing NPC effects, see PikaMug#2189

commit ff4dcac
Author: PikaMug <[email protected]>
Date:   Sat Mar 2 02:34:31 2024 -0500

    Null check between stage. Bump version

commit 9a5b572
Author: PikaMug <[email protected]>
Date:   Sun Feb 25 20:50:21 2024 -0500

    New Crowdin updates (PikaMug#2185)

    * New translations strings.yml (Romanian)

    * New translations strings.yml (French)

    * New translations strings.yml (Spanish)

    * New translations strings.yml (Arabic)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Danish)

    * New translations strings.yml (German)

    * New translations strings.yml (Finnish)

    * New translations strings.yml (Hungarian)

    * New translations strings.yml (Italian)

    * New translations strings.yml (Japanese)

    * New translations strings.yml (Korean)

    * New translations strings.yml (Dutch)

    * New translations strings.yml (Polish)

    * New translations strings.yml (Portuguese)

    * New translations strings.yml (Russian)

    * New translations strings.yml (Swedish)

    * New translations strings.yml (Turkish)

    * New translations strings.yml (Ukrainian)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (English)

    * New translations strings.yml (Vietnamese)

    * New translations strings.yml (Portuguese, Brazilian)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Persian)

    * New translations strings.yml (Thai)

    * New translations strings.yml (Croatian)

    * New translations strings.yml (Estonian)

    * New translations strings.yml (Pirate English)

    * New translations strings.yml (Filipino)

    * New translations strings.yml (Norwegian Bokmal)

    * New translations strings.yml (Serbian (Latin))

    * New translations strings.yml (LOLCAT)

    * New translations strings.yml (Belarusian)

commit a153702
Author: PikaMug <[email protected]>
Date:   Fri Feb 23 13:19:55 2024 -0500

    Welcome to Quests 5

commit f619b6c
Author: PikaMug <[email protected]>
Date:   Fri Feb 23 13:16:19 2024 -0500

    Always let player login find compass target

commit d75aa9b
Author: PikaMug <[email protected]>
Date:   Tue Feb 20 17:25:41 2024 -0500

    Reduce erroneous module event dependency messages

commit 307326d
Author: PikaMug <[email protected]>
Date:   Thu Feb 15 14:55:30 2024 -0500

    Remove legacy events permissions

commit 8eae46a
Author: PikaMug <[email protected]>
Date:   Thu Feb 15 14:32:46 2024 -0500

    Remove YAML-only pointsall subcommand

commit 0cc6d77
Author: PikaMug <[email protected]>
Date:   Thu Feb 15 13:19:23 2024 -0500

    New Crowdin updates (PikaMug#2184)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Romanian)

    * New translations strings.yml (French)

    * New translations strings.yml (Spanish)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Danish)

    * New translations strings.yml (German)

    * New translations strings.yml (Hungarian)

    * New translations strings.yml (Italian)

    * New translations strings.yml (Japanese)

    * New translations strings.yml (Korean)

    * New translations strings.yml (Dutch)

    * New translations strings.yml (Polish)

    * New translations strings.yml (Russian)

    * New translations strings.yml (Swedish)

    * New translations strings.yml (Turkish)

    * New translations strings.yml (Ukrainian)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (English)

    * New translations strings.yml (Vietnamese)

    * New translations strings.yml (Portuguese, Brazilian)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Persian)

    * New translations strings.yml (Thai)

    * New translations strings.yml (Croatian)

    * New translations strings.yml (Pirate English)

    * New translations strings.yml (Filipino)

    * New translations strings.yml (LOLCAT)

commit f0eb129
Author: PikaMug <[email protected]>
Date:   Thu Feb 15 12:38:58 2024 -0500

    Match custom objectives to other prompt titles

commit d35301d
Author: PikaMug <[email protected]>
Date:   Thu Feb 15 12:31:34 2024 -0500

    Process custom requirement display placeholders

commit a85c2d4
Author: PikaMug <[email protected]>
Date:   Thu Feb 8 00:51:13 2024 -0500

    Update NPC effect thread (breaking)

commit 5ebeb77
Author: PikaMug <[email protected]>
Date:   Thu Jan 18 16:46:34 2024 -0500

    Require amount for legacy items

commit 76397b6
Author: PikaMug <[email protected]>
Date:   Thu Jan 18 03:00:02 2024 -0500

    Update method comments

commit 2695d40
Author: PikaMug <[email protected]>
Date:   Wed Jan 17 00:29:46 2024 -0500

    Update locale library, fixes PikaMug#2178

commit c91e2f6
Author: PikaMug <[email protected]>
Date:   Tue Jan 16 21:33:46 2024 -0500

    Null check before compass comparison, fixes PikaMug#2182

commit 38d5808
Author: PikaMug <[email protected]>
Date:   Mon Jan 15 23:30:28 2024 -0500

    Check for ZNPCsPlus before class, fixes PikaMug#2180

commit 3f2465f
Author: PikaMug <[email protected]>
Date:   Fri Jan 12 05:17:07 2024 -0500

    Clear extra space from custom objective display

commit 3e59fc5
Author: PikaMug <[email protected]>
Date:   Thu Jan 11 17:23:39 2024 -0500

    Parse format tokens in objective message

commit 3413895
Author: PikaMug <[email protected]>
Date:   Mon Jan 8 19:06:58 2024 -0500

    Reset target of Quest Compass on quit

commit 969bac0
Author: PikaMug <[email protected]>
Date:   Tue Jan 2 21:33:28 2024 -0500

    Incomplete stage timer workaround, fixes PikaMug#2172

commit 82de833
Author: PikaMug <[email protected]>
Date:   Mon Jan 1 17:53:34 2024 -0500

    Update target of Quest Compass for OP

commit a587a0c
Author: PikaMug <[email protected]>
Date:   Mon Dec 11 21:21:47 2023 -0500

    Load amount of legacy items

commit f565a6d
Author: PikaMug <[email protected]>
Date:   Mon Dec 11 20:36:01 2023 -0500

    Bump version

commit 0675b35
Author: PikaMug <[email protected]>
Date:   Sun Dec 10 21:23:29 2023 -0500

    Remove confusing registered events message

commit 7e42ec5
Author: PikaMug <[email protected]>
Date:   Sat Dec 9 19:55:52 2023 -0500

    Improve incrementation of quest IDs

commit 577f4d1
Author: PikaMug <[email protected]>
Date:   Wed Dec 6 18:50:17 2023 -0500

    New Crowdin updates (PikaMug#2158)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Persian)

commit 5805b47
Author: PikaMug <[email protected]>
Date:   Wed Dec 6 18:47:54 2023 -0500

    New quest IDs use leading zeros

commit 45a64a0
Author: PikaMug <[email protected]>
Date:   Wed Dec 6 02:14:20 2023 -0500

    Move storage files to nested folder

commit 5c5d4dd
Author: PikaMug <[email protected]>
Date:   Tue Dec 5 01:18:06 2023 -0500

    Specify jar name on load error, fixes PikaMug#2166

commit 7a58153
Author: PikaMug <[email protected]>
Date:   Tue Dec 5 00:26:33 2023 -0500

    Prevent duplicate ZNPCsPlus 2.x listener

commit 3359fd3
Author: PikaMug <[email protected]>
Date:   Mon Dec 4 23:36:22 2023 -0500

    Audio on original video got yoinked

commit bc65715
Author: PikaMug <[email protected]>
Date:   Mon Dec 4 02:30:34 2023 -0500

    Merely set to zero points, see PikaMug#2167

commit dfd987d
Author: PikaMug <[email protected]>
Date:   Sun Dec 3 22:39:00 2023 -0500

    Target quest points must be positive, fixes PikaMug#2167

commit c9ae34c
Author: PikaMug <[email protected]>
Date:   Sun Dec 3 22:30:52 2023 -0500

    Adjust log output

commit 85c99ba
Author: PikaMug <[email protected]>
Date:   Sun Dec 3 22:29:56 2023 -0500

    Check NPC registry at startup, fixes PikaMug#2168

commit 8507ebc
Author: PikaMug <[email protected]>
Date:   Tue Nov 28 17:59:00 2023 -0500

    Correct loading of locations reached, fixes PikaMug#2164

commit 24272a7
Author: D3v1s0m <[email protected]>
Date:   Fri Nov 17 09:29:01 2023 +0530

    Parse display name for ZNPCsPlus (PikaMug#2163)

commit 46e5364
Author: PikaMug <[email protected]>
Date:   Wed Nov 15 15:08:21 2023 -0500

    Undo 2e6ab6c but apply to 2.x since API can be null

commit 90a38e0
Author: D3v1s0m <[email protected]>
Date:   Wed Nov 15 23:04:29 2023 +0530

    Add support for ZNPCsPlus 2.x (PikaMug#2161)

commit 2e6ab6c
Author: PikaMug <[email protected]>
Date:   Sat Nov 11 00:30:25 2023 -0500

    Verify compatibility of ZNPCsPlus version

commit 4a935b0
Author: PikaMug <[email protected]>
Date:   Sat Nov 11 00:28:24 2023 -0500

    Bump version

commit 521f7ab
Author: PikaMug <[email protected]>
Date:   Sat Nov 4 19:54:49 2023 -0400

    New Crowdin updates (PikaMug#2149)

    * New translations strings.yml (Persian)

    * New translations strings.yml (Persian)

    * New translations strings.yml (Polish)

    * New translations strings.yml (Persian)

    * New translations strings.yml (Persian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Persian)

    * New translations strings.yml (Belarusian)

    * New translations strings.yml (Persian)

    * New translations strings.yml (Norwegian Bokmal)

commit 8240d05
Author: PikaMug <[email protected]>
Date:   Thu Nov 2 00:19:30 2023 -0400

    Restore saving of completed quests, fixes PikaMug#2155

commit 977a386
Author: PikaMug <[email protected]>
Date:   Wed Nov 1 18:31:37 2023 -0400

    Weak loading of legacy items, see PikaMug#2151

commit 6c15c41
Author: PikaMug <[email protected]>
Date:   Tue Oct 31 23:48:40 2023 -0400

    Adhere to ISO 8601, fixes PikaMug#2130

commit 162db47
Author: PikaMug <[email protected]>
Date:   Tue Oct 31 00:08:32 2023 -0400

    Fix progress for singular objectives, fixes PikaMug#2152

commit 07c1ae8
Author: PikaMug <[email protected]>
Date:   Mon Oct 30 22:21:51 2023 -0400

    Workaround invalid custom objective string

commit 10fc926
Author: PikaMug <[email protected]>
Date:   Sat Oct 28 00:03:52 2023 -0400

    Add ZNPCsPlus to softdepend

commit fa2c34d
Author: PikaMug <[email protected]>
Date:   Sat Oct 28 00:03:08 2023 -0400

    Bump version

commit 16ee583
Author: PikaMug <[email protected]>
Date:   Mon Oct 9 20:56:29 2023 -0400

    Interface isEnabled method

commit 19c6f02
Author: PikaMug <[email protected]>
Date:   Mon Oct 9 18:42:19 2023 -0400

    Refactor current quests method

commit f5f872b
Author: PikaMug <[email protected]>
Date:   Sun Oct 1 22:30:43 2023 -0400

    New Crowdin updates (PikaMug#2136)

    * New translations strings.yml (Norwegian Bokmal)

    * New translations strings.yml (Norwegian Bokmal)

    * New translations strings.yml (French)

    * New translations strings.yml (Spanish)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Danish)

    * New translations strings.yml (German)

    * New translations strings.yml (Finnish)

    * New translations strings.yml (Hungarian)

    * New translations strings.yml (Italian)

    * New translations strings.yml (Japanese)

    * New translations strings.yml (Korean)

    * New translations strings.yml (Dutch)

    * New translations strings.yml (Polish)

    * New translations strings.yml (Portuguese)

    * New translations strings.yml (Russian)

    * New translations strings.yml (Turkish)

    * New translations strings.yml (Ukrainian)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (English)

    * New translations strings.yml (Vietnamese)

    * New translations strings.yml (Portuguese, Brazilian)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Thai)

    * New translations strings.yml (Croatian)

    * New translations strings.yml (Pirate English)

    * New translations strings.yml (Filipino)

    * New translations strings.yml (LOLCAT)

    * New translations strings.yml (Italian)

    * New translations strings.yml (English)

    * New translations strings.yml (Pirate English)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (French)

    * New translations strings.yml (Spanish)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Czech)

    * New translations strings.yml (Danish)

    * New translations strings.yml (German)

    * New translations strings.yml (Hungarian)

    * New translations strings.yml (Japanese)

    * New translations strings.yml (Korean)

    * New translations strings.yml (Dutch)

    * New translations strings.yml (Polish)

    * New translations strings.yml (Russian)

    * New translations strings.yml (Turkish)

    * New translations strings.yml (Ukrainian)

    * New translations strings.yml (Chinese Simplified)

    * New translations strings.yml (Chinese Traditional)

    * New translations strings.yml (Vietnamese)

    * New translations strings.yml (Portuguese, Brazilian)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Thai)

    * New translations strings.yml (Filipino)

    * New translations strings.yml (Norwegian Bokmal)

    * New translations strings.yml (LOLCAT)

commit 720538d
Author: PikaMug <[email protected]>
Date:   Sun Oct 1 10:53:50 2023 -0400

    Quests 5 (PikaMug#2146)

    * Begin refactoring, update license. Bump version

    * Update locale library

    * More refactoring

    * Still more refactoring

    * Even more refactoring

    * Cut missing quest requirement, fixes PikaMug#2131

    * Yet more refactoring

    * Refactoring intensifies

    * Wreaks of refactoring

    * Add debug warning for PikaMug#2138

    * Refactoring too stronk

    * Such refactoring wow

    * Do not assume click index, fixes PikaMug#2143

    * Bump version

    * Update headers

commit e0970db
Author: PikaMug <[email protected]>
Date:   Fri Jun 30 20:35:43 2023 -0400

    Update locale library

commit 93e57c2
Author: PikaMug <[email protected]>
Date:   Mon Jun 26 22:31:06 2023 -0400

    Catch unsupported ZNPCsPlus versions

commit 45235ec
Author: PikaMug <[email protected]>
Date:   Fri Jun 23 23:13:04 2023 -0400

    Fix duplicate custom objective display text

commit d08df18
Author: PikaMug <[email protected]>
Date:   Tue Jun 20 23:14:32 2023 -0400

    Delay close of NPC GUI, fixes PikaMug#2120. Bump version

commit d76082d
Author: PikaMug <[email protected]>
Date:   Mon Jun 19 23:45:10 2023 -0400

    Ensure UUID is not null before script, fixes PikaMug#2127

commit 3eb180a
Author: PikaMug <[email protected]>
Date:   Sat Jun 17 17:53:36 2023 -0400

    New Crowdin updates (PikaMug#2122)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Bulgarian)

    * New translations strings.yml (Russian)

commit 870eb02
Author: Drăghiciu Nicolae <[email protected]>
Date:   Fri Jun 9 02:09:35 2023 +0300

    Update AstralBooks to latest version (PikaMug#2118)

commit af1469a
Author: PikaMug <[email protected]>
Date:   Wed Jun 7 18:09:48 2023 -0400

    Permit yes/no input from source or client, fixes PikaMug#2117

commit 90bf028
Author: PikaMug <[email protected]>
Date:   Tue Jun 6 22:51:28 2023 -0400

    Reveal display names and update library, fixes PikaMug#2116

commit 56a75ac
Author: PikaMug <[email protected]>
Date:   Thu Jun 1 23:41:43 2023 -0400

    Cancel timer does not auto-fail quest, fixes PikaMug#2113

commit 8d4b39c
Author: PikaMug <[email protected]>
Date:   Sat May 20 21:55:20 2023 -0400

    Book titles can be null, fixes PikaMug#2108

commit 5b63533
Author: PikaMug <[email protected]>
Date:   Sat May 20 16:47:21 2023 -0400

    Bump version 🙄

commit 5e2e122
Author: PikaMug <[email protected]>
Date:   Mon May 15 21:29:40 2023 -0400

    Support PAF Extended for Bungeecord using Unite

commit 7ae0551
Author: PikaMug <[email protected]>
Date:   Sun May 14 21:21:03 2023 -0400

    New Crowdin updates (PikaMug#2092)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Indonesian)

    * New translations strings.yml (Ukrainian)

    * New translations strings.yml (Turkish)

commit 068ac6f
Author: PikaMug <[email protected]>
Date:   Sun May 14 21:08:01 2023 -0400

    Finalize dependency

commit a34978a
Author: PikaMug <[email protected]>
Date:   Sun May 14 10:27:49 2023 -0400

    Require plugin at offer creation, fixes PikaMug#2102

commit efb42f4
Author: PikaMug <[email protected]>
Date:   Fri May 12 23:51:12 2023 -0400

    Update locale library, fixes PikaMug#2103

commit b3bd277
Author: PikaMug <[email protected]>
Date:   Fri May 12 18:25:17 2023 -0400

    Switch dependency

commit 7f821a8
Author: PikaMug <[email protected]>
Date:   Wed May 10 18:24:19 2023 -0400

    Update dependency

commit b2b2014
Author: PikaMug <[email protected]>
Date:   Sun May 7 14:16:27 2023 -0400

    Update locale library, fixes PikaMug#2099
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants