Custom Workbench

Custom Workbench
31,06 €

*inkl. MwSt.

Als Sofortdownload verfügbar

Bestellung mit Käuferschutz

Dieses Produkt ist ein Angebot von AlphaOmega
Klicke hier, um AlphaOmega eine Nachricht zu senden

  • MM73756
Custom Workbench Plugin   This plugin is based on the Hypixel Workbench and allows... mehr
Produktinformationen "Custom Workbench"
Custom Workbench Plugin
 
This plugin is based on the Hypixel Workbench and allows for various crafting recipes through a configuration file.
 
Features:
  • Chat Messages: Customizable messages for permissions and crafting.
  • GUI Titles: Dynamic titles for different workbench sizes (2x2, 3x3, 4x4, 5x5, 6x6).
  • GUI Layouts: Configurable layouts with pagination, indicators, and output slots.
  • GUI Items: Custom items for indicators, navigation, and recipe validation.
  • New Recipes: Define new shaped and shapeless recipes with permissions.
  • Result Patches: Modify the result of existing recipes.
 
Example Configuration:
[code]
messages:
  prefix: 'VWB | '
  noPermissionForItem$: 'prefix & "You are not allowed to craft this item (" & permission_name & ")!"'
 
titles:
  bench2x2$: '"" & viewer & "´s Workbench (" & size & ")"'
  bench3x3$: '"" & viewer & "´s Workbench (" & size & ")"'
  bench4x4$: '"" & viewer & "´s Workbench (" & size & ")"'
  bench5x5$: '"" & viewer & "´s Workbench (" & size & ")"'
  bench6x6$: '"" & viewer & "´s Workbench (" & size & ")"'
 
layouts:
  bench2x2:
   showPaginationAlways: true
   rows: 3
   fill:
     type: BLACK_STAINED_GLASS_PANE
     name: ' '
   slots:
     grid: 9
     indicator: '11,20'
     output: 12
     previous: 3
     next: 21
  bench3x3:
   showPaginationAlways: true
   rows: 3
   fill:
     type: BLACK_STAINED_GLASS_PANE
     name: ' '
   slots:
     grid: 0
     indicator: '3,12,21'
     output: 13
     previous: 4
     next: 22
  bench4x4:
   showPaginationAlways: true
   rows: 4
   fill:
     type: BLACK_STAINED_GLASS_PANE
     name: ' '
   slots:
     grid: 0
     indicator: '4,13,22,31'
     output: 14
     previous: 5
     next: 23
  bench5x5:
   showPaginationAlways: true
   rows: 5
   fill:
     type: BLACK_STAINED_GLASS_PANE
     name: ' '
   slots:
     grid: 0
     indicator: '5,14,23,32,41'
     output: 24
     previous: 15
     next: 33
  bench6x6:
   showPaginationAlways: true
   rows: 6
   fill:
     type: BLACK_STAINED_GLASS_PANE
     name: ' '
   slots:
     grid: 0
     indicator: '6,15,24,33,42,51'
     output: 25
     previous: 16
     next: 34
 
items:
  bench:
   indicator:
     type$: 'if is_valid then "GREEN_STAINED_GLASS_PANE" else "RED_STAINED_GLASS_PANE"'
     name$: 'if is_valid then "» Valid Recipe «" else "» Invalid Recipe«"'
     lore$:
       - '" "'
       - |
         if is_valid then list_of(
           "Congratulations! You just inserted",
           "an existing recipe."
         ) else list_of(
           "Please try another combination of",
           "recipe ingredients."
         )
   next:
     type: PLAYER_HEAD
     textures$: 'lut["textures"][if has_next_recipe then "ARROW_DOWN" else "ARROW_DOWN_RED"]'
     name$: 'if has_next_recipe then "Next Recipe" else "No Next Recipe"'
     lore$:
       - '" "'
       - '"Recipe " & current_index & "/" & number_available & ""'
       - '" "'
       - |
         if has_next_recipe then list_of(
           "Left-click: Next recipe",
           "Right-click: Last recipe"
         ) else list_of(
           "Already on the last recipe"
         )
   previous:
     type: PLAYER_HEAD
     textures$: 'lut["textures"][if has_previous_recipe then "ARROW_UP" else "ARROW_UP_RED"]'
     name$: 'if has_previous_recipe then "Previous Recipe" else "No Previous Recipe"'
     lore$:
       - '" "'
       - '"Recipe " & current_index & "/" & number_available & ""'
       - '" "'
       - |
         if has_previous_recipe then list_of(
           "Left-click: Previous recipe",
           "Right-click: First recipe"
         ) else list_of(
           "Already on the first recipe"
         )
lut:
  textures:
   ARROW_UP: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2Y0NmFiYWQ5MjRiMjIzNzJiYzk2NmE2ZDUxN2QyZjFiOGI1N2ZkZDI2MmI0ZTA0ZjQ4MzUyZTY4M2ZmZjkyIn19fQ=='
   ARROW_UP_RED: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmQ5Mjg3NjE2MzQzZDgzM2U5ZTczMTcxNTljYWEyY2IzZTU5NzQ1MTEzOTYyYzEzNzkwNTJjZTQ3ODg4NGZhIn19fQ=='
   ARROW_DOWN: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmU5YWU3YTRiZTY1ZmNiYWVlNjUxODEzODlhMmY3ZDQ3ZTJlMzI2ZGI1OWVhM2ViNzg5YTkyYzg1ZWE0NiJ9fX0='
   ARROW_DOWN_RED: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTM4NTJiZjYxNmYzMWVkNjdjMzdkZTRiMGJhYTJjNWY4ZDhmY2E4MmU3MmRiY2FmY2JhNjY5NTZhODFjNCJ9fX[/code]


Vertragsbedingungen
Weiterführende Links zu "Custom Workbench"
Bewertungen lesen, schreiben und diskutieren... mehr
Kundenbewertungen für "Custom Workbench"
Bewertung schreiben

Die mit einem * markierten Felder sind Pflichtfelder.

LobbySystem | SRC LobbySystem | SRC
14,93 € 21,90 €
SystemV2 SystemV2
5,95 €
Applys v2 Applys v2
0,00 €
Autonick Autonick
4,76 €
Zuletzt angesehen