habbo retro cant register a user on my hotel pls help

Legend

https://habda.sh/
Jun 17, 2015
86
20
You want a maximum of five accounts per IP?
 
Go to wwwroot (or htdocs) and go to your 'app' folder. You'll see a file called "class.users.php" - open that in your Notepad++ and find this:
Code:
if(!$this->hasClones($_SERVER['REMOTE_ADDR']))
{
if(!isset($template->form->reg_gender)) { $template->form->reg_gender = 'M'; }
if(!isset($template->form->reg_figure)) { $template->form->reg_figure = $_CONFIG['hotel']['figure']; }
                                       
$this->addUser($template->form->reg_username, $core->hashed($template->form->reg_password), $template->form->reg_email, $_CONFIG['hotel']['motto'], $_CONFIG['hotel']['credits'], $_CONFIG['hotel']['pixels'], 1, $template->form->reg_figure, $template->form->reg_gender, $core->hashed($template->form->reg_key));
                           
$this->turnOn($template->form->reg_username);
                                   
header('Location: ' . $_CONFIG['hotel']['url'] . '/me');
exit;
 }
 else
{
$template->form->error = 'Sorry, but you cannot register twice';
}
And I suppose you can just take out the
Code:
if(!$this->hasClones($_SERVER['REMOTE_ADDR']))
}
else
{
$template->form->error = 'Sorry, but you cannot register twice';
}
bit. But if I'm wrong, I someone can correct me.
 

Users who are viewing this thread

Top