1. Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

Dismiss Notice
This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Script ★ GiveAll ★ [1.8 - 1.12] [GUI] [100% customizable] Beta 4.3

Create and manage GiveAlls (via GUI) !

  1. noftaly
    Contributors:
    noftaly
    Supported Minecraft Versions:
    • 1.8, 1.9, 1.10, 1.11, 1.12
    I’m french, so sorry for the errors. If in the configuration or in the description there is errors, please let me know (via PM) and I will correct them.

    Betas 3.1 and before works perfectly on 1.8.x, 1.9.x, 1.10.x, 1.11.x, 1.12.x
    (thanks to @gamingshow and @Mikioul for the test)

    Betas 3.2 and over were not tested in 1.11.x, 1.10.x, 1.9.x, 1.8.x, but I think they will work


    [​IMG]

    Description

    GiveAll is a skript with allows you to create GiveAll, to give items to your players ! You can create events where your players win some stuff ! All the messages are customizable


    Features

    ▶ Create as many GiveAll as you want
    ▶ Remove GiveAlls !
    ▶ Rename GiveAlls !
    ▶ The names/lore/enchants/NBT of the items are saved
    ▶ Customise the countdown before the GiveAll (In a GUI or not)
    ▶ Customize every messages !
    ▶ Duplicate GiveAlls
    ▶ Add/Remove/Edit a condition for receiving an item (15 are availables: perm, msg-contain, msg-same, in-region, not-in-region, minkills, maxkills, mindeath, maxdeath, minmoney, maxmoney, in-world, not-in-world, minplaytime, maxplaytime)
    ▶ Items are give every 1 to 3 seconds !
    ▶ Set or not and change when you want the duration of a GiveAll ! (In a GUI or with a command)
    ▶ Copy all the items of a GiveAll in another
    ▶ Multi-Page system
    ▶ Clear the content of a GiveAll
    ▶ You can see the list of all your GiveAll in a GUI wich allows you to delete/start-stop/modify them !
    ▶ Edits the items of a GiveAll by a GUI
    ▶ Give the items you’re holding to everybody, without having to create a GiveAll
    ▶ Messages of the /ga help are clickable !
    ▶ If your skript is not up to date, you will have a message with all the new feature, and if the update is important or not.


    Commands and permissions

    Command : /giveall (or /ga)
    <> : obligatory
    [] : optional
    Code (Text):
    1. ∙ giveall create <GiveAll’s name> [Duration] → Create a GiveAll, and set its duration (in seconds)
    2. ∙ giveall start <GiveAll’s name> [i] → Start a GiveAll (If "i" is set, the GiveAll will start instantly (without the countdown)
    3. ∙ giveall stop → Stop the current GiveAll
    4. ∙ giveall add <GiveAll’s name> → Add the held’s item to the GiveAll
    5. ∙ giveall edit[item] → Open the GUI to modify items gf the GivAll
    6. ∙ giveall delete <GiveAll’s name> → Delete a GiveAll
    7. ∙ giveall list [gui] → See the GiveAll’s list (if "gui" is set, the list will be in a GUI)
    8. ∙ giveall givehand → Give to everybody the held’s item
    9. ∙ giveall rename <GiveAll’s name> <new name> → rename a GiveAll
    10. ∙ giveall clear <GiveAll’s name> → Delete all the items of a GiveAll
    11. ∙ giveall copy <GiveAll 1> <GiveAll2> → Copy the items of GiveAll1 into GiveAll2
    12. ∙ giveall duplicate <GiveAll's name> → Duplicate a GiveAll
    13. ∙ giveall settime <GiveAll’s name> <time> → (or "changetime") Modify the duration of a GiveAll. 0 = infinite
    14. ∙ giveall setcountdown <GiveAll’s name> <time> → (or "setcd", "scd", "changecountdown", "changecd", "ccd") Modify the countdown of a GiveAll. Must be over than or equal to 10
    15. ∙ giveall modify <GiveAll’s name> → Modify a GiveAll (with GUI) (time, countdown, rename…)
    16. ∙ giveall condition <set/clear/see> <GiveAll's name> [condition] [value] → Modify a GiveAll's condition
    17. ∙ giveall update → Check if an update is available
    18. ∙ giveall help → Print the help page
    19. ∙ giveall reload → Reload the script
    Configuration


    Code (Text):
    1.  
    2.     #-----------------------------------------------------#
    3.     #                     Prefixes                          #
    4.     #-----------------------------------------------------#
    5.     Prefix: &b[&aGiveAll&b]&r
    6.     ErrorPrefix: &cError :&c
    7.  
    8.     #-----------------------------------------------------#
    9.     #                     Error-messages                     #
    10.     #-----------------------------------------------------#
    11.     #Mesage when we don't have the permission to do something. There is no prefix before the message, so put them.
    12.     NoPermission: &b[&aGiveAll&b] &cError : You don't have the permission to do this !
    13.  
    14.     #Message when the Giveall doesn't exist
    15.     GADoesntExist: &cThis GiveAll doesn't exist
    16.  
    17.     #Message when the GiveAll already exist
    18.     GaAlreadyExists: &cThis GiveAll already exists
    19.  
    20.     #Message when we want to start a Giveall wich is empty
    21.     GAIsEmpty: &cAn error occurred while attempting to start this GiveAll : it is empty !
    22.  
    23.     #Message when we want to start a GiveAll, while a GiveAll is already in progress
    24.     GAIsAlreadyStarted: &cThere is already a GiveAll in progress ! GiveAll: &c&o%{_ga}%
    25.  
    26.     #Message when we want to stop a Giveall, but there is not GiveAll in progress
    27.     NoGAInProgress: &cThere isn't any GiveAll in progress
    28.  
    29.     #Message when we want to add/give an item but we have nothing in our hand
    30.     TakeAnItem: &cPlease, take an item in your hand
    31.  
    32.     #Message when we want to delete/rename a GiveAll wich is in progress
    33.     CantModifyBecauseGAIsInProgress: &cImpossible de faire cette action : ce giveall est en cours !
    34.  
    35.     #Message when we want to give an item to everybody but there is nobody online
    36.     Alone: &cThere is no one online.
    37.  
    38.     #Message when we want to delete a GiveAll wich is in progress
    39.     CantDeleteBecauseGAIsInProgress: &cYou can't delete this GiveAll because it is in progress
    40.  
    41.     #Message when we want to create a GiveAll with a name already used
    42.     NewGAAlreadyExists: &cThe name %{_newName}% is already used !
    43.  
    44.     #Message when we want enter a integer less than 10
    45.     TimeForCDIsTooBig: &cPlease enter an integer witch is over than or equal to 10 !
    46.  
    47.     #-----------------------------------------------------#
    48.     #                     Syntax-error messages              #
    49.     #-----------------------------------------------------#
    50.     #Message when we want to enter the GiveAll duration but the time we've enter is not an integer
    51.     WrongSyntaxForTime: &cThe time you've set isn't correct. Make sure to put a whole number
    52.  
    53.     #Message when we do /giveall start wrongly. There is 2 messages
    54.     WrongCommandSyntax_Start: &c/giveall start <name> [instant]
    55.     WrongCommandSyntaxIndication_Start: &cIf 'instant' (or 'i') is set, the GiveAll will start instantly.
    56.  
    57.     #Message when we do /giveall create wrongly. There is 2 messages
    58.     WrongCommandSyntax_Create: &c/giveall create <name> [time (in second)]
    59.     WrongCommandSyntaxIndication_Create: &cthe GiveAll will last the indicated time. If the time is not set, you will have to stop it manually.
    60.  
    61.     #Message when we do /giveall add wrongly.
    62.     WrongCommandSyntax_Add: &c/giveall add <name>
    63.  
    64.     #Message when we do /giveall edit wrongly.
    65.     WrongCommandSyntax_EditItem: &c/giveall edit[item] <name>
    66.  
    67.     #Message when we do /giveall rename wrongly.
    68.     WrongCommandSyntax_Rename: &c/giveall rename <old name> <new name>
    69.  
    70.     #Message when we do /giveall copy wrongly. There is 3 messages
    71.     WrongCommandSyntax_CopyContent: &c/giveall copy <GiveAll 1> <GiveAll 2>
    72.     WrongCommandSyntaxIndication_CopyContent: &cGiveAll 1 = Name of the Giveall whose items will be copied
    73.     WrongCommandSyntaxIndication_CopyContent2: &cGiveAll 2 = Name of the Giveall where items will be copied
    74.  
    75.     #Message when we do /giveall clear wrongly.
    76.     WrongCommandSyntax_Clear: &c/giveall clear <name>
    77.  
    78.     #Message when we do /giveall changetime wrongly.
    79.     WrongCommandSyntax_ChangeTime: &c/giveall changetime <name> <time (in second)>
    80.  
    81.     #Message when we do /giveall modify wrongly.
    82.     WrongCommandSyntax_Modify: &c/giveall modify <name>
    83.  
    84.     #Message when we do /giveall countdown wrongly.
    85.     WrongCommandSyntax_ChangeCD: &c/giveall countdown <name> <time (in second)>
    86.  
    87.     #-----------------------------------------------------#
    88.     #                         Messages                      #
    89.     #-----------------------------------------------------#
    90.  
    91.     #Message of the countdown, when a GiveAll starts
    92.     #PlaceHolders: %{_time.left}% : return the time left
    93.     #PlaceHolders: %{_ga}% : return the GiveAll name
    94.     GAStartsInXSeconds: &aThe givall starts in &b%{_time.left}% &asecond(s) ! &3&o(GiveAll: %{_ga}%)
    95.  
    96.     #Message when a GiveAll start
    97.     #PlaceHolders: %{_ga}% : return the GiveAll name
    98.     GAStarts: &aGiveAll is starting ! &3&o(GiveAll: %{_ga}%)
    99.  
    100.     #Message when the giveall is finished
    101.     #PlaceHolders: %{_ga}% : return the GiveAll name
    102.     GAIsFinished: &aGiveAll is finished ! Thank you for participating !
    103.  
    104.     #Message when the GiveAll is stopped by a player
    105.     #PlaceHolders: %{_player}% : return the player's name
    106.     #PlaceHolders: %{_ga}% : return the GiveAll name
    107.     GAHasBeenStoppedByPlayer: &aThe GiveAll &b%{_ga}%&a has been stopped by %{_player}% !
    108.  
    109.     #Message when the GiveAll is stopped by the console
    110.     #PlaceHolders: %{_ga}% : return the GiveAll name
    111.     GAHasBeenStoppedByConsole: &aThe GiveAll &b%{_ga}%&a has been stopped !
    112.  
    113.     #Message when we do /ga givehand
    114.     #PlaceHolders: %{_item}% : return the given item
    115.     #PlaceHolders: %{_number}% : return the number of player
    116.     GAHandHasBeenGiven: &aYou've successfully gave &b%{_item}%&a to &b%{_number}% player(s)
    117.  
    118.     #Broadcast when we do /ga givehand
    119.     #PlaceHolders: %{_item}% : return the given item
    120.     #PlaceHolders: %{_player}% : return the giver's name
    121.     GAHandBroadcast: &b%{_player}%&a gave &b%{_item}% &ato everyone !
    122.  
    123.     #Small addition, wich will be put in place of "%{_stop}%" in the "GACreated" message, wich return the way that the GiveAll will be stopped
    124.     #PlaceHolders: %{_seconds}% : return the duration of the GiveAll
    125.     GAMustBeStoppedManually: &aIt will stop manually. #It will be put in place of "%{_stop}%"
    126.     GAWillBeStoppedAutomatically: It will stop after %{_seconds}%&asec. #It will be put in place of "%{_stop}%"
    127.  
    128.     #Message when we create a GiveAll
    129.     #PlaceHolders: %{_stop}% : return the way that the GiveAll will be stopped
    130.     GACreated: &aThe GiveAll &b&l%{_ga}%&a has been created ! %{_stop}%
    131.  
    132.     #Message when we delete
    133.     #PlaceHolders: %{_ga}% : return the GiveAll name
    134.     GADeleted: &aYou've deleted the GiveAll &b&l%{_ga}%&a !
    135.  
    136.     #Message when we add an item to a giveall (with /giveall add <name>)
    137.     #PlaceHolders: %{_ga}% : return the GiveAll name
    138.     #PlaceHolders: %{_item}% : return the added item
    139.     ItemAdded: &aYou've added &byour item &ain the &b%{_ga}%'s items &7&o(item added : %{_item}%)
    140.  
    141.     #Message when we rename a GiveAll
    142.     #PlaceHolders: %{_ga}% : return the old name of the GiveAll
    143.     #PlaceHolders: %{_newName}% : return the new name of the GiveAll
    144.     RenamedSuccessfully: &aYou have successfully rename the GiveAll &b%{_ga}% &ain &b%{_newName}% &a!
    145.  
    146.     #Message when we copy the items of a giveall into another
    147.     #PlaceHolders: %{_ga1}% : return the name of the Giveall whose items will be copied
    148.     #PlaceHolders: %{_ga2}% : return the name of the Giveall where items will be copied
    149.     SuccessfullyCopied: &aYou've successfully copied items of the giveall &b%{_ga1}% &ainto &b%{_ga2}%&a !
    150.  
    151.     #Message when we clear the items of a Giveall
    152.     #PlaceHolders: %{_ga}% : return the GiveAll name
    153.     SuccessfullyCleared: &aYou've successfully cleared the GiveAll &b%{_ga}%
    154.  
    155.     #Message when we change the duration of a GiveAll
    156.     #PlaceHolders: %{_ga}% : return the GiveAll name
    157.     #PlaceHolders: %{_time}% : return the duration
    158.     SuccessfullyChangedTime: &aYou've successfully changed the duration of the GiveAll &b%{_ga}%&a (%{_time}%s)
    159.  
    160.     #Message when we change the countdown of a GiveAll
    161.     #PlaceHolders: %{_ga}% : return the GiveAll name
    162.     #PlaceHolders: %{_time}% : return the countdown
    163.     SuccessfullyChangedCD: &aYou've successfully changed the countdown of the giveall &b%{_ga}% &a(%{_time}%s)
    164.  
    165.     #Message where we have to click to rename (MSG), and its tooltip (TTP)
    166.     #PlaceHolders: %{_ga}% : return the GiveAll's name
    167.     MSGClickForRename: &aClick-me to rename &b%{_ga}%&a !
    168.     TTPClickForRename: &aClick to do /ga rename %{_ga}%
    169.  
    170.     #Message when the skript is Reloading
    171.     Reloading: &aReloading...
    172.  
    173.     #-----------------------------------------------------#
    174.     #              Configuration of the list              #
    175.     #-----------------------------------------------------#
    176.     #Color of the comma and of the "and" in the list
    177.     ComaColorInList: &a
    178.     #Color of the GiveAll's names in the list
    179.     GAColorInList: &b
    180.     #Message when the list is empty
    181.     GAListIsEmpty: &aThere is no giveall !
    182.     #Message before the list
    183.     #PlaceHolders: %{_number}% : return the number of GiveAlls
    184.     GAList: &aList of all GiveAlls &f&o(%{_number}%) &a:&b
    185.  
    186.     #-----------------------------------------------------#
    187.     #                     Name of GUIs                      #
    188.     #-----------------------------------------------------#
    189.     #Name of the GUI when you have to confirm to delete a GiveAll
    190.     #PlaceHolders: %{_ga}% : return the GiveAll name
    191.     ConfirmDeleteGUI: &cRemove &c&o%{_ga}%
    192.  
    193.     #Name of the GUI to edit items of a GiveAll
    194.     #PlaceHolders: %{_ga}% : return the GiveAll name
    195.     EditItems: &b[&aGiveAll&b] &b%{_ga}%
    196.  
    197.     #Name of the list's GUI
    198.     TitleGUIList: &b[&aGiveAll&b]
    199.  
    200.     #Name of the GUI to modify a giveall (/ga modify <name>)
    201.     #PlaceHolders: %{_ga}% : return the GiveAll name
    202.     ModifyGA: &aGiveAll &b%{_ga}%
    203.  
    204.     #-----------------------------------------------------#
    205.     #             Name of the Items, in the GUI             #
    206.     #-----------------------------------------------------#
    207.     #Name of the book to indicate the name of the Giveall
    208.     # (In the Delete GUI and the Modify GUI)
    209.     #PlaceHolders: %{_ga}% : return the GiveAll name
    210.     InfoGAName: &eGiveAll : %{_ga}%
    211.  
    212.     #Name of the button to cancel the delete of a GiveAll
    213.     CancelDelete: &cCancel
    214.  
    215.     #Name of the button to confirm the delete of a GiveAll
    216.     ConfirmDelete: &aRemove
    217.  
    218.     #Name of the button to close the GUI
    219.     CloseGUIItem: &cQuit
    220.  
    221.     #Name of the button to go back to the list
    222.     BackToGAList: &cBack to the list
    223.  
    224.     #Name of the button to go to the next page
    225.     NextPage: &fNext page
    226.  
    227.     #Name of the button to go to the previous page
    228.     PreviousPage: &fPrevious page
    229.  
    230.     #Name of the button to add an item
    231.     AddItemToGA: &aAdd an item
    232.  
    233.     #Name of the book, in the GiveAll list
    234.     #PlaceHolders: %{_ga}% : return the GiveAll name
    235.     GAListItem: &aGiveAll &b%{_ga}%
    236.  
    237.     #Lore of the book, in the GiveAll list
    238.     #PlaceHolders: %{_action}% : return what will happen when we will left click on the book (stop or start)
    239.     #PlaceHolders: %{_satut}% : return the actual status of the GiveAll (I know, we write "status", and not "statut", but in french we write "statut" and I didn't change...)
    240.     #PlaceHolders: %{_nbitem}% : return the amount of items in the GiveAll
    241.     #PlaceHolders: %{_time}% : return the duration of the GiveALl
    242.     LoreGAList: ||&7&m--------------------||&cMiddle click: modify items||&cRight click: delete||&cLeft click: &c%{_action}%||&cShift left click: modify the GiveAll||&r||&7&m--------------------||&e&oInformations||&aNumber of items: &b%{_nbitem}%||&aDuration: &b%{_time}%||&aCountdown: &b%{_cd}%||&aStatus: &b%{_statut}%
    243.  
    244.     #Name if the item between the two button to go to the next/previous page
    245.     SeveralPageItem: &e&oSoon: Several pages #The item between 'next page' and 'previous page'. In the future, it will be replaced by a Several-page system
    246.  
    247.     #The action that will be executed (when we click while it is not in progress)
    248.     LeftClickActionStart: &cstart
    249.  
    250.     #The action that will be executed (when we click while it is in progress)
    251.     LeftClickActionStop: &cstop
    252.  
    253.     #The status of the GiveAll (when it is in progress)
    254.     StatusInProgress: In progress...
    255.  
    256.     #The status of the GiveAll (when it is not in progress)
    257.     StatusStop: stopped
    258.  
    259.     #Name of the items to clear items of a Giveall
    260.     ClearGA: &cClear the items of the GiveAll
    261.  
    262.     #When a GiveAll is infinite (in the Giveall list)
    263.     InifiteTimeForGUIList: Infinite
    264.  
    265.     #Name of the items to rename a Giveall, in the "modify" GUI
    266.     GAModifyRename: &eRename
    267.  
    268.     #Name of the button to modify items of a Giveall, in the "modify" GUI
    269.     GAEditItems: &eModify items
    270.  
    271.     #Name of the button to delete a Giveall, in the "modify" GUI
    272.     DeleteInModifyGUI: &cDelete
    273.  
    274.     #Name of buttons to modify the duration of a Giveall, in the "modify" GUI
    275.     AddTimeByGUI: &aAdd %{_time}%&as to the duration of the GiveAll
    276.     RemoveTimeByGUI: &cRemove %{_time}%&cs from the duration of the GiveAll
    277.     SeeTimeByGUI: &aDuration of the GiveAll : &b%{_time}%&as
    278.     LoreSeeTimeByGUI: &r||&b0 &a= Infinite
    279.  
    280.     #Name of buttons to modify the countdown of a Giveall, in the "modify" GUI
    281.     AddCDByGUI: &aAdd %{_time}%&as to the countdown
    282.     RemoveCDByGUI: &cRemove %{_time}%&cs from the countdown
    283.     SeeCDByGUI: &aCountdown: &b%{_time}%&as
    284.  
    285.  
    286.     #-----------------------------------------------------#
    287.     #                         Commands                      #
    288.     #-----------------------------------------------------#
    289.     #Name of the mains command
    290.     MainCommand: GiveAll #we don't care about uppercases/lowercases
    291.  
    292.     #Name of aliases
    293.     AliasesCommands: ga, givea, gall, give-all #Separate with a coma
    294.  
    295.     #-----------------------------------------------------#
    296.     #                         Permissions                     #
    297.     #-----------------------------------------------------#
    298.     #Permissions.
    299.     PermissionAll: giveall.*
    300.     PermissionCreate: giveall.create
    301.     PermissionStart: giveall.start
    302.     PermissionReload: giveall.reload
    303.     PermissionStop: giveall.stop
    304.     PermissionGiveHand: giveall.givehand
    305.     PermissionDelete: giveall.delete
    306.     PermissionAddItem: giveall.additem
    307.     PermissionEditItem: giveall.edititem
    308.     PermissionChatList: giveall.list.chat
    309.     PermissionGUIList: giveall.list.gui
    310.     PermissionRename: giveall.rename
    311.     PermissionHelp: giveall.help
    312.     PermissionUpdateCheck: giveall.updatecheck
    313.     PermissionCopyContent: giveall.copycontent
    314.     PermissionClearGA: giveall.clear
    315.     PermissionModify: giveall.modify
    316.     PermissionChangeTime: giveall.settime
    317.     PermissionChangeCountDown: giveall.setcountdown
    318.  


    Images and videos

    [​IMG]
    [​IMG]
    Help page (/ga help)

    [​IMG]
    List of all the GiveAlls,

    [​IMG]
    The "Edit" GUI (to add/remove items) (/ga edit <nom>)
    (Add items: drag-and-drop it on the gold-block
    remove all the items: click on the redstone dust
    remove an items: right click on it)

    [​IMG]
    The "Modify" GUI, to modify a loads of parameter of your GiveAll, such as CountDown, Duration, Rename, Edit Items, delete, start/stop... (/ga modify <nom>)

    [​IMG]
    Countdown when a GiveAll starts

    [​IMG]
    List of all the GIveAll (/ga list)

    [​IMG]
    Message when a GiveAll is stop (/ga stop <name>)

    Videos:
    If you want to do a video, you can !
    But don't forget to say my name (noftaly), and to put the download link in the description. I will add the video on the ressource page


    Add-ons and version

    Must:

    Java 8
    Spigot
    TuSKe
    Skript 2.2
    SkQuery

    Developed and tested with:

    Java 8
    Spigot 1.12.2
    Skript 2.2-dev31c
    TuSKe 1.8.2-dev7
    SkQuery 3.21.4

    Changelog

    Code (Text):
    1. Beta 1.0 : (private)
    2. - Creation of the skript
    3.  
    4. Beta 2.0 : (public)
    5. - Added: /ga update
    6. - Added: Configuration
    7. - Fix of some bugs
    8. - Added Json in the /ga help
    9. - Added permission
    10.  
    11. Beta 3.0 :
    12. - Modification of the Configuration
    13. - Added some link in the "update check"
    14. - Code modification
    15. - Ressource's page modification
    16. - Added a Trello
    17.  
    18. Beta 3.2 :
    19. - Added: /ga rename <ancien nom> <nouveau nom>
    20. - Added: /ga copy <GiveAll> <GiveAll>
    21. - Added: /ga clear <GiveAll>
    22. - Added: /ga changetime <GiveAll> <time>
    23. - Added an item to clear all the items in the "Edit" GUI
    24. - Added some permissions
    25. - Added the "Informations" part in the lore of the book, in the list
    26. - Modification of the Configuration
    27. - Modification of the code
    28.  
    29. Beta 3.2.1 :
    30. - Modification of the configuration
    31.  
    32. Beta 3.2.2 :
    33. - Modification of the code
    34.  
    35. Beta 4 :
    36. - Added: /ver GiveAll
    37. - Added: /ga modify
    38. - Added: /ga setcountdown
    39. - Fix of the « internal occurred while etc. » in the /list gui
    40. - Modification of the configuration
    41. - Modification of the items in the GUI list
    42. - Modification of the /ga help
    43. - Modification of the way that the countdown works
    44. - Optimisation
    45.  
    46. Betas 4.1 ; 4.2 ; 4.3 :
    47. - BugFix
    48.  
    49. Version 1.0 :
    50. - Added /ga condition <set/clear/see> <GiveAll> [condition] [value]
    51. - Added an item to modify the condition, in the /ga modify
    52. - Added a GUI to modify the condition
    53. - Added an information on the condition of a GiveAll and its value in te /ga list gui
    54. - Modification of the configuration
    55. - Modification of the way that some commands worked
    56. - Modification of the way that the items are given
    57. - Modification of an item in a GUI (the "Back to the list" item become "Back", to be used in other GUIs)
    58.  
    59. Version 1.0.1 :
    60. - Added a permission for the /ga condition
    61. - Deleted a message with was 2 times in the configuration
    62.  
    63. Version 1.0.2 :
    64. - Added an error message if we put an integer smaller than 0 in the /ga settime
    65. - Fixing a bug wich allows us to define a negative duration
    66. - Modification of the configuration
    67.  
    68. Version 1.1.0 :
    69. - Added 6 conditions: max-kill, min-kill, max-death, min-death, max-money, min-money
    70. - Added /ga duplicate <GiveAll> with allows you to duplicate a GiveAll. It will create an other giveall wich will be name like this: <nom_du_giveall>-copy. If this name already exist, it will be "copy2" or "copy3" or "copy4" etc.
    71. - Added some items to modify the condition in the condition's configuration panel
    72. - Modification of the clock's item in the /ga modify: right click on it now reset the time or the countdown
    73. - Modification of the configuration
    74. - Modification of the /ga help
    75.  
    76. Version 1.2.0, 1.2.1 et 1.2.2 :
    77. - Added 4 conditions: min-playtime, max-playtime, in-region, not-in-region
    78. - Optimisation of the code
    79. - Modification of the 'launch' line in the gui of the list
    80. - Modification of the configuration
    81. - Modification of the /ga delete/create/duplicate
    82. - Deleting API (still available here if you want)
    83.  
    84. Version 1.3.0 :
    85. - Added a MultiPage system (Thanks @McLincoln2 for the help)
    86. - Added the version in the file name
    87. - Added log in a log file (plugins/giveall/actions.log)
    88. - Fix of the Ghost Item's bug
    89. - Improve of some GUI (nicer)
    90. - Modification with conditions
    91. - Changing some items
    92. - Remake of the Condition's GUI
    93. - Updated video tutorial (still in french)
    94. - Modification of the configuration
    95. - Optimisation of the code
    96. - Deleting the old GUI's system (to replace them with MultiPage)
    97. - Merging the 2 pages in the /ga help in only one
    98.  


    To-Do and bugs


    ▶ Add a .yml
    ✔ Add Several-Page system
    ✔ /ga rename <Old name> <new name>
    ✔ Add a log file

    ✔ Add other language, as english
    ▶ Let-me know your ideas !



    Known Bugs:

    ✔ Sometimes, when we add an item that already exist, by the "edit" GUI, the old one become ghost
    ↪ Fixed (in the next updated. Let me some time to translate all the 700 lines of configuration...)

    ▶ Say-me if you found a bug !


    Servers using the skript

    Let-me know if you use the skript, and i will add you're IP and your TeamSpeak/discord/site... here !

    Servers using the skript:
    - ...
    - ...


    Informations

    Thanks a lot for downloading this skript !

    A trello with all the things about the skript is available here ! (in french) : https://trello.com/b/Fid0us18/skript-giveall

    You're not alow to claim this skript, or any of its parts as yours.
    You're not alow to post this skript on a forum, without my permission.

    You can do videos on it !
    But don't forget to say my name (noftaly), and to put the download link in the description. I will add the video on the ressource page

    The skript has ★★★★★ (15 reviews) on skript-mc !