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

    charlie k-j

    Oh ok, as an update, I don't have the [] but my Admins names [including] me are red BUT also is the text :s
     
  3. Offline

    havokunleashed

    @Drakia
    Here is the user.yml :
    http://pastebin.com/86KAxmzg

    Code:
    users:
        Goosecok:
            permissions: []
            groups: []
        osirusrising:
            permissions: []
            groups:
            - Admins
        Queen_Fury:
            permissions: []
            groups:
            - Admins
        willor:
            permissions: []
            groups:
            - Reach
            - Moderator
        SAS_fury:
            permissions: []
            groups:
            - Paradox
            - Admins
        dearsgamer:
            permissions: []
            groups:
            - Moderator
        pastormark:
            permissions: []
            groups: []
        upupuuu:
            permissions: []
            groups:
            - Builders
        Kiernan10:
            permissions: []
            groups:
            - Builders
        Eric51:
            permissions: []
            groups:
            - Builders
        brayman122:
            permissions: []
            groups: []
        llody4d:
            permissions: []
            groups:
            - Builders
        darkassassin2141:
            permissions: []
            groups:
            - Builders
        Jacob7395:
            permissions: []
            groups: []
        Darkassassin2142:
            permissions: []
            groups:
            - Builders
        Security:
            permissions: []
            groups: []
        Trader:
            permissions: []
            groups: []
        Guard:
            permissions: []
            groups: []
        SAS:
            permissions: []
            groups:
            - Reach
            - Paradox
        notch:
            permissions: []
            groups: []
        Raemnant:
            permissions: []
            groups:
            - Builders
        playday22:
            permissions: []
            groups: []
        ttigner:
            permissions: []
            groups:
            - Reach
            - Admins
        blacksmith:
            permissions: []
            groups: []
        Miner1811:
            permissions: []
            groups: []
        Healer:
            permissions: []
            groups: []
        trader test:
            permissions: []
            groups: []
        trader hello:
            permissions: []
            groups: []
        tfrey5:
            permissions: []
            groups: []
        tievx0r:
            permissions: []
            groups: []
        TheGroo_Fury:
            permissions: []
            groups: []
        starkazor:
            permissions: []
            groups:
            - Builders
        Woody:
            permissions: []
            groups: []
        Duke:
            permissions: []
            groups: []
        Jesus:
            permissions: []
            groups: []
        Dewb:
            permissions: []
            groups: []
        kneelb4me1:
            permissions: []
            groups: []
        willors_gay_brother_bob:
            permissions: []
            groups: []
        FreezerDust:
            permissions: []
            groups:
            - Builders
        thegroo_fury:
            permissions: []
            groups:
            - VIP
        philip693:
            permissions: []
            groups: []
        Bill_b177:
            permissions: []
            groups: []
        Captiansparklez:
            permissions: []
            groups: []
        Captainsparklez:
            permissions: []
            groups: []
        this_is_fake:
            permissions: []
            groups: []
        Playday:
            permissions: []
            groups: []
        God:
            permissions: []
            groups: []
        Queen_Fail:
            permissions: []
            groups: []
        MJ:
            permissions: []
            groups: []
        MizzKaoz:
            permissions: []
            groups:
            - Reach
            - Admins
        no_u_poo_poo:
            permissions: []
            groups: []
        Slipknott:
            permissions: []
            groups: []
        Looks_gay:
            permissions: []
            groups: []
        supre:
            permissions: []
            groups: []
        Nyan_cat:
            permissions: []
            groups: []
        Duke_Nuk'em:
            permissions: []
            groups: []
        NostrumDomus:
            permissions:
            - dload.use
            groups:
            - Admins
            - Moderator
        Sirnando_Jordan:
            permissions: []
            groups:
            - Builders
        wehttam179:
            permissions: []
            groups:
            - Builders
        darkdoom4000:
            permissions: []
            groups:
            - Builders
        pur3str3ngth:
            permissions: []
            groups: []
        DarkShadow41:
            permissions: []
            groups:
            - Builders
        DNMZcanhazCB:
            permissions: []
            groups:
            - Builders
        jarard777:
            permissions: []
            groups: []
        Symboline:
            permissions: []
            groups: []
        MetallusLiam:
            permissions: []
            groups: []
        myzu:
            permissions: []
            groups:
            - Builders
        frogman31680:
            permissions:
            - kiwiadmin.ban
            - kiwiadmin.kick
            - kiwiadmin.kick.all
            - kiwiadmin.ipban
            - kiwiadmin.unban
            groups:
            - Moderator
            - Reach
            - Admins
            - Builders
        BLOODTRAL:
            permissions: []
            groups:
            - Reach
            - Builders
        Zekepack:
            permissions: []
            groups:
            - Builders
        KomradRed:
            permissions: []
            groups: []
        Billmo23:
            permissions: []
            groups:
            - Builders
        smidog420:
            permissions: []
            groups:
            - Builders
        kila987:
            permissions:
            - magiccarpet.mc
            - magiccarpet.ml
            groups:
            - Elite
            - Builders
            - VIP
        LolCatsPwn:
            permissions: []
            groups:
            - Builders
        daniel9257:
            permissions: []
            groups:
            - Builders
        Leroy_forklift:
            permissions: []
            groups:
            - Builders
        St3nTheGrunt:
            permissions: []
            groups:
            - Builders
        Shminkle21:
            permissions: []
            groups: []
        galaxygirl4u:
            permissions: []
            groups:
            - Builders
        CaptainFire:
            permissions: []
            groups: []
        mushdoom:
            permissions: []
            groups: []
        Supernipple:
            permissions: []
            groups:
            - Builders
        Pandascankill:
            permissions: []
            groups: []
        QueenAki:
            permissions: []
            groups:
            - Builders
        corn5598:
            permissions: []
            groups: []
        darkjoe88:
            permissions: []
            groups: []
        Atmeoko9000:
            permissions: []
            groups:
            - Builders
        Nintendo1474:
            permissions: []
            groups:
            - Builders
        keventhegreat:
            permissions: []
            groups:
            - Builders
        mornan:
            permissions: []
            groups:
            - Builders
        GodofHack:
            permissions: []
            groups:
            - Builders
        kittykat2345:
            permissions: []
            groups:
            - Builders
        BrenaBear:
            permissions: []
            groups:
            - Builders
        rrjj1313:
            permissions: []
            groups:
            - Builders
        reikzor:
            permissions: []
            groups: []
        redrobbo:
            permissions: []
            groups: []
        adesmail:
            permissions: []
            groups:
            - Builders
        mrpiercejg:
            permissions: []
            groups: []
        bconnally:
            permissions: []
            groups: []
        iZashi:
            permissions: []
            groups: []
        iDazee:
            permissions: []
            groups: []
        steveldude0:
            permissions: []
            groups:
            - Builders
        killercheez11:
            permissions: []
            groups: []
        malcoME_87:
            permissions: []
            groups: []
        DemonReign420:
            permissions: []
            groups:
            - Builders
        fozzy2:
            permissions: []
            groups:
            - Builders
        MehrCraft:
            permissions:
            - simplechestlock.lock.*
            - simplechestlock.lock
            - simplechestlock.*
            groups:
            - Builders
        ordan900:
            permissions: []
            groups: []
        TigerMist:
            permissions: []
            groups:
            - Builders
        yuikana:
            permissions: []
            groups:
            - Builders
        JakeThSnke:
            permissions: []
            groups:
            - Builders
        milatarydude186:
            permissions: []
            groups: []
        alsing12321:
            permissions: []
            groups: []
        Tokee:
            permissions: []
            groups:
            - Builders
        bensonlin:
            permissions: []
            groups: []
        Sebastion123:
            permissions: []
            groups:
            - Builders
        Hans199:
            permissions: []
            groups:
            - Builders
            - VIP
        Warpuppy1:
            permissions: []
            groups:
            - Builders
        Toxic_Bro:
            permissions: []
            groups:
            - Builders
        chaoticspider:
            permissions: []
            groups:
            - Builders
        zach1502:
            permissions: []
            groups: []
        Swordesman:
            permissions: []
            groups:
            - Builders
        killen:
            permissions: []
            groups: []
        BlackVirius:
            permissions: []
            groups: []
        demonickillerjj:
            permissions: []
            groups:
            - Builders
        Kadobi:
            permissions: []
            groups:
            - Builders
        Hemp316:
            permissions: []
            groups:
            - Builders
        CpZ:
            permissions: []
            groups: []
        JamesBondSA:
            permissions: []
            groups:
            - Builders
        darkassassin2143:
            permissions: []
            groups: []
        AbdullaMudaifa:
            permissions: []
            groups: []
        Whiskyhotel:
            permissions: []
            groups:
            - Builders
        Yassin1096:
            permissions: []
            groups: []
        Devalix:
            permissions: []
            groups:
            - Builders
        TravelocityGnome:
            permissions: []
            groups:
            - Builders
        Danielcn:
            permissions: []
            groups: []
        lorenzenking:
            permissions: []
            groups:
            - Builders
        Doxide47:
            permissions: []
            groups: []
        WJM:
            permissions: []
            groups:
            - Builders
        dynasty91:
            permissions: []
            groups: []
        veal1465:
            permissions: []
            groups:
            - Builders
        flatfoot51:
            permissions: []
            groups:
            - Builders
        lencury:
            permissions: []
            groups: []
        Gorp:
            permissions: []
            groups:
            - Builders
        snnarf:
            permissions: []
            groups:
            - Builders
        Futjiapples:
            permissions: []
            groups: []
        Franchini:
            permissions: []
            groups: []
        WORLDWAR1000:
            permissions: []
            groups:
            - Builders
        seaninator24:
            permissions: []
            groups:
            - Builders
        Lunanova:
            permissions: []
            groups:
            - Builders
        icegirl:
            permissions: []
            groups:
            - Builders
        dirtcheapninja:
            permissions: []
            groups: []
        jaredneustedter:
            permissions: []
            groups: []
        Ks201:
            permissions: []
            groups:
            - Builders
        min_seje:
            permissions: []
            groups: []
        Exprezues:
            permissions: []
            groups: []
        tazyload:
            permissions: []
            groups:
            - Builders
        diento:
            permissions: []
            groups:
            - Builders
        R3TRO_ATTACK:
            permissions: []
            groups:
            - Builders
        awesomer224:
            permissions: []
            groups:
            - Builders
        fireorb14:
            permissions: []
            groups: []
        cracksmurf:
            permissions: []
            groups:
            - Builders
        Freakbag:
            permissions: []
            groups:
            - Builders
        EagleRiders:
            permissions: []
            groups: []
        Joshua223:
            permissions: []
            groups:
            - Builders
        SGQR:
            permissions: []
            groups:
            - Builders
        aquifer10:
            permissions: []
            groups:
            - Builders
        waterbat:
            permissions: []
            groups:
            - Builders
        goluch:
            permissions: []
            groups: []
        Cheerful_Toe:
            permissions: []
            groups: []
        nexapriso:
            permissions: []
            groups: []
        dev125:
            permissions: []
            groups: []
        TPT:
            permissions: []
            groups: []
        karatequis:
            permissions: []
            groups: []
        StarKiller900:
            permissions: []
            groups: []
        monkeyop:
            permissions: []
            groups:
            - Builders
        benx1234:
            permissions: []
            groups: []
        megabram:
            permissions: []
            groups: []
        scaly:
            permissions: []
            groups:
            - Builders
        xandereragon:
            permissions: []
            groups:
            - Builders
        GD7506:
            permissions: []
            groups:
            - Builders
        snuse:
            permissions: []
            groups: []
        calebedwards1232:
            permissions: []
            groups:
            - Builders
        stjepanzg:
            permissions:
            groups:
        gigimooshi2:
            permissions:
            groups:
     
  4. Offline

    zenyl

    Will iChat be updated to be compatible with PermissionsBukkit?
     
  5. Offline

    Drakia

  6. Offline

    kiddsta

    Hello U r awsome but when i got the iChat.jar it seems to have not worked because it does not create a iChat folder inside my plugins and it doesn't load up on my server.bat . And yes i have got essentials but i dont know which one but i have tried iChat.jar and iChat-p3.jar they just dont create a folder. So can u help me?

    please help me.

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

    Drakia

    No. Go use another chat formatting plugin. You waited friggin 3 minutes, learn some patience, and how to read.
     
  8. Offline

    lolzrofl

    Does this work with superperms?
     
  9. Offline

    havokunleashed


    We are using and editing the correct permissions file, as it's the only one there. But the formatting is coming from the Essentials plugin. If we modify and change the way the format looks in Essentials, the format changes, no colors that is, but changes. Ie , Group (user) Message or User (group) message
    etc.

    No color changing whatsoever is working at all. Thanks for the help.!
    Let me know anything i can do to help.
     
  10. Offline

    kiddsta

    I am deeply sorry Drakia. I have now got a working iChat server thnx to ure help. thanks :D
     
  11. Offline

    Drakia

    Umm... Wait, why are you posting here if you're using essentials for chat formatting?
     
  12. Offline

    Butkicker12

    Will this work with permissionsex PEX?
     
  13. Offline

    havokunleashed

    Essentials is necessary for all of our other features. We had that by default...We wanted something that would work, but we have not found anything that will, your's is the closest thing that work. I have not found any other plugins like Essentials. I have tested that your plugin works without Essentials on the server. I have tested that, but with essentials it doens't work. Let me know your thoughts. We don't care about the formatting from Essentials. IT's irrelevant to us , we are likeing what we see with yours.
    Thanks for your help!

    Havok.
     
  14. Offline

    Drakia

    Remove EssentialsChat, otherwise ask in the Essentials topic, you aren't having an iChat issue, you're having an Essentials issue.
     
    havokunleashed likes this.
  15. Offline

    havokunleashed

    Drakia, Very nice plugin and I'm going to put this as a possibility if you could to add as a FYI or Tip on your release for future users :
    Thanks btw, what you suggested worked beautifully. It was Essentials Chat causing the issues.

    TIP: This works just fine with YETI and 1000 and 1060 Builds of CB Server. Plugins to make sure you have are Permissions 2.x or 3.x. If you are using Permissions 3.x with any type of Essentials type plugin, you must disable or uninstall any version of EssentialsChat.jar. This JAR will cause class failures for formatting using iChat plugin. Essentials is hardcoded when used to override any formatting and modification plugins that get installed. So if you are using YETI perms with the latest Essentials - REMOVE EssentialsChat.jar.

    THanks

    HavokUnleashed - Linux Admin and Web Admin - MKMC.info
     
  16. Offline

    Drakia

    I'm not going to be adding that to the first post. To me it's common sense that having two chat formatting plugins installed will cause conflicts.
     
  17. Offline

    zenyl

    Looking forward to the not-beta version.
    (using another chat system now, but when iChat gets a not-beta version, which supports PermissionsBukkit, i will without a doubt return to iChat:D(cuz iChat simply IS better(No offense against people who think otherwise)))
     
  18. Offline

    havokunleashed

    It was merely a suggestion, and like you I agree that mostly this is common sense, but you have to remember some people need a lil help in that side of things, and don't know that this could cause issue. Just saying ... ;-) And on that note, to you and me alike, we should know something like that. Thanks for the help tho, it's working wonderfully!
    Great plugin!

    -Havokunleashed
     
  19. Offline

    MrKrucible

    what is the sign for no color? I tried && and it didn't work -_-
     
  20. Offline

    Drakia

    The default color is white &f
     
  21. Offline

    godgodgodgo

    No source for iChat.jar ask the Author to add it to dev.bukkit.org
     
  22. Offline

    TheVnChecker

    Does anybody know, how i can make rainbow chat for members? =D
     
  23. Offline

    turtledude01

    i tried to use ichat...but i place the .jar file in pluggins folder, start the server, and ichat doesnt pull a folder out...it did it with every other plugi9n i have whuitch includes iconemy permissions, lwc and spawnx...whitch is all of them
     
  24. Offline

    Drakia

     
  25. Offline

    turtledude01

    sorry...im brand new at a server...and i dont know how to find the server logs ...and i posted all the plugins im useing...and i have no ichat config because i cant get any file...so.....

    ok...i found my server log...but its always empty...i dont know why

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

    Drakia

    I can't do anything without your server log.
     
  27. Offline

    turtledude01

    Code:
    plugin:
        permissions:
            system: default
            copies:
    groups:
        Default:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
            permissions:
                - 'essentials.help'
                - 'essentials.home'
                - 'essentials.motd'
                - 'essentials.rules'
                - 'essentials.sethome'
        Moderator:
            default: false
            info:
                prefix: '&d'
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'essentials.tp'
                - 'essentials.tphere'
        Admins:
            default: false
            info:
                prefix: '&c'
                suffix: ''
                build: true
            inheritance:
            permissions:
                - '*'
    Code:
    2011-09-03 22:57:42 [INFO] Starting minecraft server version Beta 1.7.3
    
    2011-09-03 22:57:42 [INFO] Loading properties
    
    2011-09-03 22:57:42 [INFO] Starting Minecraft server on *:25565
    
    2011-09-03 22:57:42 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-980-g4ed23b1-b1060jnks (MC: 1.7.3)
    
    2011-09-03 22:57:42 [INFO] LWC: Loading shared objects
    
    2011-09-03 22:57:42 [INFO] LWC: Protection cache: 0/10000
    
    2011-09-03 22:57:42 [INFO] LWC: Native library: plugins/LWC/lib/native/Windows/x86/sqlitejdbc.dll
    
    2011-09-03 22:57:42 [INFO] [Permissions] (Yeti) was initialized.
    
    2011-09-03 22:57:42 [INFO] [Permissions] version [3.1.6] (Yeti) loaded
    
    2011-09-03 22:57:42 [INFO] Preparing level "world"
    
    2011-09-03 22:57:42 [INFO] Preparing start region for level 0 (Seed: 8077336317865506101)
    
    2011-09-03 22:57:43 [INFO] [iConomy] Logging is currently disabled.
    
    2011-09-03 22:57:44 [INFO] [iConomy] v5.01 (Eruanna) loaded.
    
    2011-09-03 22:57:44 [INFO] [iConomy] Developed by: [Nijikokun]
    
    2011-09-03 22:57:44 [INFO] [iConomy] hooked into Permissions.
    
    2011-09-03 22:57:44 [INFO] Found and will use plugin Permissions v3.1.6
    
    2011-09-03 22:57:44 [INFO] SpawnX enabled
    
    2011-09-03 22:57:44 [INFO] [iChat] Found Permissions (v3.1.6)
    
    2011-09-03 22:57:44 [INFO] [iChat] Permissions plugin not found or wrong version. Disabling
    
    2011-09-03 22:57:44 [INFO] [iChat] iChat Disabled
    
    2011-09-03 22:57:44 [INFO] LWC: Loaded 137 locale strings (0 overrides)
    
    2011-09-03 22:57:44 [INFO] LWC: Permissions API: NijiPermissions
    
    2011-09-03 22:57:44 [INFO] LWC: Currency API: iConomyCurrency
    
    2011-09-03 22:57:44 [INFO] LWC: Loading SQLite
    
    2011-09-03 22:57:44 [INFO] LWC: Using: Native
    
    2011-09-03 22:57:44 [INFO] LWC: Precached 0 protections.
    
    2011-09-03 22:57:44 [INFO] LWC: At version: 3.43 (b174)
    
    2011-09-03 22:57:44 [INFO] Done (0.149s)! For help, type "help" or "?"
    
    2011-09-03 22:57:58 [INFO] turtledude01 [/192.168.1.8:62796] logged in with entity id 32 at ([world] 39.3125, 67.0, 57.40625)
    
    2011-09-03 22:58:02 [INFO] <turtledude01> hi
    
    2011-09-03 22:58:03 [INFO] Connection reset
    
    2011-09-03 22:58:03 [INFO] turtledude01 lost connection: disconnect.quitting
    
    2011-09-03 22:58:10 [INFO] Stopping the server..
    
    2011-09-03 22:58:10 [INFO] Stopping server
    
    2011-09-03 22:58:11 [INFO] [iConomy] Plugin disabled.
    
    2011-09-03 22:58:11 [INFO] [Permissions] (Yeti) saving data...
    
    2011-09-03 22:58:11 [INFO] [Permissions] (Yeti) saved all data.
    
    2011-09-03 22:58:11 [INFO] [Permissions] (Yeti) disabled successfully.
    
    2011-09-03 22:58:11 [INFO] SpawnX disabled
    
    2011-09-03 22:58:11 [INFO] LWC: Flushing final updates (0)
    
    2011-09-03 22:58:11 [INFO] LWC: Freeing SQLite
    
    2011-09-03 22:58:11 [INFO] Saving chunks
    
    i see why.....the permissions version isnt compatable??...is that maby it?

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

    Drakia

    You downloaded the wrong version.
     
  29. Offline

    turtledude01

    the rong version of ichat?
     
  30. Offline

    Drakia

    Yes
     
  31. Offline

    turtledude01

    where do i find the right version?
     
Thread Status:
Not open for further replies.

Share This Page