CookieClickerZ 图标

CookieClickerZ

作者:rebot | 分类:模组

价格:0 墨喵币 下载量:0 点赞:0 版本 1.3.0
本资源为搬运资源,原资源地址: https://modrinth.com/mod/cookieclickerz
资源信息

Minecraft 版本: 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11 26.1 26.1.1 26.1.2 26.2

平台: paper purpur

标签: economy game-mechanics minigame

资源介绍

banner


paper
purpur
github
discord-plural
gitbook

CookieClickerZ is a Minecraft Cookie Clicker plugin, that brings the popular Cookie Clicker game to your Minecraft Server. You can either customize the plugin to the last detail or use the standard installation for the traditional cookieclicker experience.

Features

  • ✅ As many clicker blocks as you want
  • ✅ Customizable upgrades
  • ✅ Events
  • ✅ Prestige system
  • ✅ Achievements
  • ✅ Top list
  • ✅ Offline cookie gathering
  • ✅ Anti-cheat system
  • ✅ Fully customizable messages, sounds, and items
  • ✅ HEX colors and gradients support
  • ✅ PlaceholderAPI placeholders
  • ✅ SQLite and MySQL support
  • ✅ Admin commands

Permissions

  • cookieclickerz.useclicker - Allows the player to use the clicker block (default: true)
  • cookieclickerz.upgrades - Allows the player to open the upgrades shop (default: true)
  • cookieclickerz.prestige - Allows the player to open the prestige menu (default: true)
  • cookieclickerz.top - Allows the player to open the top menu (default: true)
  • cookieclickerz.viewachievements - Allows the player to open the achievements menu (default: true)
  • cookieclickerz.numcheatsheet - Allows the player to open the numcheatsheet (default: true)
  • cookieclickerz.admin.manageclickers - Allows the player to manage clickers (default: op)
  • cookieclickerz.admin.managecookies - Allows the player to manage other players cookies (default: op)
  • cookieclickerz.admin.manageprestige - Allows the player to manage other players prestige (default: op)
  • cookieclickerz.admin.manageevents - Allows the player to manage events (default: op)
  • cookieclickerz.admin.manageachievements - Allows the player to manage other players achievements (default: op)
  • cookieclickerz.admin.giveupgrade - Allows the player to give upgrades to other players (default: op)
  • cookieclickerz.buyupgrade. - Allows the player to buy a certain upgrade (if requirePermission is true for that upgrade) (default: op)

Placeholders

  • %cookieclickerz_totalcookies% - A users total cookies
  • %cookieclickerz_totalcookies_formatted% - A users total cookies (formatted, e.g. 1M, 3B, 5.1T)
  • %cookieclickerz_cookiesperclick% - The amount of cookies a user gets per click
  • %cookieclickerz_offlinecookies% - The amount of cookies a user gets while offline
  • %cookieclickerz_prestige% - The prestige of a user
  • %cookieclickerz_totalclicks% - A users total clicks

Leaderboard

The leaderboard placeholders follow this format:

%cookieclickerz_<category>_top_<index>_<field>%
  • <category> is what leaderboard to show. This can be cookies for total cookies or cpc for cookies per click.
  • <index> is the position in the leaderboard (e.g. 1 for the first place or 3 for the third place). The limit for this can be set in the config.yml (default limit: 10).
  • field is what about this player to show. This can be:
    • name: The name of the player
    • amount: The amount depending on what cateory you chose
    • formattedamount: The same as amount, but formatted (e.g. 1000000 -> 1M)

Configuration

You can customize the plugin to your liking by editing the config.yml, upgrades.yml, and prestige.yml files located in the plugins/CookieClickerZ folder.

