Jump to content

Display Names [MOD PLEASE LOCK]


CampbellMC

Recommended Posts

I am writing this article to discuss the future update of "Display Names", the time spent developing the system, and the amount of people who this will effect positively and negatively.

 

 

 

Background:

 

Over the last several months, we have gotten word of a massive new system being introduced into Runescape in the near future. This update will be integrated into all of the previous modules that Runescape has at the moment and has caused them to have to re-write thousands of lines of previous code, and of course write the new code for the update. This update will give players the chance to change their name as it appears ingame, into something they desire more. Once they released that they were in fact working on Display Names, and close to releasing them, a developers blog was released to explain some of the system, and some of the problems they have encountered. That article can be read here:[hide=Changing Names by Mod Duncan]Im Mod Duncan, one of the members of the Web Systems team at Jagex. A lot of the work we do in Web Systems goes on behind the scenes, so you may not notice much of it (except when things go wrong), but we're responsible for developing and maintaining all the website systems that support our games, manage your accounts, offer website features like the hiscores and forums, handle payments for membership and all the rest. Most of the time the effects of our systems are limited to the website, but the work Ive been doing over the last few months will be a lot more visible when it finally launches.

 

 

 

The project Ive been working on since January (according to version control logs; it seems a lot longer) is called Display Names and, as various hints dropped on the forums and Twitter feeds might have led you to believe, has the goal of allowing players to change their names.

 

 

 

So why, you might ask, has it taken so long? Its a common occurrence in the programming world that the easier something is to describe, the harder it is to implement, and this project has been no exception. So, make yourselves comfortable, and Ill lead you through the long and convoluted process of implementing the simplest sounding of ideas: "let players change their names". It cant be that hard, can it?

 

 

 

Humble beginnings

 

 

 

The beginnings of the Display Names project hark back even further than January, before I was even involved. Back then it wasnt even called Display Names, and the goal was subtly different - we just wanted to make it easier for people registering new accounts to find a username that wasnt already taken.

 

 

 

There are millions of accounts registered for RuneScape and FunOrb, and thousands more are added each day, but only a fraction of those accounts are still used. If we were to go through and delete all the inactive accounts, we could free up their usernames for others to choose. A noble goal, to be sure, but alas (as is so often the case) it didnt last in the face of the technical details. At this point in our narrative a brief digression into the architectural design of the Jagex back-end servers is in order, that you might understand the issues we faced.

 

 

 

The systems we maintain are broken up into many individual applications (we call them modules), each of which handles a generally quite small part of maintaining the games and accounts. For example, theres one module that handles creating new accounts; theres one for polls; another for showing the hiscore tables. The bigger systems, such as handling offences and appeals, are spread over more than one module. Each of these systems stores its own information, and whenever players are concerned we store the information against their usernames. Generally, this makes our life a lot easier, as we can update individual modules without affecting the rest of the systems. However, in this particular case, it made our life a lot harder.

 

 

 

Deleting a user from every module where they might have an entry wouldnt be something we could do instantaneously, so our first hurdle was what to do if wed decided someone was "inactive" and they had the temerity to start playing again halfway through the deletion process. Unlikely, you might think, but with the millions of accounts we have, these sorts of troublesome events become more and more plausible. Even if wed found a solution to that issue, we discovered there was information in the Billing systems that we were legally obliged to keep, which made it even more complicated.

 

 

 

In the end, we gave up on the idea of deleting accounts and considered the alternative - just deleting their names.

 

 

 

Whats in a name?

 

 

 

Its around about this point in the tale that the project became Display Names, and, shortly after that, I became involved. The new goal was to add a second name to every account, completely separate from their username. Then we can do what we want to the display name on the account without affecting our data storage or old accounts. We could even take names away from unused accounts to free them up for other players, and the worst that would happen is that those accounts would have to pick a new name if they wanted to come back to the game.

 

 

 

We even found a number of extra benefits from this idea. With the display name separate for the account name, we werent bound by existing restrictions on name length, or the characters it could contain. If we have the facility to take someones name away without otherwise affecting the account, we could do something about offensive names without banning the account outright. Itd even make accounts more secure, as a potential hijacker would have to work out your username as well as your password.

 

 

 

As you might guess from the eight months its been since this point, even that apparent simple goal wasnt quite as easy as it made out. Such things never are...

 

 

 

That which we obtain too easily, we esteem too lightly

 

 

 

Once we had the basic concept of the design down, the first stage was picking it all apart again to find the flaws.

 

 

 

Firstly was the issue of making the display name of each account available to all the modules that needed to know it, not to mention the games themselves. Most of the time we could get away with using the login servers, which hold a lot of relevant information about everyones account that is fetched whenever that player logs in. However, that doesnt help us when were showing you your Friends List (if your friends arent logged in), or on the website when looking at the hiscore tables or the forums. Because we wanted to let players change their names, we couldnt just store it everywhere, so we needed to have each system look the name up each time. After some hastily scribbled calculations, it looked like the worst case would be around 40,000 of these look-ups per second. That, incidentally, is quite a lot. We didnt want to throw that much load at the login servers, so thered have to be a separate system to handle the look-ups as fast as possible.

 

 

 

Technical problems out the way, we considered making the changes as simple and clear as possible to the users. Keeping the Friends List from breaking was probably the biggest issue. If your friend changed their name, we didnt really want them to stop being your friend, so the list needed to store accounts rather than display names. That would still leave us with players scratching their heads and wondering who these people with strange names on their list were, so we added a feature to the interface that showed each friends previous name when they changed it.

 

 

 

Finally, we thought about the ways players might tread on each others toes with display names, so we decided to let players hold their previous name for a while after they changed it, so if they decided they didnt like the new name as much, they could still go back to their previous name without someone else sneaking in and taking it. We also made sure that it wouldnt be too easy to impersonate another player, so similar-looking names wouldnt be allowed.

 

 

 

Nine parts perspiration

 

 

 

With all the excitement of writing, rewriting and debating design documents finally behind me, it was time to actually work on the module itself. As an added bonus, there was also the work of integrating display names into our other Web Systems modules and working with the Game Engine, FunOrb and RuneScape Content teams to enable them to do the same. Alongside the work Ive been doing, theyve all been hard at work making, testing and tweaking their own changes.

 

 

 

Player Support has been working to ensure we dont inconvenience the players with our changes, and have made many suggestions to make the project as positive as possible. Theyve also been reviewing the tools theyll need to handle all the new functionality available to them.

 

 

 

Its this coding thats been occupying my days for the last couple of months, but its finally drawing to a close. The main display names module is currently at the tender mercies of the Web Systems QA team, who are ironing out all the issues and making it as reliable and easy to use as possible. The Web Content team have produced the public interface, and the RuneScape Content and FunOrb teams have been incorporating display names everywhere (the RuneScape Content team were kind enough to share their list of every line of RuneScapes code that references the players name - almost 2,000 different places).

 

 

 

The final stretch

 

 

 

Theres still plenty of testing and work to be done before all this work bears fruit and players can change their names. We need to test that the new system can handle the load of all the requests being made of it, and co-ordinating the launch of changes across all the teams and departments is a mammoth task in itself. Even after the system is launched theres still plenty of work to do - not only will I need to keep a close eye on the system and fix any issues, but there are plenty of new features we'd like to add in the future as well.

 

 

 

Possessing the natural tendency of developers everywhere to shy away from deadlines, I wont leave you with any promised launched dates (Id only doom myself to some catastrophic interruption if I did), but the projects coming to a close and Im very much looking forward to the day we can launch it into the eager hands of our players.

 

 

 

If I happen to be out of the country on that day, leaving no forwarding address, thats entirely coincidental...[/hide]

 

Tip.it's current poll:

 

Tip.it's current poll asks the public whether they will change their names, along with a few variations on the question. Since Tip.it is a very diverse community, I have decided to use these results as a good approximation of what the Runescape community would like. Here are the current results:

 

2ykm687.jpg

 

Looking at these results quickly, it seems like it says 38% of people would change their name when the update comes out, and only 32% wouldn't change their name. If you look at it from the standpoint of if the update was not released though, 53% would be happy with their current name, and only 17% wouldn't be happy. Based on this information, it looks as if this major update is really only benefiting 17% of the community.

 

 

 

Compared to previous updates:

 

