Does anybody know 1 BYOND Key that doesn't start with a Capital letter?
-------------------majin noobs------------------------------
ID:274508
![]() Apr 6 2002, 12:55 pm
|
|
![]() Apr 6 2002, 12:57 pm
|
|
Off the top of my head; "dbz73".
|
Majin Noobs wrote:
Does anybody know 1 BYOND Key that doesn't start with a Capital letter? sleepymoogle13, tenkuu, and one other that I can't remember at the moment. These were made before Dantom intentionally enforced capital letters to prevent people from making stupid names like "longsword": The longsword logs in. The longsword hits you for 32 damage! |
I have a proc I use in my new projects for those names called capproc(), it makes anything it's used on have the first letter capitilized:
mob/proc/capproc(T as text) |
How do u make the name of a person start with a captain letter,no matter what?
------------------majin noobs----------------------------- |
Spuzzum wrote:
[snip] These were made before Dantom intentionally enforced capital letters to prevent people from making stupid names like "longsword": What stopped the programmers from changing things within the game? Who would not understand it was just a name within the forums? |
What stopped the programmers from changing things within the game? Who would not understand it was just a name within the forums? Mainly the fact that people are dumber than you think. ;-P |
Offhand, I can think of jobe (at least, he used to be lowercase) and my friend saraisam.
Z |
Nadrew wrote:
I have a proc I use in my new projects for those names called capproc(), it makes anything it's used on have the first letter capitilized: mob/proc/capproc(T as text) That doesn't strike me as a great approach. I use similar code, but where I take issue is right here: copytext(T,2,200) Why are you limiting all text that runs through this proc to 199 characters? You can make that 0 instead of 200, or leave out that argument altogether, and get the whole text string. If you want to limit specific pieces of text you can always limit it before passing it to capproc(). Lummox JR |