config.yml ```yaml # _____ _ _ _____ _ _ _ ______ # / ____| | | (_) / ____| (_) | | |___ / # | | ___ ___ | | ___ ___ | | | |_ ___| | _____ _ __ / / # | | / _ \ / _ \| |/ / |/ _ \ | | | | |/ __| |/ / _ \ '__| / / # | |___| (_) | (_) | upgrades.yml ```yaml # === UPGRADES === # You can add as many upgrades as you want following this structure wooden_pickaxe: # The name of the upgrade name: "&6Wooden Pickaxe" # The price of the upgrade baseprice: "50" # The price multiplier for each upgrade priceMultiplier: 1.1 # The material that will be displayed in the shop item: "WOODEN_PICKAXE" # The amount of cookies per click the upgrade will add cpc: "1" # The amount of cookies the player will get while offline offlineCookies: "0" # Custom mdoel ID to apply a texture to the item (requires a resource pack) customModelId: 300 # Wether the player needs the cookieclickerz.buyupgrade. permission to buy this upgrade requirePermission: false ... # Add more items as needed following this structure ``` prestige.yml ```yaml # === PRESTIGE === # If set to true, the plugin will enable the prestige system enabled: true # You can add or remove as many prestige levels as you want. (Everything beyond the 29th level will be ignored) levels: 1: # The name of the prestige level name: "&8&l> &6Prestige I" # Additional lore for the prestige level (optional) # You can use the placeholders %price% and %multiplier% in the lore lore: #- "This is some additional lore for Prestige I" # If true, the original lore will be hidden and only the additional lore will be shown hideOriginalLore: false # The price of the prestige level cost: "1M" # The multiplier that will be applied to the player's cookies multiplier: 2 # The commands that will be executed when a player prestiges to this level # You can use %player% to insert the player's name commands: - "say %player% has just prestiged to Prestige I!" 2: name: "&8&l> &6Prestige II" cost: "10M" multiplier: 3 3: name: "&8&l> &6Prestige III" price: "100M" multiplier: 4 4: name: "&8&l> &6Prestige IV" cost: "1B" multiplier: 5 5: name: "&8&l> &6Prestige V" cost: "10B" multiplier: 6 ``` achievements.yml ```yaml # === Clicks Achievements === clicks_clicker_rookie: commands: # - "say %player% has earned the achievement Clicker Rookie!" clicks_finger_workout: commands: # - "say %player% has earned the achievement Finger Workout!" clicks_click_champion: commands: # - "say %player% has earned the achievement Click Champion!" ... ``` achievementCategories.yml ```yaml # This file contains the settings for the achievemnt categories. clicks: # This is the texture for the head item representing the "clicks" category. # You can find these values in the "Value" field in the "For Developers" section on minecraft-heads.com head: "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTMyYTU4MzhmZDljZDRjOTc3ZjE1MDcxZDY5OTdmZjVjN2Y5NTYwNzRhMmRhNTcxYTE5Y2NlZmIwM2M1NyJ9fX0=" cookies: head: "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjA1ZWY4ODE5ZmI2YTkyMTQ4MjQ5ZmY0OGMzOTE0ZTkyYzI3M2U3ODc0NTIzZmY3OTMwYjlmNWNjOTNjZWFhZSJ9fX0" upgrades: head: "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTVmZDY3ZDU2ZmZjNTNmYjM2MGExNzg3OWQ5YjUzMzhkNzMzMmQ4ZjEyOTQ5MWE1ZTE3ZThkNmU4YWVhNmMzYSJ9fX0=" events: head: "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjJiYTllYWQ5N2M4ZmI0NGIxNTZhZGU5Y2IyMTRlYTkxMjQzNGEyY2M0N2M0ZGVjNTBmMjEwMjFjNzVkZDJkNyJ9fX0=" prestige: head: "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTkwY2JkNzJlNDFhOWJkNDExYmU5MjliNzNmZDI2OTIwNjM2OGIyODEwZDZjNjgxOTkxOGNiOGViNjYyMjRmNCJ9fX0=" misc: head: "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjAzNzEyMDYyZTgyYTA3OTdmZDdiMGMxMDU3NmVkOTI0ODBmZGM5NGJkMmUwMGMyMTk2MWIzNGJlNjBlODU4ZSJ9fX0=" ... ```

Usage

下载太慢?试试 墨喵加速站,支持 Modrinth 和外网直链高速下载! 用的人越多,下载的越快!
下载与版本
评论(0)
登录 后发表评论。

暂无评论,抢个沙发吧~

举报此资源

请登录后举报

🔥 相关推荐
Project Chimera

价格:0 墨喵币
下载量:0

查看详情
FTBChunks - Gristlayer Overlay

价格:0 墨喵币
下载量:0

查看详情
TTRP Golden Laurels of Eldorath

价格:0 墨喵币
下载量:0

查看详情
[MTR4] British Rail Class 142 Pacer

价格:0 墨喵币
下载量:0

查看详情