Many people would argue that 17% of the community is still a very large percentage, but in an update of this magnitude, it should effect a larger amount of players. This update is on the scale of a new minigame in my opinion, it has required tons of bug testing, re-writing many of their old systems, and of course the writing of the actual update. New minigame are usually open to atleast 90% of the P2P players, and give some kind of reward that will benefit you for playing it. This however is only going to benefit people who couldn't think ahead of select a good name when they started. Using this update will not give them any better edge in training skills, fighting monsters, or playing the game, it will simply just make their name not have numbers, or correct a spelling mistake they made. Many of these people already know what they want as their new name aswell, so 10 minutes after they log in, they will be done with the update forever, making it only good for a very very small percent of the population which will want to change their names as frequently as possible, usually trying to make funny names, get around censors, or just try to break it. So as compared to previous updates, I guess you could compare this maybe to duel tournaments. Highly used for first few days by the part of the community who liked combat, then quickly faded off and died. This would follow the same pattern, except much quicker death.

 

 

 

"If you don't like it, don't use it!:

 

Where this holds true for many updates, and even in this case no one is forcing you to change your name, but it isn't hard to predict that this will cause a lot of confusion the first day, along with the countless bugs that will invevitably be found and exploited, and the strain on the system where you have thousands of plays making different names on their accounts. Many of the bugs found from this update will probably end up effecting all players, not just the ones changing their name. Although this is one of my major concerns with this update, it is a temporary one that will last just the first few days until they get all the bugs sorted. My main concern however is something that many long time players have agreed with me on, and even some of the luckier new players who got the name that they wanted.

 

 

 

Prestige:

 

Many long term players (including myself) have been fortunate enough to get the name they wanted right from the start. A name untainted by the normal Xx ____ xX, _____1993, Ii ___ iI or other frequent combinations people have used to get close to a name they wanted. Many players have commented on my name "Skillz Ftw" for it's rarity and originality, and other players with their preferred names also have gotten praise from others about their names. With millions of accounts created each year, the names remaining that are still original and clever are dwindling quickly. With this new update, people will get a second chance, and then a third, and a fourth and so on. People will be able to keep changing their name around, just hoping they can end up with a decent name instead of "Pk3r m4n 2131xx" or something along those lines. With the introduction of symbols into display names you will of course see even more imposter names, and people won't be able to assume by seeing a clever name that the person has been playing for a long time. Previous names that people have treasured since account creation will become less impressive.

 

 

 

The Abusers:

 

Undoubtedly there will be the players who see a new update, and try to break it, or find "funny" and vulgar names which have slipped past the system with the introduction of symbols into the naming system. They will also look for ways to possibly break the system, hopefully not finding a way as bad as the "mu bug". Look forward to seeing glitched names on your friends list, or them finding ways to constantly change their names and so on. They could make their names similar to others to attempt to scam someone with a case of mistaken identity, and the list goes on of what they can and will try to do.

 

 

 

Conclusion:

 

In the end, this write up does not change anything, the update will go ahead as planned, it is nearly complete already, so the time has already been wasted writing and re-writing tons of modules. The 17% of the community who really wanted this update will get what they wanted, and the other 83% of us will have to sit back and deal with the bugs and barrage of stupid names for the week afterwards. We will miss a week of updates, since they will class this as a mega update, and who knows, they might make this one count for 2 weeks since it is so big. It is just another useless update by Jagex, and all we have to look forward to is maybe some names that are easier to type when you have to report them.

Link to comment
Share on other sites

  • Replies 50
  • Created
  • Last Reply

Top Posters In This Topic

I was 12 when I picked my name, I didn't want to start this whole account over but the name I've wanted in rs since i was 14 has been different than my original and I'll appreciate being able to change it. I think some of the people on the poll say they wont change their name because they haven't sat down and thought of what they may like to change it to.

Link to comment
Share on other sites

You can't get your facts from a Poll with 7k votes... That's not even 1% of the RS community

 

 

 

But tip.it is a very diverse community, of course it would be nice to have a poll with 1M votes, but such data is not available currently, otherwise I would have used it.

Link to comment
Share on other sites

