Results 1 to 17 of 17
  1. #1
    Community Member Namelessone's Avatar
    Join Date
    Mar 2006
    Posts
    103

    Default Message of the day problems!

    So I went to edit the Message of the Day for my guild and I found out that the one of the words in our guild name is forbidden text!

    Since when did the word Sword become forbidden???

  2. #2
    Community Member Crabo's Avatar
    Join Date
    May 2006
    Posts
    260

    Default

    Quote Originally Posted by Namelessone View Post
    So I went to edit the Message of the Day for my guild and I found out that the one of the words in our guild name is forbidden text!

    Since when did the word Sword become forbidden???
    As a matter of interest, what were the words that came before and after 'sword'.

  3. #3
    Community Member Namelessone's Avatar
    Join Date
    Mar 2006
    Posts
    103

    Default

    Quote Originally Posted by Crabo View Post
    As a matter of interest, what were the words that came before and after 'sword'.
    The message was:

    The Queens Ball coming soon ~SwordAndRose.guildportal.com~

    The message was able to be changed to:

    The Queens Ball coming soon ~wordAndRose.guildportal.com~

    And now reads:

    The Queens Ball coming soon ~Check the Site~
    Last edited by Namelessone; 10-03-2007 at 04:51 AM. Reason: Spelling -_-

  4. #4
    Community Member Crabo's Avatar
    Join Date
    May 2006
    Posts
    260

    Default

    Quote Originally Posted by Namelessone View Post
    The message was:

    The Queens Ball coming soon ~SwordAndRose.guildportal.com~

    The message was able to be changed to:

    The Queens Ball coming soon ~wordAndRose.guildportal.com~

    And now reads:

    The Queens Ball coming soon ~Check the Site~
    I have no idea what could have been wrong with that.

  5. #5
    Community Member Qzipoun's Avatar
    Join Date
    Nov 2006
    Posts
    0

    Default

    Quote Originally Posted by Crabo View Post
    I have no idea what could have been wrong with that.
    Yeah I don't see it either. Maybe the '~' is messing it up? Don't see how any of the letters combine to anything that could be censored...

  6. #6
    Community Member lenric's Avatar
    Join Date
    Dec 2006
    Posts
    182

    Default me neither

    Me neither, and as part of the guild am really wondering why "sword" is forbidden.

  7. #7

    Default

    Oh.. I can see the euphanisim in sword, but that is freaking ridiculous. I think someone got hired with a thesaurus in hand and no clue of what they were doing.

  8. #8
    Community Member Tenkari_Rozahas's Avatar
    Join Date
    Apr 2006
    Posts
    1,732

    Default

    Sword can be another term for the male reproductive organ.... so maybe thats it XD
    Quote Originally Posted by jwbarry View Post
    Your doomsaying of doom does not meet the doom regulations for doom font, doom color, or doom spelling, specifically the number of "o"s. Please take a moment and correct these glaring doom issues.

  9. #9
    Community Member Talcyndl's Avatar
    Join Date
    Jan 2007
    Posts
    2,175

    Default

    I just checked and was able to add the word Sword to our guild message. So I'm not sure what the problem was.

  10. #10
    Community Member lenric's Avatar
    Join Date
    Dec 2006
    Posts
    182

    Default

    Quote Originally Posted by Talcyndl View Post
    I just checked and was able to add the word Sword to our guild message. So I'm not sure what the problem was.
    That is truly strange, I was there when he was trying to change it. Wonder if it was the combination of the ~s that made it inelligible. hmmm tilda s...I see nothing wrong with that...dunno...if only I had the power to change the message I would play around with it and see.

  11. #11
    Founder & Hero jjflanigan's Avatar
    Join Date
    Feb 2006
    Posts
    2,854

    Default

    Is it possibly tied to ~S and not the actual word Sword? I.e. would the MoTD work fine without the tilde?

  12. #12

    Default

    Quote Originally Posted by jjflanigan View Post
    Is it possibly tied to ~S and not the actual word Sword? I.e. would the MoTD work fine without the tilde?
    Do you think it is doing a bad parsed hex check instead of character ascii check?

  13. #13
    Community Member lenric's Avatar
    Join Date
    Dec 2006
    Posts
    182

    Default

    Quote Originally Posted by Missing Minds View Post
    Do you think it is doing a bad parsed hex check instead of character ascii check?
    Whoaaaa parsed hex character ascii? ummm english please? haha this guy(points thumbs at himself) has no idea what any of that means.

  14. #14

    Default

    Quote Originally Posted by lenric View Post
    Whoaaaa parsed hex character ascii? ummm english please? haha this guy(points thumbs at himself) has no idea what any of that means.
    *grins* Programmer talk.

    Basically, there are many ways you can check the MoTD to see if it contains naughty words. As computers work only in binary (1s and 0s) there needs to be a system in place to convert binary into human readable text. This code used here is called ASCII (American Standard Code for Information Interchange)
    http://www.asciitable.com/

    For example the letter 'C' has a decimal value of 68. (01000011 in binary).

    Many simple checks just break apart a longer sentence (programmers call them strings) into smaller parts, hence parcing. Normally simple checks compare the ASCII characters to what is desired. While this works, it takes longer than doing actual checks against the binary values.

    Rather than work with binary numbers directly, programmers will typically deal with groupings of the binary. These groupings are what we called hex values. The hex value for 'C' is 43. (hex is also base 16, as decimal is base 10, and binary is base 2)

    A parcer will go through this string looking for a key/token. This key/token is normally what you are searching for. If the parcer is using hex, and it found a key/token that was actually a false hit, it could parce the whole MoTD wrong, hence why ~sword could have been caught.

    I tried to keep this simple and may have used some terms wrong, but hopefully you are more confused now than what you started out at.

    The simpler answer to what I said is simply. "The program done did a stupid when looking for bad words."

  15. #15
    Community Member lenric's Avatar
    Join Date
    Dec 2006
    Posts
    182

    Default

    Quote Originally Posted by Missing Minds View Post
    *grins* Programmer talk.

    Basically, there are many ways you can check the MoTD to see if it contains naughty words. As computers work only in binary (1s and 0s) there needs to be a system in place to convert binary into human readable text. This code used here is called ASCII (American Standard Code for Information Interchange)
    http://www.asciitable.com/

    For example the letter 'C' has a decimal value of 68. (01000011 in binary).

    Many simple checks just break apart a longer sentence (programmers call them strings) into smaller parts, hence parcing. Normally simple checks compare the ASCII characters to what is desired. While this works, it takes longer than doing actual checks against the binary values.

    Rather than work with binary numbers directly, programmers will typically deal with groupings of the binary. These groupings are what we called hex values. The hex value for 'C' is 43. (hex is also base 16, as decimal is base 10, and binary is base 2)

    A parcer will go through this string looking for a key/token. This key/token is normally what you are searching for. If the parcer is using hex, and it found a key/token that was actually a false hit, it could parce the whole MoTD wrong, hence why ~sword could have been caught.

    I tried to keep this simple and may have used some terms wrong, but hopefully you are more confused now than what you started out at.

    The simpler answer to what I said is simply. "The program done did a stupid when looking for bad words."
    Ahhhh see the simple answer worked....here as a culinary major(hopefully a 5 star restaurant chef one day) I know a loooot more about porkchops, pastas, and pastries than I will ever know about programming.

  16. #16
    Community Member Namelessone's Avatar
    Join Date
    Mar 2006
    Posts
    103

    Default

    You all bring up good points and I'll try to move or remove the "~" from the message.

    The only problem is that before mod 5 update, I was able to post the message:

    ~SwordAndRose.guildportal.com~

    So perhaps under mod 5, the "~" have to be separate from the word?

    Testing right now
    Last edited by Namelessone; 10-03-2007 at 05:40 PM.

  17. #17
    Community Member Namelessone's Avatar
    Join Date
    Mar 2006
    Posts
    103

    Default My head hurts

    Soooo it worked, I had to add a space between the ~ and the S.

    ::lets out a big sigh of relief:: At least now I can post MOD's that have the guild website for information

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

This form's session has expired. You need to reload the page.

Reload