FastLogin
FastLogin copied to clipboard
Server is not fully started yet. Please retry
What happened?
I installed latest build of FastLogin https://ci.codemc.io/job/Games647/job/FastLogin/1192/ and ProtocolLib 5.0.0 and it still doesn't work
lastest.log https://pastebin.com/raw/hyt1vJLt
What did you expect?
works fastlogin fine
Steps to reproduce
install lastest fastlogin build and protocollib 5.0.0
Plugin list
FastLogin, ProtocolLib, SkinsRestorer
Configuration file
https://pastebin.com/PLXRhvvZ
Server log
https://pastebin.com/raw/hyt1vJLt
Plugin version
v1.12-SNAPSHOT-971b0e1
Platform
Spigot
Relevance
- [X] I tried the latest build (build refers to development builds not necessary a release version)
- [X] I checked for existing tickets - If there are, please vote them with a thumps reaction and not create new ones
It says it in the server log:
[00:46:27] [Server thread/WARN]: [FastLogin] No support offline Auth plugin found. [00:46:27] [Server thread/WARN]: [FastLogin] No auth plugin were found by this plugin (other plugins could hook into this after the initialization of this plugin)and BungeeCord is deactivated. Either one or both of the checks have to pass in order to use this plugin
so how can i hook fastlogin to my own plugin and make fastlogin supporting my plugin for correctly load? i did depend fastlogin to my plugin.yml in my plugin and it still doesn't works
and after add to soft-depend fastlogin plugin.yml my own plugin still it shows

You don't need to modify FastLogin, but you have to register your hook here: https://github.com/games647/FastLogin/blob/971b0e1f09cd8a0281931c4e782fbc0950c480cb/core/src/main/java/com/github/games647/fastlogin/core/shared/FastLoginCore.java#L292
After FastLogin loaded, but before the world ticks (is fully loaded). Furthermore, I see your auth plugin is not loaded in the server log. It needs to be installed in order to use it.
test class https://pastebin.com/dzMSZkwu main class https://pastebin.com/Lv7Qc7fe
and it shows https://pastebin.com/BpAE8xgE
The error means that fastlogin isn't installed. You need to have both installed.
fastlogin are installed https://pastebin.com/XimZQthw
maybe i did it incorrect? i mean test class and main class
You are initializing the fastLoginBukkit field during class initialization not during the onEnable method. The class file is loaded for Java yet at this instant.