Raised This Month: $ Target: $400
 0% 

Case sensitivity ?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
TheNTW
Member
Join Date: Jun 2007
Old 04-08-2009 , 04:55   Re: Case sensitivity ?
Reply With Quote #1

A little little *bump*
TheNTW is offline
Hunter-Digital
Veteran Member
Join Date: Aug 2006
Location: In the Game [ro]
Old 04-08-2009 , 15:51   Re: Case sensitivity ?
Reply With Quote #2

somewhere in admin.sma from amxx 1.8+
PHP Code:
            if (Flags FLAG_CASE_SENSITIVE)
            {
                if (
Flags FLAG_TAG)
                {
                    if (
contain(nameAuthData) != -1)
                    {
                        
index i
                        g_CaseSensitiveName
[id] = true
                        
break
                    }
                }
                else if (
equal(nameAuthData))
                {
                    
index i
                    g_CaseSensitiveName
[id] = true
                    
break
                }
            }
            else
            {
                if (
Flags FLAG_TAG)
                {
                    if (
containi(nameAuthData) != -1)
                    {
                        
index i
                        
break
                    }
                }
                else if (
equali(nameAuthData))
                {
                    
index i
                    
break
                }
            } 
replace with

PHP Code:
            if (Flags FLAG_TAG)
            {
                if (
containi(nameAuthData) != -1)
                {
                    
index i
                    
break
                }
            }
            else if (
equali(nameAuthData))
            {
                
index i
                
break
            } 
... skips and disables the "k" flag forever... make a backup first :}

if THIS doesn't work either... I don't know WHAT are you doing there
__________________
Hunter-Digital is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:19.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode