├── README.md └── .github └── ISSUE_TEMPLATE ├── Bug-Paintwars.yml ├── Bug-Cosmetiques.yml ├── Bug-Bedwars.yml ├── Bug-Report.yml └── Bug-Factions.yml /README.md: -------------------------------------------------------------------------------- 1 | # Paladium Issue 2 | Ceci est un dépôt Github dédié aux bugs de Paladium, en aucun cas ce dépôt ne doit servir de support. Si vous avez besoin de support, merci de vous rendre sur nos plateformes prévues à cet effet (discord support ou Teamspeak). 3 | 4 | [Support Paladium](https://discord.com/invite/J2Yh9634zj) 5 | 6 | Le discord de Paladium est le suivant 7 | 8 | [Paladium Discord](https://discord.com/invite/paladium) 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug-Paintwars.yml: -------------------------------------------------------------------------------- 1 | name: Bug paintwars 2 | description: Report un bug du jeu PaintWars 3 | title: '[Bug][PaintWars]: ' 4 | assignees: 5 | - Zeldown 6 | labels: 7 | - bug 8 | - paintwars 9 | - ' triage' 10 | body: 11 | - type: input 12 | id: pseudo 13 | attributes: 14 | label: Pseudo InGame 15 | validations: 16 | required: true 17 | - type: textarea 18 | id: what-happened 19 | attributes: 20 | label: Que s'est-il passé ? 21 | description: Dites-nous ce qui est arrivé 22 | validations: 23 | required: true 24 | - type: textarea 25 | id: what-should-happened 26 | attributes: 27 | label: 'Qu''aurait-il dû arriver ?' 28 | - type: input 29 | id: os 30 | attributes: 31 | label: 'Système d''exploitation' 32 | description: Quel est votre système d'exploitation ? Windows, Linux, Mac 33 | - type: input 34 | id: ram 35 | attributes: 36 | label: Ram 37 | description: Combien avez-vous de giga de Ram ? 38 | - type: input 39 | id: cg 40 | attributes: 41 | label: Carte Graphique 42 | description: 'Quelle carte graphique avez-vous ?' 43 | - type: textarea 44 | id: log 45 | attributes: 46 | label: LOG 47 | description: Si vous avez des logs à nous fournir, c'est ici ! 48 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug-Cosmetiques.yml: -------------------------------------------------------------------------------- 1 | name: Bug Cosmetiques 2 | description: Report un bug sur les cosmetiques 3 | title: '[Bug][Cosmetiques]: ' 4 | assignees: 5 | - Terrainwax 6 | labels: 7 | - bug 8 | - cosmetiques 9 | - ' triage' 10 | body: 11 | - type: input 12 | id: pseudo 13 | attributes: 14 | label: Pseudo InGame 15 | validations: 16 | required: true 17 | - type: textarea 18 | id: what-happened 19 | attributes: 20 | label: Que s'est-il passé ? 21 | description: Dites-nous ce qui est arrivé 22 | validations: 23 | required: true 24 | - type: input 25 | id: rec 26 | attributes: 27 | label: Rec 28 | validations: 29 | required: true 30 | - type: textarea 31 | id: what-should-happened 32 | attributes: 33 | label: 'Qu''aurait-il dû arriver ?' 34 | - type: input 35 | id: os 36 | attributes: 37 | label: 'Système d''exploitation' 38 | description: Quel est votre système d'exploitation ? Windows, Linux, Mac 39 | - type: input 40 | id: ram 41 | attributes: 42 | label: Ram 43 | description: Combien avez-vous de giga de Ram ? 44 | - type: input 45 | id: cg 46 | attributes: 47 | label: Carte Graphique 48 | description: 'Quelle carte graphique avez-vous ?' 49 | - type: textarea 50 | id: log 51 | attributes: 52 | label: LOG 53 | description: Si vous avez des logs à nous fournir, c'est ici ! 54 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug-Bedwars.yml: -------------------------------------------------------------------------------- 1 | name: Bug bedwars 2 | description: Report un bug du jeu BedWars 3 | title: '[Bug][BedWars]: ' 4 | assignees: 5 | - aureliancnx 6 | labels: 7 | - bug 8 | - bedwars 9 | - ' triage' 10 | body: 11 | - type: input 12 | id: pseudo 13 | attributes: 14 | label: Pseudo InGame 15 | validations: 16 | required: true 17 | - type: textarea 18 | id: what-happened 19 | attributes: 20 | label: Que s'est-il passé ? 21 | description: Dites-nous ce qui est arrivé 22 | validations: 23 | required: true 24 | - type: textarea 25 | id: what-should-happened 26 | attributes: 27 | label: 'Qu''aurait-il dû arriver ?' 28 | validations: 29 | required: true 30 | - type: input 31 | id: game-number 32 | attributes: 33 | label: 'Numéro de la partie (/lag)' 34 | validations: 35 | required: true 36 | - type: input 37 | id: game-map 38 | attributes: 39 | label: 'Nom de la map (/map)' 40 | validations: 41 | required: true 42 | - type: input 43 | id: os 44 | attributes: 45 | label: 'Système d''exploitation' 46 | description: Quel est votre système d'exploitation ? Windows, Linux, Mac 47 | - type: input 48 | id: ram 49 | attributes: 50 | label: Ram 51 | description: Combien avez-vous de giga de Ram ? 52 | - type: input 53 | id: cg 54 | attributes: 55 | label: Carte Graphique 56 | description: 'Quelle carte graphique avez-vous ?' 57 | - type: textarea 58 | id: log 59 | attributes: 60 | label: LOG 61 | description: Si vous avez des logs à nous fournir, c'est ici ! 62 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug-Report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 2 | description: Report un bug 3 | title: '[Bug]: ' 4 | labels: 5 | - bug 6 | - ' triage' 7 | body: 8 | - type: input 9 | id: pseudo 10 | attributes: 11 | label: Pseudo InGame 12 | validations: 13 | required: true 14 | - type: textarea 15 | id: what-happened 16 | attributes: 17 | label: Que s'est-il passé ? 18 | description: Dites-nous ce qui est arrivé 19 | validations: 20 | required: true 21 | - type: input 22 | id: rec 23 | attributes: 24 | label: Rec 25 | validations: 26 | required: true 27 | - type: textarea 28 | id: what-should-happened 29 | attributes: 30 | label: 'Qu''aurait-il dû arriver ?' 31 | - type: dropdown 32 | id: server 33 | attributes: 34 | label: Serveur 35 | description: Sur quel serveur est-ce arrivé ? 36 | options: 37 | - Global 38 | - Minage 39 | - Aeloria 40 | - Egopolis 41 | - Runegard 42 | - Kilmordra 43 | - Xanoth 44 | - Event01 45 | - Farmland 46 | - Lobby 47 | - type: input 48 | id: os 49 | attributes: 50 | label: 'Système d''exploitation' 51 | description: Quel est votre système d'exploitation ? Windows, Linux, Mac 52 | - type: input 53 | id: ram 54 | attributes: 55 | label: Ram 56 | description: Combien avez-vous de giga de Ram ? 57 | - type: input 58 | id: cg 59 | attributes: 60 | label: Carte Graphique 61 | description: 'Quelle carte graphique avez-vous ?' 62 | - type: textarea 63 | id: log 64 | attributes: 65 | label: LOG 66 | description: Si vous avez des logs à nous fournir, c'est ici ! 67 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug-Factions.yml: -------------------------------------------------------------------------------- 1 | name: Bug faction 2 | description: Report un bug du plugin faction 3 | title: '[Bug][Faction]: ' 4 | assignees: 5 | - Zeldown 6 | - aureliancnx 7 | labels: 8 | - bug 9 | - faction 10 | - ' triage' 11 | body: 12 | - type: input 13 | id: pseudo 14 | attributes: 15 | label: Pseudo InGame 16 | validations: 17 | required: true 18 | - type: textarea 19 | id: what-happened 20 | attributes: 21 | label: Que s'est-il passé ? 22 | description: Dites-nous ce qui est arrivé 23 | validations: 24 | required: true 25 | - type: input 26 | id: rec 27 | attributes: 28 | label: Rec 29 | validations: 30 | required: true 31 | - type: textarea 32 | id: what-should-happened 33 | attributes: 34 | label: 'Qu''aurait-il dû arriver ?' 35 | - type: dropdown 36 | id: server 37 | validations: 38 | required: true 39 | attributes: 40 | label: Serveur 41 | description: Sur quel serveur est-ce arrivé ? 42 | options: 43 | - Global 44 | - Minage 45 | - Aeloria 46 | - Egopolis 47 | - Runegard 48 | - Kilmordra 49 | - Xanoth 50 | - Event01 51 | - type: input 52 | id: date 53 | attributes: 54 | label: Date et heure de la production du bug 55 | validations: 56 | required: true 57 | - type: checkboxes 58 | attributes: 59 | label: Bug du plugin Faction 60 | options: 61 | - label: Le bug que je signale concerne **uniquement** un bug du plugin Factions 62 | required: true 63 | - type: input 64 | id: os 65 | attributes: 66 | label: 'Système d''exploitation' 67 | description: Quel est votre système d'exploitation ? Windows, Linux, Mac 68 | - type: input 69 | id: ram 70 | attributes: 71 | label: Ram 72 | description: Combien avez-vous de giga de Ram ? 73 | - type: input 74 | id: cg 75 | attributes: 76 | label: Carte Graphique 77 | description: 'Quelle carte graphique avez-vous ?' 78 | - type: textarea 79 | id: log 80 | attributes: 81 | label: LOG 82 | description: Si vous avez des logs à nous fournir, c'est ici ! 83 | --------------------------------------------------------------------------------