Plugin Help Group Manege error

Discussion in 'Plugin Help/Development/Requests' started by Crazzeh, Jun 14, 2016.

Thread Status:
Not open for further replies.
  1. Offline

    Crazzeh

    Hello! I was working on my Groups when a random error showed I know nothing about errors and was hoping you could help me! Please help me if possible.

    Permissions Groups: (Not finished but I can't do anything with errors!) http://pastebin.com/8DiasdJm
    Error: http://pastebin.com/sUh6fZ3N

    Your help will be greatly appreciated!
     
  2. Offline

    Marnixje90

    Hey!

    You do have the inheritance of 'member' but you dont have the group 'member'

    and no group is default: true
     
  3. Offline

    Crazzeh

    The member class is on line 231 and the default class is on line 140
     
  4. Offline

    OTF Catastrophe

    Heres a fixed version of your file: http://pastebin.com/bVphxFLx

    1. You cannot put stuff after the colons of Strings in config. You have stuff like:
    inheritance: [scount]
    You cant do that ^^^ You'd do
    inheritance:
    - scout
    2. Please learn how to configure the file the correct way before attempting to use the plugin. Otherwise youll just keep coming back with more errors.
     
  5. Online

    timtower Administrator Administrator Moderator

  6. Offline

    OTF Catastrophe

    The way Pex works is it just looks for the string list, it's like trying to get a value from:

    Code:
    String: [Integer]
        - [Idk another Integer]
    It would give you an error telling you that it wouldn't be allowed, actually just went through that issue today with one of my current plugins aha. That's why it wouldn't work because Pex couldn't figure out what String list to get.
     
  7. Online

    timtower Administrator Administrator Moderator

    @OTF Catastrophe Shouldn't matter as the [] thing is also a list.
    Might look at that myself someday.
     
  8. Offline

    OTF Catastrophe

    Let me know what you find out when you go over it? (Totally up to you)

    But from experience and fixing tons of peoples files I've always found pex to only support one of the types of String Lists at once.
     
Thread Status:
Not open for further replies.

Share This Page