• Inventory Split Incoming

    MassiveCraft will be implementing an inventory split across game modes to improve fairness, balance, and player experience. Each game mode (Roleplay and Survival) will have its own dedicated inventory going forward. To help players prepare, we’ve opened a special storage system to safeguard important items during the transition. For full details, read the announcement here: Game Mode Inventory Split blog post.

    Your current inventories, backpacks, and ender chest are in the shared Medieval inventory. When the new Roleplay inventory is created and assigned to the roleplay world(s) you will lose access to your currently stored items.

    Important Dates

    • April 1: Trunk storage opens.
    • May 25: Final day to submit items for storage.
    • June 1: Inventories are officially split.

    Please make sure to submit any items you wish to preserve in the trunk storage or one of the roleplay worlds before the deadline. After the split, inventories will no longer carry over between game modes.

Archived Make D: Face Possible

This suggestion has been archived / closed and can no longer be voted on.
Status
Not open for further replies.
Joined
Jul 2, 2012
Messages
1,080
Reaction score
950
Points
0
Annoying as hell to try and type D: in chat and get a channel not found error. My suggestion:

In CapiPlayerListener.java this function exists:
Code:
private String extractChannelString(String message)
    {
        int index = message.indexOf(':');
        if (index == -1) return null;
        String channelString = message.substring(0, index);
        if(channelString.indexOf(' ') != -1) return null;
        if(channelString.length() == 0) return null; // For smileys to be possible
        return channelString;
    }

If you were to add:
Code:
if(channelString.startsWith("D:") return null;
or add an or statement like so:
Code:
if(channelString.length() == 0 || channelString.startsWith("D:")) return null; // For smileys to be possible
then it would be possible to type D: in chat without a problem.

I heard somewhere that Cay is making a custom chat plugin, and I would appreciate it if something along these lines was included.
 
This suggestion has been closed. Votes are no longer accepted.
I assure you, this is a very pressing issue and all other server problems should be put aside to enable the D: smiley face in chat.
 
D: will probably be reserved for chat channel allocation

so... no.
 
I would perhaps not priority this :-P
 
this is by far the greatest problem this server has EVER faced! save our frowns!
 
What? That never happens to me, then again, I don't have screwy ping[DOUBLEPOST=1357278659][/DOUBLEPOST]Pong
 
I found out a way to get around this. before you type D: you need to use the channel command that you want to use it in before it. for example, if I wanted to use it in the chat channel "say" I would type "s: D:" hope this helps
 
When i saw the code thingy i was like WAHT!? LOL! to me it's just giberish! D:
 
Status
Not open for further replies.