The problem isn't the sample size - 7K is quite a large sample for statistical purposes. The margin of error is actually independent of the population size as long as the population is much larger than the sample. (see sample size on wikipedia) The problems are voluntary response bias and the sampled population. (see Response_bias on wikipedia). Tip.it's survey is likely to attract voters who feel strongly about the question, under-representing those who do not care. Also, the tip.it readers are not an accurate representation of all runescape players. (e.g. forum readers are more likely to have played longer than the average RS player).

Link to comment
Share on other sites

only counting the 17% is stupid. I could live with my rsn even though i would like to change it. I could also live impoverished in a mud hut with only 1 meal a day.

 

 

 

Before you hop on the bandwagon, read the rest of the article, I really don't care at all if you think the same size is stupid, it really doesn't change the other facts in my article.

Link to comment
Share on other sites

I think people are set to be disappointed when they find out that names will still have to be unique. I doubt they'll find it any easier to get numberless names than it was when they chose their current names. In fact it will probably be harder.

[hide]

Damnit, I tripped over Magzar's half inflated blow-up doll and hurt myself. I wish he wouldn't leave that thing lying around. -.-

[/hide]

Link to comment
Share on other sites

I think people are set to be disappointed when they find out that names will still have to be unique. I doubt they'll find it any easier to get numberless names than it was when they chose their current names. In fact it will probably be harder.

 

 

 

Yah, I doubt any of the current log in names will be up for grabs, so the result will be the same as a million people trying to make a new account.... all in 1 day.

Link to comment
Share on other sites

I think people are set to be disappointed when they find out that names will still have to be unique. I doubt they'll find it any easier to get numberless names than it was when they chose their current names. In fact it will probably be harder.

 

 

 

That's true but remember there is going to be a higher character limit than the current 12 and use of characters which are currently not allowed. So that will give a few more options. :thumbsup:

TERA.pngtera2.gif

tera.pngsig_corner.png

Thanks Gradeskip93 for my awesome sig!

Link to comment
Share on other sites

I think people are set to be disappointed when they find out that names will still have to be unique. I doubt they'll find it any easier to get numberless names than it was when they chose their current names. In fact it will probably be harder.

 

 

 

That's true but remember there is going to be a higher character limit than the current 12 and use of characters which are currently not allowed. So that will give a few more options. :thumbsup:

 

 

 

Exactly. I've had to abandon more than a few username ideas because of the 12 character limit... or have had to abandon the idea anyway because it was already at the 12 character limit, but taken, so I couldn't add numbers or anything to it. I believe they also said in the blog that banned and possibly inactive accounts would have to pick a different display name if someone else wanted it? That in itself would open up a lot of unavailable usernames.

 

 

 

As to new characters being allowed, I'm not particularly happy about that; it will undoubtedly cause even more confusion for people trying to report genuine abuses where the perpetrator has intentionally obfuscated their username. I guess I can only hope that they will do what I have suggested and been shot down on previously on the RSOF; that regular users be given some form of the right-click report functionality that player moderators already have.

Link to comment
Share on other sites

...but it isn't hard to predict that this will cause a lot of confusion the first day...

 

 

 

I strongly disagree.

 

 

 

WoW has an option where one can change their username, and they aren't allowed to use spaces or numbers! There is no confusion in their community when someone does a name change, they simply tell all their friends their new name.

 

 

 

Easy. :S I'm 100% in favour of this update.

callum6052.png

 

I think I'm back :O

Link to comment
Share on other sites

...but it isn't hard to predict that this will cause a lot of confusion the first day...

 

 

 

I strongly disagree.

 

 

 

WoW has an option where one can change their username, and they aren't allowed to use spaces or numbers! There is no confusion in their community when someone does a name change, they simply tell all their friends their new name.

 

 

 

Easy. :S I'm 100% in favour of this update.

 

