#Signup feature failed

13 messages · Page 1 of 1 (latest)

dusky drum
#

Hi, I have setup a tempate, create a signup event.
and it created successfully but whenever someone including me try to signup in the event, it returned error message below:

"Something very very bad happened. Try the command again, or contact an admin"

I have retried making the event twice, (cancelled the previous one) still same result ,dunno whats wrong.

screenshot attached.

peak geode
#

Hiya!
@dusky drum
If the signup is borked beyond recognition (it sometimes is) the only way to delete is through /signup remove
That has some more "power".
So please try that.

On top, it seems you've found a nice incompatibility with discord.
Discord can have at max 25 options.

You can do 2 things.

  1. Split it into 25 + 5.
  2. Make a group infinite (-1 as "size"). That will allow an infinite amount of signups.

I will try and fix the logic so that it will still support 30 but only picking the top 25 available slots.
Might take a little bit before it's released and deployed

dusky drum
#

oh wow, I wil ltry that, super thnks for the help!

peak geode
dusky drum
#

Awesome its working now, Thanks again for the helpful answer!

floral meteor
#

I have a situation where the one of the aircraft selections isn't working. The JSON works as far as adding the template and all other aircraft selections work fine. When not choosing flight number and desired tasking this is the message received:

#

When selecting flight number and desired tasking, this is the message recieved:

#

Here is the JSON, which checks out in both notepad++ and vs code:

peak geode
#

@floral meteor
Seems to be a bug when the "Taskings" list is ommitted from the root structure.
I've added some default taskings. Those should all be overwritten, so no worries.
Can you try to do /signuptemplate update with the below JSON and create the signup once more?


{
  "SignUpConfigName": "Chapter 3 Retribution",
  "GroupConfigs": [
    {
      "Name": "Sword Fish",
      "Role": "A-4E",
      "AmountInSlot": 12,
      "GroupSpecificTasking": [
        "CAP",
        "CAS",
        "SEAD",
        "DEAD",
        "BAI",
        "OCA Runway",
        "OCA Aircraft",
        "SEAD Escort",
        "SEAD Sweep"
      ]
    },
    {
      "Name": "Grouper",
      "Role": "UH-1H",
      "IsDualSeater": true,
      "AmountInSlot": 12,
      "GroupSpecificTasking": [
        "CAS",
        "BAI",
        "STRIKE",
        "Transport",
        "Air Assault",
        "Armed Recon"
      ]
    },
    {
      "Name": "Orca",
      "Role": "F-4E-45MC",
      "IsDualSeater": true,
      "AmountInSlot": 12,
      "GroupSpecificTasking": [
        "CAP",
        "CAS",
        "Intercept",
        "STRIKE",
        "Anti-ship",
        "SEAD",
        "DEAD",
        "Escort",
        "BAI",
        "Fighter Sweep",
        "OCA Runway",
        "OCA Aircraft",
        "SEAD Escort",
        "SEAD Sweep",
        "Armed Recon"
      ]
    },
    {
      "Name": "Mako",
      "Role": "F-1EE",
      "AmountInSlot": 12,
      "GroupSpecificTasking": [
        "CAP",
        "CAS",
        "Intercept",
        "STRIKE",
        "BAI",
        "OCA Runway",
        "OCA Aircraft",
        "Escort",
        "Fighter Sweep"
      ]
    },
    {
      "Name": "Barracuda",
      "Role": "F-5E",
      "AmountInSlot": 12,
      "GroupSpecificTasking": [
        "CAP",
        "Intercept",
        "DEAD",
        "Escort",
        "BAI",
        "Fighter Sweep",
        "STRIKE",
        "OCA Aircraft"
      ]
    },
    {
      "Name": "Eagle",
      "Role": "MiG-19P",
      "AmountInSlot": 12,
      "GroupSpecificTasking": [
        "CAP",
        "CAS",
        "Intercept",
        "Fighter Sweep",
        "Escort",
        "BAI",
        "OCA Aircraft"
      ]
    },
    {
      "Name": "Hawk",
      "Role": "MiG-21bis",
      "AmountInSlot": 12,
      "GroupSpecificTasking": [
        "CAP",
        "Intercept",
        "Escort",
        "Fighter Sweep"
      ]
    },
    {
      "Name": "Falcon",
      "Role": "F-1CE",
      "AmountInSlot": 12,
      "GroupSpecificTasking": [
        "CAS",
        "CAS",
        "Intercept",
        "BAI",
        "Escort",
        "Fighter Sweep",
        "OCA Runway",
        "OCA Aircraft"
      ]
    },
    {
      "Name": "Osprey",
      "Role": "Mi-8TV2",
      "AmountInSlot": 4,
      "GroupSpecificTasking": [
        "CAS",
        "OCA Aircraft",
        "BAI",
        "Armed Recon",
        "Transport",
        "Air Assault"
      ]
    }
  ],
  "Taskings": [
    "CAP",
    "SEAD",
    "STRIKE"
  ]
}

floral meteor