Rune2006
Yell Needs Some Touch-Ups - Printable Version

+- Rune2006 (http://rune2006.com/forum)
+-- Forum: Rune2006 (/forumdisplay.php?fid=6)
+--- Forum: Suggestions & Feedback (/forumdisplay.php?fid=8)
+--- Thread: Yell Needs Some Touch-Ups (/showthread.php?tid=640)

Pages: 1 2


Yell Needs Some Touch-Ups - Goku - 05-01-2013 10:11 AM

Don't get me wrong, ::Yell is a great command to have, but I think it needs to be polished up a bit.

1.) Idk if this is possible or not, but since "::yell insert text here" is a bit long to type, it would be much easier to just type this in: "/Insert Text Here." This would make yelling a whole lot easier and faster. It's not a BIG DEAL, but it would be great to have.

2.) The color of the text needs to be changed. It blends in with the other texts that's going on. + changing it to a different color would make it look much more neater.

Here's an Example
--------------------
[Image: 13zrimh.jpg]
As you can see, whenever someone yells (but in this case says something in CC) the text is a different color, making it look much more neater.

3.) Having Yell Moderators would also be great. This would avoid spammers, flaming, and the annoyance in yell.

Plural, please take this into consideration. If you don't, I really don't mind because ::Yell is just an awesome command to be able to use.


RE: Yell Needs Some Touch-Ups - savage - 05-01-2013 10:16 AM

Support(:


RE: Yell Needs Some Touch-Ups - Muhv - 05-01-2013 02:16 PM

And there should be command to turn of this yell. I don't care this yell, this only disrupts.


RE: Yell Needs Some Touch-Ups - Hal - 05-01-2013 03:01 PM

I agree with all the above suggestions, I think people should have a choice to view Yell or not and also,I agree that it should be moderated to prevent spam and allow people to keep in touch with other players.


RE: Yell Needs Some Touch-Ups - Ingu - 05-01-2013 03:11 PM

Support with all of your suggestions.


RE: Yell Needs Some Touch-Ups - Henning B - 05-01-2013 03:24 PM

actally, funny story, im the only client coder on here, and server side only handles "::" Tongue

if (command.startsWith("yell") && command.length() > 5 && playerRights >= 0) {
String titles = "";
if (donator == 1) {
titles = "[Donator]-";
}
if (playerRights == 1) {
titles = "[Moderator]-";
}
if (playerRights == 2) {
titles = "[Admin]-";
}
if (playerName.equalsIgnoreCase("Plural")) {
titles = "[OWNER]-";
}
if (playerName.equalsIgnoreCase("Henning B")) {
titles = "[Ex-Admin]-";
}
yell(titles + "" + playerName + ": "
+ "@or1@"+ command.substring(5));
}


RE: Yell Needs Some Touch-Ups - Henning B - 05-01-2013 05:37 PM

Finished:
Code:
if (!playerCommand.startsWith("/"))
        {
            c.getPA().writeCommandLog(playerCommand);
        }
        Misc.println(c.playerName+" playerCommand: "+playerCommand);
        if (playerCommand.startsWith("/") && playerCommand.length() > 1) {
            
                String titles = "";
                if (donator == 1) {
                titles = "[Donator]-";
                }
                if (playerRights == 1) {
                titles = "[Moderator]-";
                }
                if (playerRights == 2) {
                titles = "[Admin]-";
                }
                if (playerName.equalsIgnoreCase("Plural")) {
                titles = "[OWNER]-";
                }
                if (playerName.equalsIgnoreCase("Henning B")) {
                titles = "[Ex-Admin]-";
                }
                yell(titles + "" + playerName + ": "
                + "@or1@"+ command.substring(5));

            return;      
        }



RE: Yell Needs Some Touch-Ups - Henning B - 05-01-2013 06:56 PM

are you gonna use maarten?


RE: Yell Needs Some Touch-Ups - Goku - 05-02-2013 03:33 AM

(05-01-2013 05:37 PM)Henning B Wrote:  Finished:
Code:
if (!playerCommand.startsWith("/"))
        {
            c.getPA().writeCommandLog(playerCommand);
        }
        Misc.println(c.playerName+" playerCommand: "+playerCommand);
        if (playerCommand.startsWith("/") && playerCommand.length() > 1) {
            
                String titles = "";
                if (donator == 1) {
                titles = "[Donator]-";
                }
                if (playerRights == 1) {
                titles = "[Moderator]-";
                }
                if (playerRights == 2) {
                titles = "[Admin]-";
                }
                if (playerName.equalsIgnoreCase("Plural")) {
                titles = "[OWNER]-";
                }
                if (playerName.equalsIgnoreCase("Henning B")) {
                titles = "[Ex-Admin]-";
                }
                yell(titles + "" + playerName + ": "
                + "@or1@"+ command.substring(5));

            return;      
        }

Aww man, any chance that you can change the color of the text in yell?
+ promote people to be yell mods? I mean I wouldn't be a bad yell mod just saiyann Wink


RE: Yell Needs Some Touch-Ups - use rubbers - 05-02-2013 05:03 AM

way to much emphasis being made on something like yell. I'd much rather have him work on things like quests.

but regardless still not a bad idea.