加入YUMC插件论坛

这里有国内顶尖的插件作者,这里有国内一流的服务器服主,这里还有你想拥有的一切Minecraft信息

论坛逐步发展中 招收插件开发人员 开发者申请 或联系QQ: 502647092
  1. 本站需要使用 Cookie。如果您继续使用本站,则表示同意我们使用 Cookie。 了解详情。

Essential基础插件详解(持续更新)

本帖由 LK5202016-06-20 发布。版面名称:技巧分享

  1. LK520

    LK520 我不是熊孩子
    开发者

    Minecraft 正版帐号: LK520
    注册:
    2016-06-20
    帖子:
    140
    赞:
    18
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    重庆
    #1 LK520, 2016-06-20
    最后编辑: 2016-07-11
    如果有英语学霸可以直接点http://wiki.mc-ess.net/wiki/Main_Page

    Essentials插件作为一个服务器必备的基础插件,现在基本所有服务器都在使用。它的功能非常之多(不然怎么会有3MB大),而普通腐竹只知道一部分用途,忽略了其他很多有用的功能,在这里,我重新解释一下Essential的功能及其用途。

    基础用途
    1.自动保存地图功能
    AutoSaveWorld这个插件相信大家很熟了吧,目前比较好用的地图自动备份插件,但是Essentials本身就有地图备份相关的功能,此功能已经能满足大部分服主的要求,而不需要去安装新的插件(spigot服务端自带地图自动保存,就不多说了)。
    首先,找到config.yml,用noteped++进行编辑输入以下内容
    代码 (Text):
    backup:
      interval: 5
      command: 'save-all'
    这样每5分钟就能保存一次所有世界,根本不需要其他插件来做。
    如果你技术够娴熟,你还可以自己在服务端根目录创建一个.bat文件,并输入以下内容来做到地图备份
    代码 (Text):
    @echo off
    "压缩软件路径" a "backups/%date:~0,4%-%date:~5,2%-%date:~8,2%-%time:~0,2%-%time:~3,2%-%time:~6,2%".zip -r 要保存的世界
    pause
    2.help指令介绍
    Essentials插件提供了3种设置方式以提供不同的/help显示效果。Essentials会尽可能的遍历所有服务器插件然后获取其中所有的指令,但是如果插件未按标准编写,即在plugin.yml中没有注册过的指令是不会出现在help列表中的。
    添加以下权限可以使玩家获得查看某个插件帮助的权限
    essentials.help.<插件名>
    你也可以通过在Essentials插件目录中添加一个help.txt来自定义/help指令显示的内容。help.txt中的内容将会完全取代默认的help指令列表的内容(支持变量)。
    例如:

    代码 (Text):
    #你好啊玩家
    欢迎{PLAYER}
    你的IP地址{ADDRESS}
    服务器IP{IP}
    你的现金{BALANCE}
    help.txt必须以UTF-8无BOM编码保存!
    支持使用的变量列表
    玩家展示名称: {PLAYER}
    用户名: {USERNAME}
    服务器IP: {IP}
    玩家IP: {ADDRESS}
    金钱: {BALANCE}
    未读email: {MAILS}
    当前世界名: {WORLD}
    世界列表: {WORLDS}
    在线玩家数: {ONLINE}
    特殊玩家: {UNIQUE}
    玩家列表: {PLAYERLIST}
    服务器时间: {TIME}
    服务器日期: {DATE}
    时分PM/AM: {WORLDTIME12}
    游戏中时间: {WORLDTIME24}
    游戏中日期: {WORLDDATE}
    插件列表: {PLUGINS}
    bukkit版本: {VERSION}

    kit工具包设置:
    kit工具包是Essentials的一个重要功能,你可以用它来发放新手礼包,发放奖励甚至用它来做个系统商店都是可以的。
    礼包格式:
    kits:
    <kit name>:
    delay: <delay between usage>
    items:
    - <item number> <amount> <meta>
    - <item number> <amount> <meta>
    也可以参照原版config文件里面的内容制作
    kits:
    tools:
    delay: 10
    items:
    - 272 1
    - 273 1
    - 274 1
    - 275 1
    dtools:
    delay: 600
    items:
    - 278 1 efficiency:1 durability:1 fortune:1 name:&4Giga_Drill_Breaker lore:这钻头是突破天际的钻头
    - 277 1 digspeed:3 name:矮人 lore:挖掘|挖掘|挖洞
    - 298 1 color:255,255,255 name:白色的帽子 lore:美好的一天,美好的一天
    - 279:780 1
    notch:
    delay: 6000
    items:
    - 397:3 1 player:Notch
    color:
    delay: 6000
    items:
    - 387 1 title:&4书_&9与_&6颜色 author:Essentials lore:游戏内的颜色代码 book:颜色
    firework:
    delay: 6000
    items:
    - 401 1 name:愤怒的苦力帕 color:red fade:green type:creeper power:1
    - 401 1 name:星空 color:yellow,orange fade:blue type:star effect:trail,twinkle power:1
    - 401 2 name:太阳风 color:yellow,orange fade:red shape:large effect:twinkle color:yellow,orange fade:red shape:ball effect:trail color:red,purple fade:pink shape:star effect:trail power:1
    如果你觉得免费提供工具包不好,必须收费的话,可以加上:
    kit-tools: 价格
    并且还能对变量进行支持:
    - 278 1 efficiency:1 durability:1 fortune:1 name:&4Giga_Drill_Breaker lore:{PLAYER}的超级钻石镐
    [​IMG]

    如果你想要直接给玩家发放金钱,请输入:
    - $钱数
    支持的NBT代码(其他论坛转载)
    1.此NBT代码中,支持如&1&2等颜色代码,_在编辑中视为“空格”,|将视为换行(不可用于插件文件夹中的book.txt的编辑
    2.使用方法:这里以give命令为例子,give(给予) [玩家名] [物品ID:损伤值] [数量] [NBT代码]
    3.essentials中的NBT代码并没有1.7+版本中那么严谨,不需要写入tag的名称,如我们将一个石头的名字改为”插件WIKI”
    那么代码将为
    /give [你的名字] 1 1 Name:插件WIKI
    4.代码列表:Name:名字 为物品的名字
    Lore:文字 为物品Lore(也就是物品下面的那行字)编写,只有在编写Lore的时候可以使用|进行换行,Lore中不能有空格
    例子:
    /give [你的名字] 1 1 Name:插件WIKI Lore:中文bukkit插件WIKI|欢_迎_您_的_加_入
    Player:名字 这个只能用在头颅设定中(必须是头颅,不能是怪物头)
    这个将给予一个放出来显示皮肤的头颅

    4.关于kit工具包中书本的相关设置
    你可以在Essentials插件根目录新建一个book.txt
    内容可按如下示例

    #Colors
    Minecraft colors:
    &0 &&0 &1 &&1 &2 &&2 &3 &&3
    &4 &&4 &5 &&5 &6 &&6 &7 &&7
    &8 &&8 &9 &&9 &a &&a &b &&b
    &c &&c &d &&d &e &&e &f &&f
    &0
    &&k &kMagic&r &&l &lBold
    &&m &mStrike&r &&n &nUline
    &&o &oItalic&r &&r &rReset
    此时,kit工具包内应这样设置:
    - 387 1 title:&4书_&9与_&6颜色 author:Essentials lore:游戏内的颜色代码 book:颜色
    介绍:
    Title
    书本的标题,支持颜色代码,与book.txt中的章节名无关
    格式
    title:<title>

    Author
    书本作者,支持颜色代码
    格式
    author:<author>

    Lore
    书本的描述。
    格式
    lore:<description>

    Book
    这里填写的书本的章节名,对应book.txt中#后面的章节名字。
    格式
    book:<section name>
    最后别忘了,玩家需要有essentials.kits.<工具包名字>权限才能领取工具包
    插件命令以及权限列表
    到下面五楼去玩了
     
    • 不赞同 不赞同 x 1
  2. ljl

    ljl 普通成员

    注册:
    2016-06-21
    帖子:
    9
    赞:
    0
    声望:
    5
    快更新!!楼楼
     
  3. x1023755348

    x1023755348 普通成员

    注册:
    2016-06-17
    帖子:
    19
    赞:
    0
    声望:
    5
    性别:
    权限表适用于ess普通的么
     
  4. LK520

    LK520 我不是熊孩子
    开发者

    Minecraft 正版帐号: LK520
    注册:
    2016-06-20
    帖子:
    140
    赞:
    18
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    重庆
    嗯,通用的,如果你觉得帖子不错,可以给我点赞评分哦!
     
  5. LK520

    LK520 我不是熊孩子
    开发者

    Minecraft 正版帐号: LK520
    注册:
    2016-06-20
    帖子:
    140
    赞:
    18
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    重庆
    ESS的所有指令权限列表
    看了你就知道有多强大了(每天汉化一点,慢慢来)(权限加粗)

    essentials.bigtree 允许使用/bigtree 命令(生成一棵巨树).
    essentials.break 允许使用/break 命令(破坏某个方块).
    essentials.break.bedrock 允许破坏基岩.
    essentials.enchant 允许使用/enchant 命令(为某物品添加附魔).
    essentials.enchantments.[附魔名字] 允许附魔某一种类的附魔.
    essentials.enchantments.allowunsafe 允许附魔不安全的附魔(超高等级附魔,例如:时运127)
    essentials.exp 允许使用/exp命令(设置玩家经验).
    essentials.exp.give 允许玩家得到经验.
    essentials.exp.give.others 允许玩家给别人经验(必须要有essentials.exp.give权限).
    essentials.exp.others 允许玩家查看别人的经验.
    essentials.exp.set 允许玩家设置自己的经验(千万别给).
    essentials.exp.set.others 允许玩家设置其他人的经验(必须要有essentials.exp.set权限).
    essentials.feed 允许玩家使用/feed命令(加满饥饿值).
    essentials.feed.cooldown.bypass 允许玩家无冷却使用/feed命令
    essentials.feed.others 允许玩家给别的玩家恢复饥饿值.
    essentials.firework 允许使用/firework命令(放一个自定义烟花).
    essentials.firework.fire 允许玩家生成一个烟花在手中.
    essentials.fly 允许使用/fly命令(飞行权限).
    essentials.fly.others 允许玩家为别人开启飞行.
    essentials.fly.safelogin 当玩家从不安全的地方下线后(例如空中),当玩家再次上线时,会为他开启飞行.
    essentials.gamemode 允许使用/gamemode命令(游戏模式,千万别给).
    essentials.gamemode.others 允许玩家为别人设置游戏模式.
    essentials.itemspawn.meta-chapter-[chapter] 允许玩家在手中生成一本书,文件为book.txt.
    Cheat give essentials.enchantments.allowunsafe If enabled in the config, this permission allows unsafe enchantments.
    Cheat give essentials.give Allow access to the /give command.
    Cheat give essentials.itemspawn.exempt Allows spawning of items on the spawn blacklist.
    Cheat give essentials.itemspawn.item-<itemname> If permission-based-item-spawn: Spawn <itemname>
    Cheat give essentials.itemspawn.item-[itemid] If permission-based-item-spawn: Spawn [itemid]
    Cheat give essentials.itemspawn.item-all If permission-based-item-spawn: Spawn all items
    Cheat give essentials.itemspawn.meta-author Allow 'author' meta to be used in item spawning.
    Cheat give essentials.itemspawn.meta-book Allows spawning of books with pre-filled content from books.txt
    Cheat give essentials.itemspawn.meta-firework Allow specific meta for fireworks.
    Cheat give essentials.itemspawn.meta-head Allows spawning of mob heads.
    Cheat give essentials.itemspawn.meta-lore Allow 'lore' meta to be used in item spawning.
    Cheat give essentials.itemspawn.meta-title Allow 'title' meta to be used in item spawning.
    Cheat give essentials.oversizedstacks Allows spawning of stacks above normal max stack size
    Cheat god essentials.god Allow access to the /god command.
    Cheat god essentials.god.others Allows you to god other players
    Cheat god essentials.god.pvp Allows you to attack other players while in god mode.
    Cheat hat essentials.hat Allow access to the /hat command.
    Cheat heal essentials.heal Allow access to the /heal command.
    Cheat heal essentials.heal.cooldown.bypass Bypass the heal cooldown
    Cheat heal essentials.heal.others Allows healing another player
    Cheat item essentials.itemspawn.meta-chapter-[chapter] Allows spawning of specific books only, from book.txt
    Cheat item essentials.enchantments.[enchantmentname] Allows access to each enchantment type.
    Cheat item essentials.enchantments.allowunsafe If enabled in the config, this permission allows unsafe enchantments.
    Cheat item essentials.item Allow access to the /item command.
    Cheat item essentials.itemspawn.exempt Allows spawning of items on the spawn blacklist.
    Cheat item essentials.itemspawn.item-[itemid] If permission-based-item-spawn: Spawn [itemid]
    Cheat item essentials.itemspawn.item-[itemname] If permission-based-item-spawn: Spawn [itemname]
    Cheat item essentials.itemspawn.item-all If permission-based-item-spawn: Spawn all items.
    Cheat item essentials.itemspawn.meta-author Allow 'author' meta to be used in item spawning.
    Cheat item essentials.itemspawn.meta-book Allows spawning of books with pre-filled content from books.txt
    Cheat item essentials.itemspawn.meta-firework Allow specific meta for fireworks.
    Cheat item essentials.itemspawn.meta-head Allows spawning of mob heads.
    Cheat item essentials.itemspawn.meta-lore Allow 'lore' meta to be used in item spawning.
    Cheat item essentials.itemspawn.meta-title Allow 'title' meta to be used in item spawning.
    Cheat item essentials.oversizedstacks Allows spawning of stacks above normal max stack size
    Cheat kit essentials.kit Allow access to the /kit command.
    Cheat kit essentials.kit.exemptdelay Exempts you from the kit delay feature, this affects signs as well as command.
    Cheat kit essentials.kit.others Allows spawning of kits on other players.
    Cheat kit essentials.kits.* Allows access to all created kits
    Cheat kit essentials.kits.[kitname] Give access to a single kit, where [kitname] is the name of an existing kit.
    Cheat more essentials.more Allows access to the /more command.
    Cheat more essentials.oversizedstacks Allows spawning of oversized stacks.
    Cheat ptime essentials.ptime Allow access to the /ptime command.
    Cheat ptime essentials.ptime.others Allows you to change the time of another online player.
    Cheat repair essentials.repair Allow access to the /repair command.
    Cheat repair essentials.repair.all Unlock the /repair all ability
    Cheat repair essentials.repair.armor Repair all also repairs equipped armor.
    Cheat repair essentials.repair.enchanted Repairing of enchanted items.
    Cheat skull essentials.skull Allow access to the /skull command.
    Cheat skull essentials.skull.modify Allow changing the owner of an existing player skull.
    Cheat skull essentials.skull.others Allow creating skulls belonging to other players.
    Cheat skull essentials.skull.spawn Allows the spawning of a skull, default if the player isn't holding a skull.
    Cheat speed essentials.speed Allow access to the /speed command.
    Cheat speed essentials.speed.bypass Allows you to bypass the speed limits set in the config.yml
    Cheat speed essentials.speed.fly This permission will allow a player to change fly speed only.
    Cheat speed essentials.speed.others Allows you to modify the speed of other players.
    Cheat speed essentials.speed.walk This permission will allow a player to change walk speed only.
    Cheat time essentials.time Allow access to the /time command.
    Cheat time essentials.time.set User is allowed to change the time of the world.
    Cheat tree essentials.tree Allow access to the /tree command.
    Cheat unlimited essentials.unlimited Allow access to the /unlimited command.
    Cheat unlimited essentials.unlimited.item-[itemid] Allows the player to recieve an unlimited stack of [itemid]
    Cheat unlimited essentials.unlimited.item-[itemname] Allows the player to recieve an unlimited stack of [itemname]
    Cheat unlimited essentials.unlimited.item-all Allows the player to recieve an unlimited stack of any item.
    Cheat unlimited essentials.unlimited.item-bucket Allows the player to recieve an unlimited use of empty/lava/water buckets.
    Cheat unlimited essentials.unlimited.others Allows the player to gift/remove another player with an unlimited stack.
    Cheat workbench essentials.workbench Allow access to the /workbench command.
    Economy balance essentials.balance Allow access to the /balance command.
    Economy balance essentials.balance.others Allows you to see the balance of other players
    Economy balancetop essentials.balancetop Allow access to the /balancetop command.
    Economy eco essentials.eco Allow access to the /eco command.
    Economy eco essentials.eco.loan Allows the player to have a negative balance.
    Economy pay essentials.pay Allow access to the /pay command.
    Economy pay essentials.pay.multiple This allows you to pay multiple users in a single command.
    Economy sell essentials.sell Allow access to the /sell command.
    Economy setworth essentials.setworth Allow access to the /setworth command.
    Economy worth essentials.worth Allow access to the /worth command.
     
  6. LK520

    LK520 我不是熊孩子
    开发者

    Minecraft 正版帐号: LK520
    注册:
    2016-06-20
    帖子:
    140
    赞:
    18
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    重庆
    继续上一楼的列表
    General afk essentials.afk Allow access to the /afk command.
    General afk essentials.afk.auto Players with this permission will be set to afk after a period of inaction as defined in the config file.
    General afk essentials.afk.kickexempt Exempts the user from being auto kicked for AFK
    General afk essentials.afk.others Allows you to AFK other players.
    General book essentials.book Allow access to the /book command.
    General book essentials.book.author Allows the user to change the author of a book.
    General book essentials.book.others Allow editing a book belonging to another player.
    General book essentials.book.title Allows the user to change the title of a written book
    General compass essentials.compass Allow access to the /compass command.
    General customtext essentials.customtext Allow access to the /customtext command and all aliases.
    General depth essentials.depth Allow access to the /depth command.
    General getpos essentials.getpos Allow access to the /getpos command.
    General getpos essentials.getpos.others Allow user to get the position of another player.
    General help essentials.help Allow access to the /help command.
    General help essentials.help.[pluginname] Manually adds the commands from a plugin to this group's /help. Name is all lowercase.
    General help essentials.help.[pluginname].[command] Manually adds a command from a plugin to this group's /help. Name is all lowercase.
    General helpop essentials.helpop Allow access to the /helpop command.
    General helpop essentials.helpop.receive Allows you to see Helpop messages
    General ignore essentials.chat.ignoreexempt Someone with this permission will not be ignored, even if they are on another persons ignore list.
    General ignore essentials.ignore Allow access to the /ignore command.
    General info essentials.info Allow access to the /info command.
    General itemdb essentials.itemdb Allows access to the /itemdb command.
    General list essentials.list Allow access to the /list command.
    General list essentials.list.hidden Show hidden users
    General mail essentials.mail Allow access to the /mail command.
    General mail essentials.mail.send Send mail
    General mail essentials.mail.sendall Allows sending mail to all players at the same time
    General me essentials.me Allow access to the /me command.
    General motd essentials.motd User sees MOTD on connect, and can use the command.
    General msg essentials.msg Allow access to the /msg command.
    General msg essentials.msg.color This allows you to color your private messages using color codes.
    General msg essentials.msg.format This allows you to format your private messages using format codes.
    General msg essentials.msg.magic This allows you to use the matrix/magic color in your private messages.
    General msg essentials.msg.multiple This allows you to message multiple users in a single command.
    General msg essentials.msg.url This allows you to use urls in your private messages.
    General near essentials.near Allow access to the /near command.
    General near essentials.near.maxexempt Allows bypassing the radius limit.
    General near essentials.near.others Allows using the near command on another player.
    General nick essentials.nick Allow access to the /nick command.
    General nick essentials.nick.color This allows you to color your nickname using color codes.
    General nick essentials.nick.format This allows you to format your nickname using format codes.
    General nick essentials.nick.magic This allows you to use the matrix/magic color in your nickname.
    General nick essentials.nick.others Gives you permission to give other players a nick name
    General powertool essentials.powertool Allow access to the /powertool command.
    General powertool essentials.powertool.append Allows adding multiple commands to a single powertool.
    General powertooltoggle essentials.powertooltoggle Allow access to the /powertooltoggle command.
    General r essentials.msg Allow access to the /msg command.
    General r essentials.msg.color This allows you to color your private messages using color codes.
    General r essentials.msg.format This allows you to format your private messages using format codes.
    General r essentials.msg.magic This allows you to use the matrix/magic color in your private messages.
    General r essentials.msg.url This allows you to use urls in your private messages.
    General realname essentials.realname Allow access to the /realname command.
    General recipe essentials.recipe Allow access to the /recipe command.
    General rules essentials.rules Allow access to the /rules command.
    General seen essentials.seen Allow access to the /seen command.
    General seen essentials.seen.banreason Allows the user to see why a user is banned.
    General seen essentials.seen.extra Allow the user to see the last IP address a user connected with, and their last logged in location.
    General seen essentials.seen.ipsearch Allows the user to search IPs for username matches.
    General spawner essentials.spawner Allow access to the /spawner command.
    General spawner essentials.spawner.* Allows the spawning of all mobs
    General spawner essentials.spawner.[mob] Allows access to spawn a specific mob
    General suicide essentials.suicide Allow access to the /suicide command.
    General whois essentials.geoip.show Shows the GeoIP location of a player, if the GeoIP module is installed.
    General whois essentials.whois Allow access to the /whois command.
     
  7. LK520

    LK520 我不是熊孩子
    开发者

    Minecraft 正版帐号: LK520
    注册:
    2016-06-20
    帖子:
    140
    赞:
    18
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    重庆
    继续上一楼(希望论坛字数限制能再多点)
    Moderator antioch essentials.antioch Allow access to the /antioch command.
    Moderator backup essentials.backup Allow access to the /backup command.
    Moderator ban essentials.ban Allow access to the /ban command.
    Moderator ban essentials.ban.exempt Prevents a specified group or player from being banned
    Moderator ban essentials.ban.notify Players with this permission will receive a notification when a ban is set.
    Moderator ban essentials.ban.offline Allows banning of players who are offline. This may allow you to ban exempt players.
    Moderator banip essentials.ban.notify Players with this permission will receive a notification when an IP ban is set.
    Moderator banip essentials.banip Allow access to the /banip command.
    Moderator broadcast essentials.broadcast Allow access to the /broadcast command.
    Moderator burn essentials.burn Allow access to the /burn command.
    Moderator clearinventory essentials.clearinventory Allow access to the /clearinventory command.
    Moderator clearinventory essentials.clearinventory.all Allows a player to clear all players inventories.
    Moderator clearinventory essentials.clearinventory.others Allows you to clear other player's inventory
    Moderator deljail essentials.deljail Allow access to the /deljail command.
    Moderator enderchest essentials.enderchest Allow access to the /enderchest command.
    Moderator enderchest essentials.enderchest.modify Allows you to modify the contents of another players enderchest.
    Moderator enderchest essentials.enderchest.others Allows you to see the contents of another players enderchest.
    Moderator essentials essentials.essentials Allow access to the /essentials command.
    Moderator ext essentials.ext Allow access to the /ext command.
    Moderator fireball essentials.fireball Allow access to the /fireball command.
    Moderator gc essentials.gc Allow access to the /gc command.
    Moderator invsee essentials.invsee Allow access to the /invsee command.
    Moderator invsee essentials.invsee.modify Players can modify the other players inventory (remove/add items).
    Moderator invsee essentials.invsee.preventmodify Prevents other players from modifying the players inventory.
    Moderator jails essentials.jails Allow access to the /jails command.
    Moderator kick essentials.kick Allow access to the /kick command.
    Moderator kick essentials.kick.exempt Prevents the player from being kicked.
    Moderator kick essentials.kick.notify User sees a notification when a user is kicked.
    Moderator kickall essentials.kickall Allow access to the /kickall command.
    Moderator kill essentials.kill Allow access to the /kill command.
    Moderator kill essentials.kill.exempt Prevents the player from being killed.
    Moderator kill essentials.kill.force Force player death, even if event is cancelled.
    Moderator lightning essentials.lightning Allow access to the /lightning command.
    Moderator lightning essentials.lightning.others Allows use of /lightning [playername]
    Moderator mute essentials.mute Allow access to the /mute command.
    Moderator mute essentials.mute.exempt Prevents a specified group or player from being muted
    Moderator mute essentials.mute.notify Players with this permission will receive a notification when a player is muted.
    Moderator mute essentials.mute.offline Allows muting of players who are offline. This may allow you to mute exempt players.
    Moderator nuke essentials.nuke Allow access to the /nuke command.
    Moderator ping essentials.ping Allow access to the /ping command.
    Moderator remove essentials.remove Allow access to the /remove command.
    Moderator setjail essentials.setjail Allow access to the /setjail command.
    Moderator socialspy essentials.socialspy Allow access to the /socialspy command.
    Moderator socialspy essentials.socialspy.others Allows you to toggle the social spy status of others.
    Moderator spawnmob essentials.spawnmob Allow access to the /spawnmob command.
    Moderator spawnmob essentials.spawnmob.* Allow the spawning of all mobs
    Moderator spawnmob essentials.spawnmob.[mob] Allow access to spawn a specific mob
    Moderator spawnmob essentials.spawnmob.stack Allows the spawning of stacked mobs.
    Moderator sudo essentials.sudo Allow access to the /sudo command.
    Moderator sudo essentials.sudo.exempt Prevents the holder from being sudo'ed by another user.
    Moderator tempban essentials.ban.notify Players with this permission will receive a notification when a ban is set.
    Moderator tempban essentials.tempban Allow access to the /tempban command.
    Moderator tempban essentials.tempban.exempt Prevents a specified group or player from being tempbanned
    Moderator tempban essentials.tempban.offline Allows temp-banning of players who are offline. This may allow you to ban exempt players.
    Moderator tempban essentials.tempban.unlimited Allows bypassing config file max ban time limit.
    Moderator thunder essentials.thunder Allow access to the /thunder command.
    Moderator togglejail essentials.jail.allow.<command> Allows essentials commands to be used while jailed (requires regular perm).
    Moderator togglejail essentials.jail.exempt Prevents a specified group or player from being jailed
    Moderator togglejail essentials.togglejail Allow access to the /togglejail command.
    Moderator togglejail essentials.togglejail.offline Allows jailing of players who are offline. This may allow you to jail exempt players.
    Moderator unban essentials.ban.notify Players with this permission will receive a notification when a ban is removed.
    Moderator unban essentials.unban Allow access to the /unban command.
    Moderator unbanip essentials.ban.notify Players with this permission will receive a notification when an IP ban is removed.
    Moderator unbanip essentials.unbanip Allow access to the /unbanip command.
    Moderator vanish essentials.vanish Allow access to the /vanish command.
    Moderator vanish essentials.vanish.effect People with this effect will get the potion effect applied while vanished.
    Moderator vanish essentials.vanish.interact Allows the player to use commands which interact with a vanished player.
    Moderator vanish essentials.vanish.others Allows you to toggle vanish on others
    Moderator vanish essentials.vanish.pvp Allows players who are vanished to attack other players.
    Moderator vanish essentials.vanish.see Allows you to see a vanished player.
    Moderator weather essentials.weather Allow access to the /weather command.
     
  8. LK520

    LK520 我不是熊孩子
    开发者

    Minecraft 正版帐号: LK520
    注册:
    2016-06-20
    帖子:
    140
    赞:
    18
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    重庆
    继续上面的列表
    Spawn setspawn essentials.setspawn Allow access to the /setspawn command.
    Spawn spawn essentials.spawn Allow access to the /spawn command.
    Spawn spawn essentials.spawn.others Allows you to teleport other people to spawn
    Teleport back essentials.back Allow access to the /back command.
    Teleport back essentials.back.ondeath Give this permission to allow players to use /back to go to their death spot
    Teleport back essentials.keepxp Allows the user to keep their exp on death, instead of dropping it.
    Teleport back essentials.worlds.<worldname> Allows players access to a specific world.
    Teleport delhome essentials.delhome Allow access to the /delhome command.
    Teleport delhome essentials.delhome.others Allows you to delete the homes of other players.
    Teleport delwarp essentials.delwarp Allow access to the /delwarp command.
    Teleport home essentials.home Allow access to the /home command.
    Teleport home essentials.home.bed Allow access to the vanilla bed home.
    Teleport home essentials.home.others Allows you to teleport to homes of other players
    Teleport home essentials.worlds.<worldname> Allows players access to a specific world.
    Teleport jump essentials.jump Allow access to the /jump command.
    Teleport sethome essentials.sethome Allow access to the /sethome command.
    Teleport sethome essentials.sethome.bed Allows the player to right click a bed during daytime to update their 'bed' home.
    Teleport sethome essentials.sethome.multiple Allows player to have multiple homes, or create named homes. Required for 2+ homes.
    Teleport sethome essentials.sethome.multiple.[set name] Raise the multiple home limit to a setting defined in the config file.
    Teleport sethome essentials.sethome.multiple.unlimited Removes the cap on the number of homes people are allowed (if they have multiple homes).
    Teleport sethome essentials.sethome.others Allows you to change another users home location.
    Teleport setwarp essentials.setwarp Allow access to the /setwarp command.
    Teleport setwarp essentials.warp.overwrite.* Allows overwriting of all existing warps.
    Teleport setwarp essentials.warp.overwrite.[warpname] Allows overwriting of existing warps.
    Teleport top essentials.top Allow access to the /top command.
    Teleport tp essentials.tp Allow access to the /tp command.
    Teleport tp essentials.tp.others Allow players to teleport another player.
    Teleport tp essentials.worlds.<worldname> Allows players access to a specific world.
    Teleport tpa essentials.tpa Allow access to the /tpa command.
    Teleport tpa essentials.worlds.<worldname> Allows players access to a specific world.
    Teleport tpaall essentials.tpaall Allow access to the /tpaall command.
    Teleport tpaall essentials.worlds.<worldname> Allows teleporting player to a specific world.
    Teleport tpaccept essentials.tpaccept Allow access to the /tpaccept command.
    Teleport tpahere essentials.tpahere Allow access to the /tpahere command.
    Teleport tpahere essentials.worlds.<worldname> Allows teleporting players to a specific world.
    Teleport tpall essentials.tpall Allow access to the /tpall command.
    Teleport tpall essentials.worlds.<worldname> Allows teleporting players to a specific world.
    Teleport tpdeny essentials.tpdeny Allow access to the /tpdeny command.
    Teleport tphere essentials.tphere Allow access to the /tphere command.
    Teleport tphere essentials.worlds.<worldname> Allows players access to a specific world.
    Teleport tpo essentials.tpo Allow access to the /tpo command.
    Teleport tpo essentials.worlds.<worldname> Allows players access to a specific world.
    Teleport tpohere essentials.tpohere Allow access to the /tpohere command.
    Teleport tpohere essentials.worlds.<worldname> Allows players access to a specific world.
    Teleport tppos essentials.tppos Allow access to the /tppos command.
    Teleport tptoggle essentials.teleport.cooldown.bypass Bypass the teleport cooldown
    Teleport tptoggle essentials.teleport.timer.bypass Bypass the teleport delay
    Teleport tptoggle essentials.teleport.timer.move Allows players to move while waiting for teleport.
    Teleport tptoggle essentials.tptoggle Allow access to the /tptoggle command.
    Teleport tptoggle essentials.tptoggle.others Allows a player to toggle the teleport status of another player.
    Teleport tptoggle essentials.vanish.interact Allows the user to teleport to players who are vanished.
    Teleport warp essentials.warp Allow access to the /warp command.
    Teleport warp essentials.warp.list Specifies whether you can view warp list with /warp.
    Teleport warp essentials.warp.otherplayers Allows warping another player.
    Teleport warp essentials.warps.* Allows access to all warps.
    Teleport warp essentials.warps.[warpname] If you have per-warp-permission set to true in the config.yml then you can limit what warps players can use. This also controls what players would see with /warp.
    Teleport world essentials.world Allow access to the /world command.
    Teleport world essentials.worlds.<worldname> Allows players access to a specific world.
     
  9. LK520

    LK520 我不是熊孩子
    开发者

    Minecraft 正版帐号: LK520
    注册:
    2016-06-20
    帖子:
    140
    赞:
    18
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    重庆
    最后一波:
    Various None essentials.silentjoin Suppress join messages for users with this permission.
    Various None essentials.build Allows people to build when using permission systems which don't support build toggles.
    Various None essentials.build.break.<id>[:datavalue] Allows breaking of a block.
    Various None essentials.build.craft.<id>[:datavalue] Allows crafting of an item.
    Various None essentials.build.drop.<id>[:datavalue] Allows dropping of an item.
    Various None essentials.build.interact.<id>[:datavalue] Allows interacting with a blocks or item.
    Various None essentials.build.pickup.<id>[:datavalue] Allows collecting of an item.
    Various None essentials.build.place.<id>[:datavalue] Allows placing a block.
    Various None essentials.chat.color This allows you to color your chat messages using color codes.
    Various None essentials.chat.format This allows you to format your chat messages using format codes.
    Various None essentials.chat.magic This allows you to use the matrix/magic color in your chat messages.
    Various None essentials.chat.question This allows you to send global qeustions, used if a chat-raidus is configured.
    Various None essentials.chat.shout This allows you to send global messages, used if a chat-raidus is configured.
    Various None essentials.chat.spy A permission designed for admins, to intercept all local messages (ignoring the chat-radius).
    Various None essentials.chat.url This allows you to use urls in your chat messages.
    Various None essentials.geoip.hide Allows you to hide your country and city from people who have permission essentials.geoip.show
    Various None essentials.geoip.show Allows you to see the country and city of players.
    Various None essentials.joinfullserver Player can join when the server is full.
    Various None essentials.nocommandcost.[command] Removes the command cost of a given command.
    Various None essentials.nocommandcost.all Removes the command cost of all commands.
    Various None essentials.protect Allows the protection of rails and signs, otherwise they are not protected.
    Various None essentials.protect.admin Allows the destruction of signs and rails.
    Various None essentials.protect.alerts Allows a player to recieve protect alerts.
    Various None essentials.protect.alerts.notrigger Users with this permission do not trigger protect alerts.
    Various None essentials.protect.damage.contact Player will receive contact damage
    Various None essentials.protect.damage.creeper Player will receive creeper damage
    Various None essentials.protect.damage.disable Admin override to prevent admins from dying
    Various None essentials.protect.damage.drowning Player will receive drowning damage
    Various None essentials.protect.damage.fall Player will receive fall damage
    Various None essentials.protect.damage.fire Player will receive fire damage
    Various None essentials.protect.damage.fireball Player will receive fireball damage
    Various None essentials.protect.damage.lava Player will receive lava damage
    Various None essentials.protect.damage.lightning Player will receive lightning damage
    Various None essentials.protect.damage.projectiles Player will receive projectile damage
    Various None essentials.protect.damage.suffocation Player will receive suffocation damage
    Various None essentials.protect.damage.tnt Player will receive tnt damage
    Various None essentials.protect.entitytarget.bypass Allows a player to be targeted by mobs.
    Various None essentials.protect.exemptbreak Allows a player to ignore the break blacklist.
    Various None essentials.protect.exemptplacement Allows a player to ignore the block placement blacklist.
    Various None essentials.protect.exemptusage Allows a player to ignore the usage blacklist.
    Various None essentials.protect.ownerinfo Allows a player to examine protected objects to find their owner.
    Various None essentials.protect.pvp When prevent PVP is set to true, this allows players to still PVP. Both attacker and defender need to have this permission.
    Various None essentials.pvpdelay.exempt Exempts players from the 'pvp delay' option in the config file.
    Various None essentials.signs.break.balance Controls who can break balance signs.
    Various None essentials.signs.break.buy Controls who can break buy signs.
    Various None essentials.signs.break.disposal Controls who can break disposal signs.
    Various None essentials.signs.break.enchant Controls who can break enchant signs.
    Various None essentials.signs.break.free Controls who can break free signs.
    Various None essentials.signs.break.gamemode Controls who can break gamemode signs.
    Various None essentials.signs.break.heal Controls who can break heal signs.
    Various None essentials.signs.break.info Controls who can break info signs.
    Various None essentials.signs.break.kit Controls who can break kit signs.
    Various None essentials.signs.break.mail Controls who can break a mail sign.
    Various None essentials.signs.break.protection Controls who can break a protection sign. Typically given to everybody.
    Various None essentials.signs.break.repair Controls who can break repair signs.
    Various None essentials.signs.break.sell Controls who can break sell signs.
    Various None essentials.signs.break.spawnmob Controls who can break spawnmob signs.
    Various None essentials.signs.break.time Controls who can break time signs.
    Various None essentials.signs.break.trade Controls who can break trade signs.
    Various None essentials.signs.break.warp Controls who can break warp signs.
    Various None essentials.signs.break.weather Controls who can break weather signs.
    Various None essentials.signs.color This allows you to color your signs using color codes.
    Various None essentials.signs.create.balance Controls who can create balance signs.
    Various None essentials.signs.create.buy Controls who can create buy signs.
    Various None essentials.signs.create.disposal Controls who can create disposal signs.
    Various None essentials.signs.create.enchant Controls who can create enchant signs.
    Various None essentials.signs.create.free Controls who can create free signs.
    Various None essentials.signs.create.gamemode Controls who can create gamemode signs.
    Various None essentials.signs.create.heal Controls who can create heal signs.
    Various None essentials.signs.create.info Controls who can create info signs.
    Various None essentials.signs.create.kit Controls who can create kit signs.
    Various None essentials.signs.create.mail Controls who can create a mail sign.
    Various None essentials.signs.create.protection Controls who can create a protection sign.
    Various None essentials.signs.create.repair Controls who can create repair signs.
    Various None essentials.signs.create.sell Controls who can create sell signs.
    Various None essentials.signs.create.spawnmob Controls who can create spawnmob signs.
    Various None essentials.signs.create.time Controls who can create time signs.
    Various None essentials.signs.create.trade Controls who can create trade signs.
    Various None essentials.signs.create.warp Controls who can create warp signs.
    Various None essentials.signs.create.weather Controls who can create weather signs.
    Various None essentials.signs.enchant.allowunsafe Allows using [enchant] signs to perform unsafe enchantments
    Various None essentials.signs.format This allows you to format your signs using format codes.
    Various None essentials.signs.magic This allows you to use the matrix/magic color in your signs.
    Various None essentials.signs.protection.override Used to override any protections. Typically given to mods & admins
    Various None essentials.signs.trade.override Used to override the creator only protection on trade signs. Typically given to mods & admins
    Various None essentials.signs.use.balance Controls who can use balance signs.
    Various None essentials.signs.use.buy Controls who can use buy signs.
    Various None essentials.signs.use.disposal Controls who can use disposal signs.
    Various None essentials.signs.use.enchant Controls who can use enchant signs.
    Various None essentials.signs.use.free Controls who can use free signs.
    Various None essentials.signs.use.gamemode Controls who can use gamemode signs.
    Various None essentials.signs.use.heal Controls who can use heal signs.
    Various None essentials.signs.use.info Controls who can use info signs.
    Various None essentials.signs.use.kit Controls who can use kit signs.
    Various None essentials.signs.use.mail Controls who can use a mail sign.
    Various None essentials.signs.use.protection Controls who can use a protection sign. Typically given to everybody.
    Various None essentials.signs.use.repair Controls who can use repair signs.
    Various None essentials.signs.use.sell Controls who can use sell signs.
    Various None essentials.signs.use.spawnmob Controls who can use spawnmob signs.
    Various None essentials.signs.use.time Controls who can use time signs.
    Various None essentials.signs.use.trade Controls who can use trade signs.
    Various None essentials.signs.use.warp Controls who can use warp signs.
    Various None essentials.signs.use.weather Controls who can use weather signs.
    Various None essentials.silentquit Suppress leave/quit messages for users with this permission.
    Various None essentials.sleepingignored User isn't required to be sleeping, for time to be reset.
    XMPP setxmpp essentials.setxmpp Allow access to the /setxmpp command.
    XMPP xmpp essentials.xmpp Allow access to the /xmpp command.
    XMPP xmppspy essentials.xmppspy Allow access to the /xmppspy command.
     
  10. Gods_Es

    Gods_Es 普通成员

    注册:
    2016-06-16
    帖子:
    108
    赞:
    17
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    德国
    主页:
    鹅鹅鹅
     

    附件文件:

    • 222.png
      222.png
      文件大小:
      53.9 KB
      浏览:
      9
  11. LK520

    LK520 我不是熊孩子
    开发者

    Minecraft 正版帐号: LK520
    注册:
    2016-06-20
    帖子:
    140
    赞:
    18
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    重庆
    UC浏览器
     
  12. Gods_Es

    Gods_Es 普通成员

    注册:
    2016-06-16
    帖子:
    108
    赞:
    17
    声望:
    150
    性别:
    职业:
    学生
    所在地:
    德国
    主页:
    ::25::25::25