REVCMS Habbo Theme register more than once?

Rye

Member
Mar 27, 2011
34
0
Hello, I'm using REVCMS Habbo Theme and if my users try to register again they can't and I have many users in the same household as each other so is there a way to allow registering more than once?
 

DiverseLulz

Learning C# :D
Sep 26, 2011
90
9
Go into /app/class.user.php and find
Code:
final public function hasClones($ip)
    {
        global $engine;
        if($engine->num_rows("SELECT * FROM users WHERE ip_reg = '" . $_SERVER['REMOTE_ADDR'] . "'") == 1)
        {
            return true;
        }
       
        return false;
    }
Change the 1 to the number of accounts you want them to be allowed to register.

And like Monkey said, use the search bar next time facepalm.jpg
 

Monkey

Member
Apr 7, 2012
114
16
Go into /app/class.user.php and find
Code:
final public function hasClones($ip)
    {
        global $engine;
        if($engine->num_rows("SELECT * FROM users WHERE ip_reg = '" . $_SERVER['REMOTE_ADDR'] . "'") == 1)
        {
            return true;
        }
     
        return false;
    }
Change the 1 to the number of accounts you want them to be allowed to register.

And like Monkey said, use the search bar next time facepalm.jpg
So much easier.
 

Users who are viewing this thread

Top