- Forums
- Idea Submission
- Ideas: [ ]Raids [ ]Forums [ ]Chat
Kuza's Pet Noob [50] | Raid | Details |
Fred [50] | [4hrs Left] Raid | Details |
|
FORUMS
I have two thoughts on the forum. The first has to do with quotations. At present, quotes are nested within each other. When people don't remove the excess baggage, it becomes cluttered and repet*tive. There are times to have nested quotes though, maybe a button to quote, and another to quote all? My suggestion is to remove the quote nesting.
My last forum idea is regarding pages. Could you add an option in the preferences to change how many posts we see per page? Right now the number is six which is very, very low. If I had the option, I would probably do 15.
CHAT
The volume right now for chat notifications is high compared to other sounds on the computer. It scares the living jeepers out of me at night when I don't have anything playing but have my headphones on working on homework or something and someone sends a message. An idea would be to offer a volume control for the notifications.
Screwing up a private message stinks. I appreciate how it's changed so the message doesn't accidentally get sent to everyone in the error message. Changing the color of the text box to a darker grey when /msg name>> is typed would be a very nice feature to help keep things sorted for the user.
With chat bans, the user doesn't get any notification as to the reason, though if this is happening, they will know. Still, I think it's fair to require the mod to enter a reason in to serve as both notification to the user as well as logging (below). Requiring a command of /ban Username>>Minutes Reason would serve this purpose. Since it's Username>>minutes[number], the space serves as an easy and reliable divider making it a natural addition. A quick alteration to the "you've been banned" box could add both the reason, the number of minutes, as well as the time in which the ban will be over. Having the user get a message for good measure would be preferable. This will let them go back to check the time they'll be let back in. Any time they try to enter chat while banned, the same box can display with the minutes left and time they can return. So on top of the command alteration, notify banned users of the time, reason and time allowed back via warning box and private message.
The final piece is along the lines of the above paragraph. Essentially, take any ban or unban when it happens and put it in a log.
function msgColor(){
let regex = /\/msg\s[a-zA-Z\s_-]+>>/ // Regex matches all characters allowed for username.
if (regex.test(document.getElementByID('chat_msg_box').value == true) { // Get value of msg_box & test for regex match document.getElementById('chat_msg_box').style.color = "#d2d2d2"; // If match is true, change color to grey. } } document.getElementById('chat_msg_box').onchange= msgColor(); // Run function if text box changes value.