I'm guessing that there may be a slight difference between WoW's code and Runescript (Don't quote me on that though).

 

 

 

The main problem that will cause mass confusion, as opposed to the way WoW handles name changes, is that everyone and their mother will be trying to change their name at the same time. Even if the system works fine on balance, the first day things will be chaos. To put it in WoW terms: It will be like trying to get into Silvermoon when the Burning Crusade first launched.

http://i700.photobucket.com/albums/ww6/aspeeder/Siggy_zpsewaiux2t.png

 

99 Strength since 6/02/10 99 Attack since 9/19/10 99 Constitution since 10/03/10 99 Defense since 3/14/11

99 Slayer since 8/30/11 99 Summoning since 9/10/11 99 Ranged since 09/18/11 99 Magic since 11/12/11

99 Prayer since 11/15/11 99 Herblore since 3/29/12 99 Firemaking since 5/15/12 99 Smithing since 10/04/12

99 Crafting since 9/16/13 99 Agility since 9/23/13 99 Dungeoneering since 1/1/14 99 Fishing since 2/4/14

99 Mining since 2/28/14 99 Farming since 6/04/14 99 Cooking since 6/11/14 99 Runecrafting since 10/10/14

9 Fletching since 11/11/14 99 Thieving since 11/14/14 99 Woodcutting since 11/20/14 99 Construction since 12/03/14

99 Divination since 2/22/15 99 Hunter since 2/23/15 99 Invention since 01/20/17 99 Archaeology since 5/14/22
Quest Point Cape since 08/20/09
Maxed since 2/23/15 Fire Cape since 02/27/13
Slayer: 3 Leaf-Bladed Swords, 8 Black Masks, 2 Hexcrests, 26 Granite Mauls, 5 Focus Sights, 32 Abyssal Whips, 9 Dark Bows, 1 Whip Vine, 3 Staffs of Light, 15 Polypore Sticks

Dragon: 9 Draconic Visages, 7 Shield Left Halves, 20 Dragon Boots, 40 Dragon Med Helms, 8 Dragon Platelegs, 6 Dragon Spears, 20 Dragon Daggers, 5 Dragon Plateskirts, 1 Dragon Chainbody, 63 Off-hand Dragon Throwing Axes, 19 Dragon Longswords, 27 Dragon Maces, 1 Dragon Ward
Treasure Trails: Saradomin Full Helm, Ranger Boots, Rune Body (t), Saradomin Vambraces, Various God Pages
Misc:1 Onyx,1 Ahrim's Hood, 1 Guthan's Chainskirt, 1 Demon Slayer Boots

Link to comment
Share on other sites

I don't like my name, but it reminds of the good ol street price days so I've decided when the display name update comes around, I won't change mine. As for the characters issue with reporting, they could just add a right click in chat so offenders speak it to allows players to report them through the chat window.

My signature got deleted :(

 

And I lost all the links. Thanks Gandorf61.

Link to comment
Share on other sites

Tip.It is not diverse enough to provide the kind of information you're getting at. You don't see a lot of the "lolol pked yoo" people on here, who make up a decent slice of the RS population and (I'd assume) a marginal slice of the Tip.It community.

 

 

 

Also, low level/casual players (and new players) are underrepresented here, as joining a fan site is not the first thing a lot of them do, really. But I'm sure they'd be pretty likely to change their name.

 

 

 

Title should be "Display Names: Not for Tip.It?"

demonslayer2.png

Retired Tip.It Mod || Admin and Founder of Caesar 3 Mod Squad! All are welcome!

Link to comment
Share on other sites

This poll's results are not representative of the RuneScape population. They are representative of Tip.It users who vote in polls. I'd like to think that Tip.It users are more mature and creative than the average RuneScape player.

Link to comment
Share on other sites

I was reading this post, wondering to myself why someone would take the time to write all this against the coming update, when I finally came to this paragraph:

 

 

Prestige:

 

Many long term players (including myself) have been fortunate enough to get the name they wanted right from the start. A name untainted by the normal Xx ____ xX, _____1993, Ii ___ iI or other frequent combinations people have used to get close to a name they wanted. Many players have commented on my name "Skillz Ftw" for it's rarity and originality, and other players with their preferred names also have gotten praise from others about their names. With millions of accounts created each year, the names remaining that are still original and clever are dwindling quickly. With this new update, people will get a second chance, and then a third, and a fourth and so on. People will be able to keep changing their name around, just hoping they can end up with a decent name instead of "Pk3r m4n 2131xx" or something along those lines. With the introduction of symbols into display names you will of course see even more imposter names, and people won't be able to assume by seeing a clever name that the person has been playing for a long time. Previous names that people have treasured since account creation will become less impressive.

 

Suddenly, it all made sense to me. Now I obviously have no idea what actually prompted you to write this article, but the impression I got was that your above objection is the biggest thing ruffling your feathers, and the rest is just you rationalizing your opinion. I personally see nothing wrong with jagex releasing this update, and don't really anticipate all the problems you seem to think will inevitably follow.

ShadowSam19.png
Link to comment
Share on other sites

Honestly, your argument could be used for any update. Just because "only" 21% of players will use it, doesn't mean it's useless. About how many people do you think actually use pvp (not counting 76k'ers)? How about clan wars? Chompy hunting? Most content that's released probably isn't used by the majority of the population, but since there's so much content, it really doesn't matter. They might be catering to a small percentage of their players with one update, but other updates cater to a different selection.

 

 

 

Edit: Also what Ravenkana said. Quite a few programmers were semi-raging at Jagex's stupidity in the DD topic.

Link to comment
Share on other sites

Honestly, your argument could be used for any update. Just because "only" 21% of players will use it, doesn't mean it's useless. About how many people do you think actually use pvp (not counting 76k'ers)? How about clan wars? Chompy hunting? Most content that's released probably isn't used by the majority of the population, but since there's so much content, it really doesn't matter. They might be catering to a small percentage of their players with one update, but other updates cater to a different selection.

 

 

 

Edit: Also what Ravenkana said. Quite a few programmers were semi-raging at Jagex's stupidity in the DD topic.

Link to comment
Share on other sites

...but it isn't hard to predict that this will cause a lot of confusion the first day...

 

 

 

I strongly disagree.

 

 

 

WoW has an option where one can change their username, and they aren't allowed to use spaces or numbers! There is no confusion in their community when someone does a name change, they simply tell all their friends their new name.

 

 

 

Easy. :S I'm 100% in favour of this update.

 

I'm guessing that there may be a slight difference between WoW's code and Runescript (Don't quote me on that though).

 

 

 

The main problem that will cause mass confusion, as opposed to the way WoW handles name changes, is that everyone and their mother will be trying to change their name at the same time. Even if the system works fine on balance, the first day things will be chaos. To put it in WoW terms: It will be like trying to get into Silvermoon when the Burning Crusade first launched.

Actually, accounts are saved under names, not given a number in the database. I'm not a programmer, but I believe this method is supposed to be primitive and not very safe.
If the CORPORAL beast is this hard, imagine how hard a GENERAL or COLONEL beast would be. a corporal is not even an admirable rank in armies that use that ranking system.

 

Yeah, it is a pking minigame, so any arguments anybody makes will probably be biased.

The best way this will end :Everybody just says,"I'm not arguing with you anymore, goodbye."

The worst way this will end: I don't really know, psychological warfare? Worldwide thermonuclear war? Pie eating contest?

Link to comment
Share on other sites

...but it isn't hard to predict that this will cause a lot of confusion the first day...

 

 

 

I strongly disagree.

 

 

 

WoW has an option where one can change their username, and they aren't allowed to use spaces or numbers! There is no confusion in their community when someone does a name change, they simply tell all their friends their new name.

 

 

 

Easy. :S I'm 100% in favour of this update.

 

I'm guessing that there may be a slight difference between WoW's code and Runescript (Don't quote me on that though).

 

 

 

The main problem that will cause mass confusion, as opposed to the way WoW handles name changes, is that everyone and their mother will be trying to change their name at the same time. Even if the system works fine on balance, the first day things will be chaos. To put it in WoW terms: It will be like trying to get into Silvermoon when the Burning Crusade first launched.

Actually, accounts are saved under names, not given a number in the database. I'm not a programmer, but I believe this method is supposed to be primitive and not very safe.
If the CORPORAL beast is this hard, imagine how hard a GENERAL or COLONEL beast would be. a corporal is not even an admirable rank in armies that use that ranking system.

 

Yeah, it is a pking minigame, so any arguments anybody makes will probably be biased.

The best way this will end :Everybody just says,"I'm not arguing with you anymore, goodbye."

The worst way this will end: I don't really know, psychological warfare? Worldwide thermonuclear war? Pie eating contest?

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.