Inactive [CHAT] iChat 2.4.4 - Custom Chat Formatting [1337]

Discussion in 'Inactive/Unsupported Plugins' started by Drakia, Feb 24, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    Drakia

    iChat 2.x - Custom Chat Formatting
    Version: 2.4.4
    CraftBukkit: 1337

    Plugin Support:
    PermissionsBukkit
    bPermissions
    Permissions 2.x
    Permissions 3.x

    If you are requesting help, post your entire server log (From the time it opens, until somebody talks), your entire Permission config file (As well as what it's named), and iChat config files. This information is REQUIRED for me to help you.
    http://pastebin.com/ <-- Post configs there when asking for help

    =============
    Description
    =============
    Custom chat formatting.
    Based on the idea of iChat v1.5 by Nijikokun.
    Includes code and concepts from mChat by MiracleM4n <https://github.com/MiracleM4n/mChat/>

    Before downloading: iChat 2.4.x has quite a few changes over the 2.3.x branches. All permissions plugins are handled in one plugin, and they all operate in relatively the same way now. This means you WILL need to redo your configs.
    Download (Direct JAR): http://thedgtl.net/bukkit/iChat.jar
    Source: https://github.com/TheDgtl/iChat

    =============
    Features
    =============
    Supports Permissions (Both 2.0 and 2.1), and SuperPerms handlers (PermissionsBukkit, bPermissions, and PermissionsEx).
    Allows you to specify a prefix/suffix/variable for users and groups on a per-world or global basis.
    A user-specific prefix/suffix/variable will take priority over a group prefix/suffix/variable, a world-based prefix/suffix/variable will take priority over a global prefix/suffix/variable.
    Unlimited amount of custom variables for use in chat format.
    Colors are supported in all parts of the formatting and chat text.
    Usable health bar and health amount in the formatting.
    Support for formatting of /me

    =============
    Formatting
    =============
    Message formatting is defined in the file plugins/iChat/config.yml
    The message formats can contain characters, color codes, and variables.
    To use colors use the standard Minecraft color codes found here: http://www.minecraftwiki.net/wiki/Classic_Server_Protocol#Color_Codes

    Available variables:
    +prefix - The prefix for this user, or this users group if they don't have one defined.
    +suffix - The suffix for this user, or this users group if they don't have one defined.
    +name - The users name
    +displayname - The users display name (Set by plugins such as Towny)
    +iname - The iChat formatted player name (Defined by iname-format)
    +group - The users group
    +healthbar - A visual health bar for this user
    +health - The users current health value (Between 0 and 20)
    +message - The message the player typed
    +world - What world the player is currently in
    +time - Timestamp, configurable in config.yml. Uses the format for SimpleDateFormat - http://bit.ly/dscw40

    Example (Default):
    Code:
    iname-format: '[+prefix+group+suffix&f] +displayname'
    message-format: '+iname: +message'
    me-format: '* +name +message'
    date-format: 'HH:mm:ss'
    handle-me: true
    Example date-format (Default):
    date-format: 'HH:mm:ss'

    As of iChat 2.4.0 there have been a few changes in the way variables and groups are handled.

    ==========
    Groups
    ==========
    As of iChat 2.4.3 native groups are supported in Permissions 2.x/3.x, PermissionsBukkit, bPermissions, and PermissionsEx.

    ==========
    Variables
    ==========
    Variables are now defined in variables.yml in the iChat directory. This includes prefixes, suffixes, and custom variables.
    You can define an unlimited number of custom variables for groups and users, if these variables contain the static variables such as +prefix,
    +suffix, +health, etc then those variables will be replaced with their respective values.
    If a variable does not exist then it will be replaced with a blank string.

    As of iChat 2.4.4 you can now specify world-specific variables. To specify a per-world group or user variable (Prefix, suffix, or variable) you just specify it under the world as shown in the 'world' example in the default variables.yml below. Anything specified in the parent 'users' or 'groups' nodes will be considered global for all worlds.

    Default variables.yml:
    ---------------------
    Code:
    # iChat Variable Config
    # This is now the only method for defining variables
    users:
        Drakia:
            prefix: '&e'
    groups:
        Admin:
            prefix: '&c'
            suffix: ''
        Default:
            prefix: ''
            suffix: ''
    world:
      users:
        Drakia:
          prefix: '&a'
    Default config.yml:
    ---------------------
    Code:
    handle-me: true
    date-format: HH:mm:ss
    message-format: '+iname: +message'
    me-format: '* +name +message'
    iname-format: '[+prefix+group+suffix&f] +displayname'
    =============
    Examples
    =============
    To make a group colored:
    variables.yml:
    Code:
    groups:
        Default:
            prefix: '&4'
            suffix: ''
    config.yml:
    Code:
    message-format: '[+prefix+group&f] +name: +message'
    To make a single username colored:
    variables.yml:
    Code:
    users:
        Drakia:
            prefix: ''
            suffix: '&1'
    Config:
    Code:
    message-format: '[+prefix+group&f] +suffix+name&f: +message'
    As you can see, suffixes and prefixes can be used anywhere, in any combination. In this example we use prefix as a method for coloring group names, while suffix is used to color individual users. On our server we have prefixes such as "&f[&2Mod&f] " so that we can have custom tags per group instead of just the groups name. There is no end to the combination of things you can do, please TRY things before you come asking for someone else to do it for you. There are too many combinations of things for me to answer every question about how to color specific things.
    I will not be offering answers to questions such as "How do I color names?" or really anything else to do with specifics of formatting. It's pretty straightforward what you can do, and if you can't take the time to experiment then I'm not going to take the time to answer your questions.

    =============
    Configuration
    =============
    iname-format - The format used for +iname (Default: '[+prefix+group+suffix&f] +displayname')
    message-format - The format used for basic chat (Default: '+iname: +message')
    date-format - The format used for +date (Default: 'HH:mm:ss')
    me-format - The format used for /me commands (Default: '* +name +message')
    handle-me - Whether to handle /me commands (Default: true)

    =============
    Permissions
    =============
    ichat.color - Allow this group/user to use color in their chat messages.
    ichat.reload - Allow this group/user to use "/ichat reload"

    =============
    Commands
    =============
    /ichat reload - Reload the iChat config file

    =============
    F.A.Q.
    =============
    Q) Why is my custom message format not working? I just get the default output. Or output with no variables filled in.
    A) If you're using Permissions 2.1, make sure your Permissions config file is named "{worldname}.yml" where {worldname} is the name of your world. If you're using Permissions 2.0, make sure your Permissions config is named config.yml

    Q) How do I set the brackets color to the same as the group?
    A) Normally you have the brackets in the message-format variable, but you can just as easily move them into prefix/suffix and that way they can be per-group colored!

    Q) Why is my entire string colored? I just put a color code beside +name!
    A) A color code will persists until another color code is encountered, or the end of the line is reached. To change the line back to white use &f after the variable/string you want colored.

    Q) Why are my OPs names red?
    A) Essentials has this functionality built in. Change "ops-name-color" to 'none' in your Essentials config file.

    Q) Why does {PluginX} not work with iChat?
    A) There's a good chance it does, but you need to use +displayname instead of +name.

    Q) Why does Towny not work with iChat?
    A) iChat no longer uses %1$s for the player name, it uses player.getName() and player.getDisplayName(), until such a time that Towny is updated to use the proper method of setting a players name (Set their displayName) it will not work with iChat.

    =============
    Changes
    =============
    [Version 2.4.4]
    - Updated to new FileConfiguration class
    - Fixed bypass exploit for colors in messages
    - Multi-world support for variables.yml
    - Resolved an issue with /me not reloading player variables
    [Version 2.4.3]
    - Permissions overhaul. No longer require group.{name} node unless not using a permissions handler
    [Version 2.4.2]
    - Fixed issue with inheritance in Permissions
    - Implemented start of online time variable. Need output format.
    [Version 2.4.1]
    - Remove plugin-specific group referencing. All groups are now managed via group.* nodes,
    the exception being pure Permissions 2.x/3.x
    - Fixed /ichat reload not reloading variables.yml
    - Updated /me to use BroadcastMessage
    [Version 2.4.0-final]
    - Took out variable caching, there's no hook for PermissionChange.
    - Updated README to include info on group.* nodes
    [Version 2.4.0-beta]
    - Merged all branches into one
    - Supports Perms 2.x/3.x, SuperPerms, GroupManager
    - Added a more advanded API based on the mChat API
    - Massive thanks to MiracleM4n for code and concepts
    - All variables are now retrieved from variables.yml instead of Permissions
    - Removed censor code
    [Version 2.3.2-p3]
    - Set Permissions as a dependency in plugin.yml
    - Added Permissions 3 support to the -p3 jar
    [Version 2.3.1]
    - Added iChat.ichat.parseChat(Player, String, Format) API
    - Added hook for /me chat formatting using the "me-format" config option
    [Version 2.3.0]
    - Added external iChat.ichat.parseChat(Player, String) API
    [Version 2.2.3]
    - Added +displayname/+d for player.getDisplayName()
    [Version 2.2.2]
    - Updated to latest RB
    [Version 2.2.1]
    - Updated how Permissions is loaded
    [Version 2.2.0]
    - Added the ability to have an unlimited amount of variables in message-format
    - Changed versioning scheme
    [Version 2.11]
    - Now uses per-world permissions information
    [Version 2.10]
    - Allow admins to enable color on a permissions basis
    [Version 2.09]
    - Another small update to Permissions (Returned false when I should have returned true)
    [Version 2.08]
    - Pushes PacketCollisions PermVersion change. Fixes issues with 2.5.2
    [Version 2.07]
    - Added +time tag
    [Version 2.06]
    - Added +world tag
    [Version 2.05]
    - Ignore whether the plugin is GM, just treat everything as Permissions! Means you need FakePermissions.
    [Version 2.04]
    - Added the ability to use variables in the suffix and prefix (More customizeable messages)
    [Version 2.03]
    - Verify that all available variables aren't null before calling parse
    - Fixed crash caused by color code at end of message (Basic fix, added a space)
    [Version 2.02]
    - Fix for possible NPE
    [Version 2.01]
    - There's a bug in Permissions 2.1 in getPermissionString, switched to getUserPermissionString
    [Version 2.00]
    - Initial re-write of Niji's plugin.
    - Added Permissions 2.0/2.1, and GroupManager support.[/b]
     
    FFS2309, Lolmewn, wassilij and 12 others like this.
  2. Offline

    samp20

    I really liked this plugin, but since upgrading to use bukkit's permissions API, and our own custom permissions plugin we've had to move to another chat plugin.

    If this ever gets updated to use bukkit permissions then I'd definitely move back to this, however this seems unlikely:
    :(
     
  3. Offline

    Rsccman

    idk how to use the bukkit permissions yet...
     
  4. Offline

    Vaupell

    Well i have also been using ichat, but after b1000 i have also switched to bukkits own permissions system
    1 file for all = <3 <3 <3..
    So what did you find instead?
     
  5. Offline

    samp20

    I'm using mChat now. The way it works is you assign a permission such as "mchat.prefix.admin" and that will set the players prefix to [Admin] for example. No need to bother with groups at all
     
    Vaupell likes this.
  6. Offline

    malabarth

  7. Offline

    Rsccman

    dont bring spam here
     
  8. Offline

    kiddsta

    MY PLUGINS FILE ONLY HAS THE ICHAT.JAR BUT I'M SUPPOSED TO HAVE A CONFIG THING AND I DON'T WTF DO I DO? :mad:
     
  9. Offline

    Drakia

    A) Start the server and the config is created
    B) With an attitude like that, don't bother coming back here for more support. Bye.
     
  10. Offline

    CrispyDiamonds

    okay so here is the ichat config:
    Code:
    censor-list: []
    censor-color: '&f'
    date-format: HH:mm:ss
    message-format'+prefix+suffix+name&f: +message''
    censor-char: '*'
    censor-string-color: '&f'
    censor-colored: false
    
    but somehow whenever we say something it still puts the group name there!
    Code:
    13:39:35 [INFO] [LieutenantModerator] philipop1678: ok make it admin then
    13:39:46 [INFO] [GeneralAdmin] CrispyDiamonds: i cant i dont know how
    
    please help i dont want the group name there
     
  11. Offline

    Rsccman

    its part of your suffix....dont add it smart one
     
  12. Offline

    Drakia

    I really don't get how SO MANY PEOPLE MISS THIS:
     
  13. Offline

    CrispyDiamonds

    actually no its not cuz i removed it and it still is there

    ichat config: http://pastebin.com/btpVTPkG latest version
    permissions config: http://pastebin.com/9QvzNRv0 NAMED: world using permissions yeti
    server log: http://pastebin.com/10vHSNEh
    Now can u help me get rid of this:
    Code:
    13:39:35 [INFO] [LieutenantModerator] philipop1678: ok make it admin then
    13:39:46 [INFO] [GeneralAdmin] CrispyDiamonds: i cant i dont know how
    
    the group names show up i dont want them there

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 17, 2016
  14. Offline

    Drakia

    message-format'+prefix+name&f: +message''

    You're missing the : after message-format
     
  15. Offline

    CrispyDiamonds

    that wasnt it cuz it still shows up as having a group name:
    Code:
    10:59:21 [INFO] [Lieutenant GeneralAdmin] CrispyDiamonds: test
    
     
  16. Offline

    Rsccman

    message-format'+name&f: +message''
     
  17. Offline

    CrispyDiamonds

    i had it like that and drakia told me to change it
     
  18. Offline

    Rsccman

    did you stop and reload the server?
     
  19. Offline

    CrispyDiamonds

    yes i did even reinstalled the plugin
     
  20. Offline

    Drakia

    How about posting your new iChat config, because my guess is you didn't fix it, but I'm not a mind reader so I have no way of knowing.
     
  21. Offline

    zenyl

    Could you please make/try to make this plugin compatible with PermissionsBukkit? ;)
    It's the "new Permissions" (i think) :p
     
  22. Offline

    Drakia

    Aww DAMN, I was just about to do this after work today, looks like another few days now.
     
  23. Offline

    zenyl

    THX SO MUCH!!! :D
    Love the aspect with iChat, that it supports custom variables! :D
     
  24. Offline

    CrispyDiamonds

    here:
    Code:
    censor-list: []
    censor-color: '&f'
    date-format: HH:mm:ss
    message-format:'+prefix+name&f: +message''
    censor-char: '*'
    censor-string-color: '&f'
    censor-colored: false
    
    and now i dont get any prefix at all. pastebin isnt working for me so here is the server log>
    Code:
    2011-08-08 12:57:27 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.PluginClassLoader]
    2011-08-08 12:57:27 [INFO] Entities enhanced[0] subclassed[1]
    2011-08-08 12:57:28 [INFO] LWC: Loading shared objects
    2011-08-08 12:57:28 [INFO] LWC: Protection cache: 0/10000
    2011-08-08 12:57:28 [INFO] LWC: Native library: plugins/LWC/lib/native/Windows/x86/sqlitejdbc.dll
    2011-08-08 12:57:28 [INFO] [Permissions] (Yeti) was initialized.
    2011-08-08 12:57:28 [INFO] [LogBlock] Version check: There is a newer version: v1.25
    2011-08-08 12:57:28 [INFO] [LogBlock] Connecting to [EMAIL]root@jdbc:mysql://localhost:3306/minecraft[/EMAIL]...
    2011-08-08 12:57:28 [INFO] [Permissions] version [3.1.6] (Yeti)  loaded
    2011-08-08 12:57:28 [INFO] [BBROTHER] ------------------------------------
    2011-08-08 12:57:28 [INFO] [BBROTHER] Hello, and thank you for using the TESTING version of BigBrother!
    2011-08-08 12:57:28 [INFO] [BBROTHER] Please note that, since this is far from complete, there will be many bugs.
    2011-08-08 12:57:28 [INFO] [BBROTHER] IF YOU FIND ANY BUGS, PLEASE REPORT THEM ON [URL]http://bugs.nexisonline.net/bb[/URL]
    2011-08-08 12:57:28 [INFO] [BBROTHER] Please stay tuned in irc.esper.net #bigbrother for updates and build notifications.
    2011-08-08 12:57:28 [INFO] [BBROTHER] ------------------------------------
    2011-08-08 12:57:28 [INFO] [BBROTHER] Building `bbdata` table...
    2011-08-08 12:57:28 [INFO] [BBROTHER] BBData H2 Driver r1 loaded!
    2011-08-08 12:57:28 [INFO] [BBROTHER] Building `bbworlds` table...
    2011-08-08 12:57:28 [INFO] [BBROTHER] Building `bbactions` table...
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #1 - BrokenBlock
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #2 - PlacedBlock
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #3 - DestroySignText
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #4 - Teleport
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #5 - DeltaChest
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #6 - Command
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #7 - Chat
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #8 - Disconnect
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #9 - Login
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #10 - DoorOpen
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #11 - ButtonPress
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #12 - LeverSwitch
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #13 - CreateSignText
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #14 - LeafDecay
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #15 - FlintAndSteel
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #16 - TNTExplosion
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #17 - CreeperExplosion
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #18 - MiscExplosion
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #19 - ChestOpen
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #20 - BlockBurn
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #21 - Flow
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #22 - DropItem
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #23 - PickupItem
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #24 - SignDestroyed
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #25 - Heartbeat
    2011-08-08 12:57:28 [INFO] [BBROTHER] Action #26 - BlockPistoned
    2011-08-08 12:57:28 [INFO] [BBROTHER] Building `bbusers` table...
    2011-08-08 12:57:28 [INFO] [BBROTHER] Permissions enabled using: Permissions v3.1.6
    2011-08-08 12:57:28 [WARNING] [BBROTHER] 'Help' isn't detected. No /help support
    2011-08-08 12:57:28 [INFO] [BBROTHER] BigBrother 1.10.1-SNAPSHOT (build #648) enabled!
    2011-08-08 12:57:28 [INFO] bLift version 1.1 is enabled!
    2011-08-08 12:57:28 [INFO] BukkitContrib 0.1.7 has been initialized
    2011-08-08 12:57:28 [INFO] CommandBook 1.5.2-customized enabled.
    2011-08-08 12:57:28 [INFO] CommandBook: Maximum wrapper compatibility is enabled. Some features have been disabled to be compatible with poorly written server wrappers.
    2011-08-08 12:57:28 [INFO] CommandBook: 5 banned name(s) loaded.
    2011-08-08 12:57:28 [INFO] CommandBook: 1 kit(s) loaded.
    2011-08-08 12:57:28 [INFO] CommandBook: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-08-08 12:57:28 [INFO] [CustomDifficulty] Hooked into WorldEdit v4.6.
    2011-08-08 12:57:28 [INFO] [CustomDifficulty] Found the following 1 difficulties:
    default.
    2011-08-08 12:57:28 [INFO] [CustomDifficulty] will use built-in regions.
    2011-08-08 12:57:28 [INFO] [CustomDifficulty] Hooked into Permissions v3.1.6.
    2011-08-08 12:57:28 [INFO] [CustomDifficulty] Hooked into iConomy v5.01.
    2011-08-08 12:57:28 [INFO] [CustomDifficulty] Spawning activated for world world
    2011-08-08 12:57:28 [INFO] [CustomDifficulty] Spawning activated for world world_nether
    2011-08-08 12:57:28 [INFO] [CustomDifficulty] version 4.1.1 has been enabled. (0.069s)
    2011-08-08 12:57:29 [INFO] Loaded Essentials build 2.3.7 by Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans and Xeology
    2011-08-08 12:57:29 [INFO] [Essentials] Payment method found (iConomy version: 5)
    2011-08-08 12:57:29 [INFO] FakeMessage version 0.5 is enabled!
    2011-08-08 12:57:29 [INFO] Found Diamonds STARTED
    2011-08-08 12:57:29 [INFO] [HeroicDeath] 1.8.2.157 enabled.
    2011-08-08 12:57:29 [INFO] [iConomy] Logging is currently disabled.
    2011-08-08 12:57:29 [INFO] [iConomy] v5.01 (Eruanna) loaded.
    2011-08-08 12:57:29 [INFO] [iConomy] Developed by: [Nijikokun]
    2011-08-08 12:57:29 [INFO] [iConomy] hooked into Permissions.
    2011-08-08 12:57:29 [INFO] [iConomyChestShop] version 2.74 initialized!
    2011-08-08 12:57:29 [INFO] [iConomyChestShop] iConomy version 5 loaded.
    2011-08-08 12:57:29 [INFO] [iConomyChestShop] Permissions version 3.1.6 loaded.
    2011-08-08 12:57:29 [INFO] [iConomyChestShop] LWC version 3.3 loaded.
    2011-08-08 12:57:29 [INFO] [iConomyChestShop] Lockette version 1.3.8 loaded.
    2011-08-08 12:57:29 [INFO] [Kit] plugins/KitPlugin/kits.txt reloaded OK
    2011-08-08 12:57:29 [INFO] [Kit] Permission system detected. Good.
    2011-08-08 12:57:29 [INFO] [Kit] hooked into iConomy.
    2011-08-08 12:57:29 [INFO] KitPlugin version 1.2.1 is enabled!
    2011-08-08 12:57:29 [INFO] Lockette version 1.3.8 is being enabled!  Yay!  (Core version 1.0)
    2011-08-08 12:57:29 [INFO] Lockette: Detected craftbukkit build [1000] ok.
    2011-08-08 12:57:29 [INFO] Lockette: Linked to Permissions plugin version 3.1.6
    2011-08-08 12:57:29 [INFO] Lockette: Using ops file for admin permissions.
    2011-08-08 12:57:29 [INFO] Lockette: Ready to protect your containers.
    2011-08-08 12:57:29 [INFO] LogBlockQuestioner v0.02 enabled
    2011-08-08 12:57:29 [INFO] NSCommand 0.2 enabled.
    2011-08-08 12:57:29 [INFO] [Personal Warps] found Permissions v3.1.6
    2011-08-08 12:57:29 [INFO] [Personal Warps] 1.1 enabled!
    2011-08-08 12:57:29 [INFO] [Personal Warps] 1.1 loaded config file.
    2011-08-08 12:57:29 [INFO] [Residence] Successfully linked with iConomy!
    2011-08-08 12:57:29 [INFO] [Residence] Loaded Residences...
    2011-08-08 12:57:29 [INFO] [Residence] Enabled! Version 2.3.3 by bekvon
    2011-08-08 12:57:29 [INFO] [SignShop] Hooked into Permissions
    2011-08-08 12:57:29 [INFO] [SignShop] v1.2 enabled
    2011-08-08 12:57:29 [INFO] [SignShop] hooked into iConomy.
    2011-08-08 12:57:29 [INFO] SimpleSave: Parts of config file are blank, but not null. Possible errors might happen.
    2011-08-08 12:57:29 [INFO] SimpleSave: DON'T! Post this 'warning' on the thread.
    2011-08-08 12:57:29 [INFO] SimpleSave: 3.22 Initialized
    2011-08-08 12:57:29 [INFO] [Slots] Hooked iConomy and Permissions successfully.
    2011-08-08 12:57:29 [INFO] [Slots] All data loaded.
    2011-08-08 12:57:29 [INFO] [Slots] Slots v2.1 enabled, by Crash
    2011-08-08 12:57:29 [INFO] Tombstone v.1.3.1 is enabled.
    2011-08-08 12:57:29 [INFO] [Tombstone] Using Permissions (v3.1.6)
    2011-08-08 12:57:29 [INFO] [VanishNoPickup] 1.9.12 enabled.
    2011-08-08 12:57:29 [INFO] [Vault][Economy] 3co not found.
    2011-08-08 12:57:29 [INFO] [Vault][Economy] BOSEconomy not found.
    2011-08-08 12:57:29 [INFO] [Vault][Economy] Essentials Economy hooked.
    2011-08-08 12:57:29 [INFO] [Vault][Economy] Essentials Economy found: Loaded
    2011-08-08 12:57:29 [INFO] [Vault][Economy] iConomy 4 not found.
    2011-08-08 12:57:29 [INFO] [Vault][Economy] iConomy 5 hooked.
    2011-08-08 12:57:29 [INFO] [Vault][Economy] iConomy 5 found: Loaded
    2011-08-08 12:57:29 [INFO] [Vault][Permission] PermissionsEx not found.
    2011-08-08 12:57:29 [INFO] [Vault][Permission] Permissions (Yetti) hooked.
    2011-08-08 12:57:29 [INFO] [Vault][Permission] Permissions (Yetti) found: Loaded
    2011-08-08 12:57:29 [INFO] [Vault] Enabled Version 1.0.0dev-b12
    2011-08-08 12:57:29 [INFO] [WolfPound] - Version 1.0.1 Enabled
    2011-08-08 12:57:29 [INFO] [WolfPound] using Permissions
    2011-08-08 12:57:29 [INFO] [AllPay] - Version .5 - hooked into iConomy for WolfPound v1.0.1
    2011-08-08 12:57:29 [INFO] WorldEdit 4.6 enabled.
    2011-08-08 12:57:29 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-08-08 12:57:29 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-08-08 12:57:29 [INFO] WorldGuard: (world) Single session is enforced.
    2011-08-08 12:57:29 [INFO] WorldGuard: (world) TNT ignition is PERMITTED.
    2011-08-08 12:57:29 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    2011-08-08 12:57:29 [INFO] WorldGuard: (world) Lava fire is blocked.
    2011-08-08 12:57:29 [INFO] WorldGuard: (world) Fire spread is UNRESTRICTED.
    2011-08-08 12:57:29 [INFO] WorldGuard: Loaded configuration for world 'world"
    2011-08-08 12:57:29 [INFO] WorldGuard: (world_nether) Single session is enforced.
    2011-08-08 12:57:29 [INFO] WorldGuard: (world_nether) TNT ignition is PERMITTED.
    2011-08-08 12:57:29 [INFO] WorldGuard: (world_nether) Lighters are PERMITTED.
    2011-08-08 12:57:29 [INFO] WorldGuard: (world_nether) Lava fire is blocked.
    2011-08-08 12:57:29 [INFO] WorldGuard: (world_nether) Fire spread is UNRESTRICTED.
    2011-08-08 12:57:29 [INFO] WorldGuard: Loaded configuration for world 'world_nether"
    2011-08-08 12:57:29 [INFO] WorldGuard 5.2.2 enabled.
    2011-08-08 12:57:29 [INFO] [Administrate] Found Service (Permission) Permissions (Yetti)
    2011-08-08 12:57:29 [INFO] [Administrate] Using Permission Provider Permissions (Yetti)
    2011-08-08 12:57:29 [INFO] [iChat] Found Permissions (v3.1.6)
    2011-08-08 12:57:29 [INFO] [iChat] Permissions plugin not found or wrong version. Disabling
    2011-08-08 12:57:29 [INFO] [iChat] iChat Disabled
    2011-08-08 12:57:29 [INFO] [LogBlock] Permissions found.
    2011-08-08 12:57:29 [INFO] [LogBlock] Scheduled consumer with bukkit scheduler.
    2011-08-08 12:57:29 [INFO] LogBlock v1.24 by DiddiZ enabled.
    2011-08-08 12:57:29 [INFO] LWC: Loaded 135 locale strings (0 overrides)
    2011-08-08 12:57:29 [INFO] Using Permissions API
    2011-08-08 12:57:29 [INFO] LWC: Loading SQLite
    2011-08-08 12:57:29 [INFO] LWC: Using: Native
    2011-08-08 12:57:29 [INFO] LWC: Precached 1581 protections.
    2011-08-08 12:57:29 [INFO] LWC: At version: 3.30-git-LWC-94b93dd42195692ed1823346544359d5917274a2-b69jnks
    2011-08-08 12:57:29 [INFO] [Tombstone] Using LWC (v3.3)
    2011-08-08 12:57:29 [INFO] Reload complete.
    2011-08-08 12:57:29 [WARNING] Can't keep up! Did the system time change, or is the server overloaded?
    2011-08-08 12:57:29 [WARNING] [CustomDifficulty] Difficulty not found for world world
    2011-08-08 12:57:29 [INFO] [CustomDifficulty] Spawning deactivated for world world
    2011-08-08 12:57:29 [WARNING] [CustomDifficulty] Difficulty not found for world world_nether
    2011-08-08 12:57:29 [INFO] [CustomDifficulty] Spawning deactivated for world world_nether
    2011-08-08 12:57:30 [INFO] [BBROTHER] Removed 0 records older than 168h00m00s in 0h00m00s.
    
    and here is the users file of permissions(since we are doing personal prefixes not group ones)
    Code:
    users:
        philipop1678:
            permissions:
            groups:
            - Moderator
            info:
                prefix: '&1First Lieutenant'
                suffix: ''
        CrispyDiamonds:
            permissions:
            groups:
            - Admin
            info:
                prefix: '&6Lieutenant General'
                suffix: ''
        soccer4128:
            permissions:
            groups:
            - Moderator
            info:
                prefix: ''
                suffix: ''
        ToxicLax:
            permissions:
            groups:
            - Builder
            info:
                prefix: ''
                suffix: ''
        yogpersoneabo:
            permissions:
            groups:
            - Builder
            info:
                prefix: ''
                suffix: ''
        Oraman90:
            permissions:
            groups:
            - Builder
            info:
                prefix: '&2Private First Class'
                suffix: ''
    
     
  25. Offline

    IAnon

    I know you get about ten thousand questions like these but, my iChat is disabled, I checked my permissions and they were all perfect no errors pls help
     
  26. Offline

    ACStache

    You're probably right, but he asks for some stuff before helping. Just to let you know ;)

     
  27. Offline

    Drakia

    You're running the wrong version of iChat for permissions 3
     
  28. Offline

    Rsccman

    lalwz i love how the generation of all of the world is lesser of able to read
     
  29. Offline

    Drakia

    @CrispyDiamonds Is it REALLY that hard to read the information iChat gives you in your server log?
    The IQ on this forum is getting lower by the day.
     
  30. Offline

    Rsccman

    u think thats bad? on some other plugin i got some 28 yearold acting like hes got a fork up his dck lol
     
  31. Offline

    CrispyDiamonds

    ok i have the right version now but it still will say the group name.
     
Thread Status:
Not open for further replies.

Share This Page