I want to block the "^" character and the " " character (space) from character creation.
I've used abuse.txt but it didn't work. I'm going to use Dawson's snippet but isn't that too complicated for a simple issue as that?
Printable View
I want to block the "^" character and the " " character (space) from character creation.
I've used abuse.txt but it didn't work. I'm going to use Dawson's snippet but isn't that too complicated for a simple issue as that?
I believe editing the stored procedure "spInsertChar" will stop those certain characters. Of course you'll need a little bit of knowledge on SQL. Simple, clean, quick and will do the job.
Posted via Mobile Device
This is getting on my nerves ,
Cosmos says:
*You do know that stored procedure DOES NOT exist on Oct right?
Last I heard, stored procedures still were being used. Can't say for certain, never looked into October files that much. Then your only option is just to hook the create char function in the MMatchServer class and just scan the string for a certain character, eg;
Posted via Mobile DeviceCode:for( unsigned int i = 0; i < strlen(szName); i++ )
{
if( szName[i] == '^' )
//Go fuck yourself, invalid character used
}