With other queue script i can reproduce the error. If steam is required by the queue to login and the user tries to join with steam closed, the queue will kick them, but the vrp player initialization starts anyway, since it is triggered by the same event the queue uses. When this happens the user cannot play in the server until a restart occurs, since they won’t be able to load their character’s data.
Hello i’m getting.
SCRIPT ERROR: citizen:/scripting/lua/scheduler.lua:924: No such export GetQueueExports in resource connectqueue
Don’t rename the resource
i didn’t the name still ConnectQueue
Does this script work in newest fxserver? I see some errors
I have no problems with it
Can anyone tell me if there is a possibility to reserve slots for certain steam ids like with FiveMQueue? I like this script a lot more, just need to always ensure that one of our admins can always have a slot incase of issues and we have to kick/ban.
2 questions
I added the script and it changes the server name, how can i fix this?
Whats the highest rank 1 or 100?
If you read the information provided in the release, you would have the answers to all of your questions.
Do you know if its possible to do a query on the script to get a queue count for an external display on like a launcher program?
Where can i find a list of commands for connectqueue, can’t seem to find documentation anywhere,
Saw one comment that was the queue setpos 20 1 , which is awesome, but as far as removing someone, or other commands what are they?
You can type “queue commands” and it will list them all, it doesn’t show usage information tho.
Yes it is possible, you could create an http handler and respond with the queue count using the exported functions. Could also use SetConvarServerInfo, and access it from serverip:port/info.json I believe.
Hello,
I recently added your script to my server! An awesome and very useful script for me but it doesn’t load it for a weird reason. Everything is happening correctly the countdown, the messages if your not whitelisted or if you don’t run steam but when it starts loading all the scripts it pops up this
I would really appreciate any help!
Thanks,
Wiraf
does this stop people from joining my server because people join then timeout on the loading screen
How do I add someone to the priority queue and where do I put it
I am wondering if there is the possibility to changhe the Snail to maybe a Mango or something like that.
Would it be possible to link this to discord_perms so if ppl have a certain role they are higher on the list?
Hey,
I am having a problem recently where it is saying Steam should be running even though steam is running. Also white the “whitelist”, it is saying I am not whitelisted even though i used the recommended site.
Regards,
Caden
I have recreated the queue time freeze from client side. (Also me=complete scripting noob, sorry for any lack of technical knowledge and terms in advance)
Background: I been playing on nopixel where the queue is bananas with only like a 2 minute hold. My connect queue timer freezes at least once every hour, so if im not watching for the freeze during the hours of queuing like a hawk and reconnecting immediately, I go to the back of the line and never get in.
To solve my problem, tried to create a batch script. I wrote a batch that checks for an established TCP connection to the server and reconnects using the steam child cmd command if the connection does not exist. This worked great only when there was an actual error message in the fivem app for a disconnection or if I cancelled the queue myself, but did not work at all for the queue timer freeze problem.
From that I learned , client side, my PC was still viewing the TCP connection to the server as established during these freezes, regardless of how long the timer is actually frozen and set out to recreate the freeze.
STEPS:
(windows 10 Pro, connecting to Nopixel (FXServer-master SERVER v1.0.0.2371))
1: unplugging Ethernet cable momentarily = Timer freezes, no errors populate.
I just unplug the cable long enough to cause an interruption to the signal but not long enough for windows to throw me any kind of “no internet connection” message and I get same result: queue timer freezes, no error rendered on fivem, Netstat cmd still shows the connection to the server as “established,” and my script does not trigger its connect command. I suppose that any other brief interruption to the connection would cause the same result.
Question I need answered to make my script work:
does there exist any or is there any reasonable way to create a client side log for the queue timer that I could mine for a trigger for my batch script?
Hope the info helps you solve the problem, and thanks in advance for any help with my question.