[HELP] About Character Name

05/11/2018 19:57 cmwarjin0#1
Hello guys.. i am trying out how to change in the source the original character name creation.. i am using Proud Source and it only allows me to use capital letter on the First letter of the character name.. Thanks in advance
06/02/2018 08:54 cmwarjin0#2
but still cant figure out where to edit in database
06/03/2018 00:27 Mushpoie#3
It's due to one of the __SECURITY_FIXES in the database cpp's. I forget which one exactly so you'd have to check.
06/03/2018 02:19 cmwarjin0#4
Quote:
Originally Posted by Mushpoie View Post
It's due to one of the __SECURITY_FIXES in the database cpp's. I forget which one exactly so you'd have to check.
thank for the reply.. i found it at Dbmanager.cpp it is ok if i cooment it out or i just change it at sql database .dbo [CHECK_CHARS]
06/03/2018 03:13 Mushpoie#5
Quote:
Originally Posted by cmwarjin0 View Post
thank for the reply.. i found it at Dbmanager.cpp it is ok if i cooment it out or i just change it at sql database .dbo [CHECK_CHARS]
dbo.CHECK_CHARS has nothing to do with forcing lowercase lettering. I told you where the problem is lol.
06/03/2018 06:26 aoyamananami#6
WndTitle.cpp maybe
06/03/2018 14:45 cmwarjin0#7
Quote:
Originally Posted by aoyamananami View Post
WndTitle.cpp maybe
are you sure with WndTitle.cpp?? U have the same problem with this right when ur using Proud Source Before?
06/03/2018 20:24 carloshack#8
Found nothing on databases .cpp's about this... Can anyone help please?
06/04/2018 01:27 cmwarjin0#9
Quote:
Originally Posted by Mushpoie View Post
It's due to one of the __SECURITY_FIXES in the database cpp's. I forget which one exactly so you'd have to check.
i commented out __SECURITY_FIXES from versioncommon.h in database, neuz and world. compiled with no errors but still the name will automatically change into lowercase
06/04/2018 04:23 aoyamananami#10
Quote:
Originally Posted by cmwarjin0 View Post
are you sure with WndTitle.cpp?? U have the same problem with this right when ur using Proud Source Before?
compare your wndtitle.cpp to other wndtitle.cpp, i forgot the exact line.
06/04/2018 15:28 KingKeesie#11
Check what __SECURITY_FIXES it does dont just comment it out and maybe try comparing the wndtitle ^
06/07/2018 00:46 xTwiLightx#12
Code:
void	CProject::Formalize( LPSTR szName )
This method (_strlwr() to be exact) converts all characters to lowercase except the first one. Remove the call to it in
Code:
void CDbManager::CreatePlayer(CQuery *qry, LPDB_OVERLAPPED_PLUS lpDbOverlappedPlus)
or change the switch/case code inside it.