• Login
  • Register
Hello There, Guest!

Username:

Password:

Remember me

hasło Lost Password?

  • Forum
  • Search
  • Member List
  • Play
  • Hiscores
glowna Rune2006 → Rune2006 → Suggestions & Feedback v
« Previous 1 ... 8 9 10 11 12 Next »
→

Yell Needs Some Touch-Ups


Post Reply
Threaded Mode | Linear Mode
Yell Needs Some Touch-Ups
Goku
Ice Giant Member
  • Posts:332
  • Joined:Apr 2013
  • Reputation:12
05-01-2013 10:11 AM Yell Needs Some Touch-Ups
Post: #1
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.

(This post was last modified: 05-01-2013 10:11 AM by Goku.)
top
find
quote
savage
Dwarf Member
  • Posts:70
  • Joined:Apr 2013
  • Reputation:1
05-01-2013 10:16 AM RE: Yell Needs Some Touch-Ups
Post: #2
Support(:

[Image: rhulQRr.jpg]
Put this kid on skates. While in sandals...

top
find
quote
Muhv
Dwarf Member
  • Posts:29
  • Joined:Apr 2013
  • Reputation:0
05-01-2013 02:16 PM RE: Yell Needs Some Touch-Ups
Post: #3
And there should be command to turn of this yell. I don't care this yell, this only disrupts.

top
find
quote
Hal
Registered
  • Posts:33
  • Joined:Apr 2013
  • Reputation:4
05-01-2013 03:01 PM RE: Yell Needs Some Touch-Ups
Post: #4
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.

top
find
quote
Ingu
Minotaur Member
  • Posts:133
  • Joined:Mar 2013
  • Reputation:4
05-01-2013 03:11 PM RE: Yell Needs Some Touch-Ups
Post: #5
Support with all of your suggestions.

top
find
quote
Henning B
Skeletal Member
  • Posts:538
  • Joined:Mar 2013
  • Reputation:9
05-01-2013 03:24 PM RE: Yell Needs Some Touch-Ups
Post: #6
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));
}

Best Regards
~Henning B.
Married to Dsun.
[Image: Resubmit.png]
Need Help?

(This post was last modified: 05-01-2013 03:30 PM by Henning B.)
top
find
quote
Henning B
Skeletal Member
  • Posts:538
  • Joined:Mar 2013
  • Reputation:9
05-01-2013 05:37 PM RE: Yell Needs Some Touch-Ups
Post: #7
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;      
        }

Best Regards
~Henning B.
Married to Dsun.
[Image: Resubmit.png]
Need Help?

top
find
quote
Henning B
Skeletal Member
  • Posts:538
  • Joined:Mar 2013
  • Reputation:9
05-01-2013 06:56 PM RE: Yell Needs Some Touch-Ups
Post: #8
are you gonna use maarten?

Best Regards
~Henning B.
Married to Dsun.
[Image: Resubmit.png]
Need Help?

top
find
quote
Goku
Ice Giant Member
  • Posts:332
  • Joined:Apr 2013
  • Reputation:12
05-02-2013 03:33 AM RE: Yell Needs Some Touch-Ups
Post: #9
(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

top
find
quote
use rubbers
Ice Giant Member
  • Posts:228
  • Joined:Apr 2013
  • Reputation:4
05-02-2013 05:03 AM RE: Yell Needs Some Touch-Ups
Post: #10
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.

[Image: 2m5ikp1.jpg]


[Image: backgroundwork.png]

top
find
quote
« Next Oldest | Next Newest »
Pages (2): 1 2 Next »
Post Reply


  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:


User(s) browsing this thread:
Index | Return to Top | Lite (Archive) Mode | RSS Syndication

Powered By MyBB, © 2002-2025 MyBB Group.
Designed by Adrian/Reksio 54ceebe7a40ef32df34f37c2065d4490