1. Play on the ImDeity Minecraft Multiplayer server -- Goto the "Multiplayer" section of Minecraft and type "mc.imdeity.com" to join!
    Dismiss Notice

Programming service

Discussion in 'Trade' started by btarb24, August 1, 2013.

  1. btarb24

    btarb24

    • Developer
    • Sponsor
    Joined:
    February 27, 2012
    Messages:
    884
    Likes Received:
    1,524
    Trophy Points:
    588
    In-Game Name:
    btarb24
    I don't think it really matters if you misspell something in a game chat. So long as the other people can discern what you intended it's all good :)
     
  2. rangerzfire

    rangerzfire

    Joined:
    February 22, 2013
    Messages:
    130
    Likes Received:
    130
    Trophy Points:
    423
    In-Game Name:
    rangerzfire
    We sometimes I misspell beyond reason and its nice to have good spelling in s convenient way
     
  3. btarb24

    btarb24

    • Developer
    • Sponsor
    Joined:
    February 27, 2012
    Messages:
    884
    Likes Received:
    1,524
    Trophy Points:
    588
    In-Game Name:
    btarb24
    Understandable. There are some free spellchecking libraries i can use, but the problem is that most people purposely avoid proper spelling when talking in a game. This will create many false-positive situations. It's possible i may incorporate this into the modpack at some point, but i have it pretty low on the priority list. I foresee too many support requests where someone is going to say "it changed xyz to abc, but i meant ghi"
     
  4. melvin484

    melvin484

    Joined:
    April 24, 2013
    Messages:
    1,089
    Likes Received:
    763
    Trophy Points:
    243
    In-Game Name:
    TwitchyCake
    What?
     
  5. jimmytightlips

    jimmytightlips

    • Sponsor
    Joined:
    January 15, 2013
    Messages:
    54
    Likes Received:
    31
    Trophy Points:
    173
    In-Game Name:
    jimmytightlips
    Basically, the complaints would be that a misspelled word was corrected with the wrong word.
     
    btarb24 and melvin484 like this.
  6. xMachiavellix

    xMachiavellix

    • Diamond
    Joined:
    June 26, 2013
    Messages:
    104
    Likes Received:
    221
    Trophy Points:
    548
    I already suffered from auto correct! no more! no
     
    Majora_Unmasked and rangerzfire like this.
  7. bcc_chicago

    bcc_chicago

    • Gold
    Joined:
    April 1, 2013
    Messages:
    116
    Likes Received:
    62
    Trophy Points:
    283
    In-Game Name:
    bcc_chicago

    Yes i agree the town chat is very important.

    I would also like to be notified when someone in my town is on main or left. An on screen list of online residents would be nicer. I tiered of typing /t info when waiting for somebody in war.
     
    xMachiavellix and melvin484 like this.
  8. btarb24

    btarb24

    • Developer
    • Sponsor
    Joined:
    February 27, 2012
    Messages:
    884
    Likes Received:
    1,524
    Trophy Points:
    588
    In-Game Name:
    btarb24
    Being able to inform you if a player signs off is something that would require server modifications. Likewise, an online list of residents cannot be done without server changes either.
     
  9. bcc_chicago

    bcc_chicago

    • Gold
    Joined:
    April 1, 2013
    Messages:
    116
    Likes Received:
    62
    Trophy Points:
    283
    In-Game Name:
    bcc_chicago
    I have never looked at any MC code. I have intentionally promised myself i wouldn't, because have too much other coding I should be doing. So i am just guessing this. A list of town members can be gathered from /t info -o on a login or a teleport event and I think text <tab> that populates usernames is a function on the client side so it must have a dynamic list of payers of the current world ( as compared to entire server/proxie ).
     
    melvin484 likes this.
  10. melvin484

    melvin484

    Joined:
    April 24, 2013
    Messages:
    1,089
    Likes Received:
    763
    Trophy Points:
    243
    In-Game Name:
    TwitchyCake
    I dont know yet, but I think you just outsmarted a Minecraft Coding God.
     
  11. btarb24

    btarb24

    • Developer
    • Sponsor
    Joined:
    February 27, 2012
    Messages:
    884
    Likes Received:
    1,524
    Trophy Points:
    588
    In-Game Name:
    btarb24
    The MC code isn't too pretty since half of it is still obfuscated.. you're not missing much, lol. Yea, the /t info command is a possible source, but typing that command everytime you want to update your buddy list isn't too useful.. you might as well just read the list in chat if you have to type it manually anyway.

    Now, the tabbed autocomplete is an idea that i hadn't contemplated. I could make a current-world-only buddy list. Though, i'm not sure that's entirely useful on imdeity either since there are so many worlds. When someone signs off your buddylist you wont know if they just switched worlds or actually signed off.
     
  12. bcc_chicago

    bcc_chicago

    • Gold
    Joined:
    April 1, 2013
    Messages:
    116
    Likes Received:
    62
    Trophy Points:
    283
    In-Game Name:
    bcc_chicago
    I was talking about loading a static list of town members on the login or each warp event. Then comparing that to a list of current online users. Those users would have to be in this world, but i think the tab auto complete is client side so it must have that somewhere. if you have any new joins it may be stale but it would catch up.
     
  13. thejacoborg

    thejacoborg

    • Moderator
    • Gold
    Joined:
    December 11, 2011
    Messages:
    583
    Likes Received:
    743
    Trophy Points:
    598
    In-Game Name:
    thejacoborg
    If you press tab without having chat open you can see a full list of players in all worlds
     
    btarb24 likes this.
  14. bcc_chicago

    bcc_chicago

    • Gold
    Joined:
    April 1, 2013
    Messages:
    116
    Likes Received:
    62
    Trophy Points:
    283
    In-Game Name:
    bcc_chicago
    Yes but the tab auto complete is only for the current world.
     
    melvin484 likes this.
  15. thejacoborg

    thejacoborg

    • Moderator
    • Gold
    Joined:
    December 11, 2011
    Messages:
    583
    Likes Received:
    743
    Trophy Points:
    598
    In-Game Name:
    thejacoborg
    btarb24 likes this.
  16. btarb24

    btarb24

    • Developer
    • Sponsor
    Joined:
    February 27, 2012
    Messages:
    884
    Likes Received:
    1,524
    Trophy Points:
    588
    In-Game Name:
    btarb24
    Thanks Jacob. I'll find the source for that guiscreen and just use the same call it does to get all the players. I didn't even know that screen existed :p I'm sure glad you guys know more about the game than i do, lol.

    BCC, i don't get a list of town members when i login or when i warp. Not even when i /t spawn. Where are you seeing this list? The only way i know to get all town members is via a chat command.
     
    thejacoborg likes this.
  17. bcc_chicago

    bcc_chicago

    • Gold
    Joined:
    April 1, 2013
    Messages:
    116
    Likes Received:
    62
    Trophy Points:
    283
    In-Game Name:
    bcc_chicago
    Yes but if you start typing a command i.e. /msg thej<tab> it will auto complete the player name. but only the ones from the current world. Which is preferable to all worlds.

    But we are junking up his thread now.
     
  18. btarb24

    btarb24

    • Developer
    • Sponsor
    Joined:
    February 27, 2012
    Messages:
    884
    Likes Received:
    1,524
    Trophy Points:
    588
    In-Game Name:
    btarb24
    Na, the thread is fine. Just about all ideas posted on this thread will go into the ImDeity modpack now anyway :) I've added buddy list to the list of features to add to the modpack. Thank you both a lot for the guidance of where to find the data :)
     
    thejacoborg likes this.
  19. melvin484

    melvin484

    Joined:
    April 24, 2013
    Messages:
    1,089
    Likes Received:
    763
    Trophy Points:
    243
    In-Game Name:
    TwitchyCake
    This is a big thing, and does not really have to do with deity but it can be client sided.

    How about a mod where you have a new menu, and you can adjust some settings and play some music that is downloaded on your PC? And no, no replacing Music Disc data. Just a little menu where you can play a song, and a little GUI in game thats lets you select a song and adjust volume using keys on your key board. I found the "radio" mod to be a little hard to configure, but this would be easy to do. :D
     
    Majora_Unmasked likes this.
  20. btarb24

    btarb24

    • Developer
    • Sponsor
    Joined:
    February 27, 2012
    Messages:
    884
    Likes Received:
    1,524
    Trophy Points:
    588
    In-Game Name:
    btarb24
    It's certainly possible. I'll add it to the list of features to add to the modpack. It wont be a top priority but hopefully i'll get to it at some point.
     
    melvin484 likes this.

Share This Page