Relembrando a primeira mensagem :
Eai galera , estou aqui para trazer para vocês mais um tutorial de como criar habbo v64 com hamachi ! para quem tem net compartilhada com outra pessoa !.
Como vocês sabem eu gosto muito de tutoriais organizados então vou fazer o tuto mais organizado possivel !
Bom chega de papo e vamos aos downloads , baixe os seguintes programas :
-- Habbo Ngen CMS+EMU+DB v1 : [url]rapidshare.com /#!download|947l36|438948906|Habbo_Ngen__Cms_v1_.rar|36264[/url]
-- VertrigoServ 2.22 : http://www.baixaki.com.br/download/vertrigoserv.htm
-- Hamachi² 2.0.2.85 : http://www.baixaki.com.br/download/hamachi-.htm
-- Microsoft .Net Framework 4.0 (link direto para download) : http://www.superdownloads.com.br/redir.cfm?softid=68387
-- MYSQL Connector : http://mysql.softonic.com.br/download
Agora chega de downloads e vamos a pratica (TUTO PARA NOVATOS !)
_______________________________________________________________________________________________________________
1º Primeiramente va ate o local onde voce baixou o Habbo Ngen CMS + EMU + DB , e extraia ela para o Desktop , depois de extrai-lo , instale , o VertrigoServ em seu computador , e bem rapido , depois de instala-lo instale em seu pc o net framework , ele demora muito pra instalar dependendo de seu computador ! , enquanto o net framework instala , instale o Hamachi em seu computador , e bem rapido tambem .
____________________________________________________________________________________________________________________
2ºDepois de instalar tudo , instale o MySql connector ele e rapido mais depende de seu pc ! , depois de terminar de instalar TUDO , va ate a Habbo Ngen ai la dentro tem uma pasta chamada CMS ai voce clica la , e depois dentro da pasta cms clique em "Inc" , depois dentro da pasta "Inc" clique em " Inc.Config" ai apague tudo que estiver la e cole isso :
----------------------------------------------------------------------------------------------------------------------------------
Código:
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| http://www.meth0d.org
| #######################################################################
| This program is free software: you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation, either version 3 of the License, or
| (at your option) any later version.
| #######################################################################
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
\======================================================================*/
$config['Site']['www'] = "http://Ip do seu hamachi";
$config['Site']['hash_secret'] = "xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\$OIFThrR_gh(ugf*/";
$config['MySQL']['hostname'] = "localhost";
$config['MySQL']['username'] = "root";
$config['MySQL']['password'] = "vertrigo";
$config['MySQL']['database'] = "ngendb";
$config['MUS']['enabled'] = false;
$config['MUS']['ip'] = "IP do seu hamachi";
$config['MUS']['port'] = "90";
?>
----------------------------------------------------------------------------------------------------------------------------------
3º Na onde esta escrito "IP do seu hamachi"; , coloque o ip do seu hamachi , para saber o ip do hamachi va ate o hamachi aquele programa que instalou no seu pc , ai quando clicar nele coloque um nome para voce e clique para ligar ele , ai depois quando entrar nele vai apareçer um IP que sempre começa com 5....... algo assim , ai pegue esse IP que apareçeu no seu hamachi e cole na onde esta escrito "IP do seu hamachi"; , ai nao mude mais nada , ai salve e feche este bloco de notas .
-----------------------------------------------------------------------------------------------------------------------------------------
4º depois va no bloco de notas ' class.db.mysql' que fica na pasta "Inc" ,. ai depois que abrir o bloco de notas " class.db.mysql" , apague tudo que estiver la e cole isso :
--------------------------------------------------------------------------------------------------------------------------------------
Código:
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| http://www.meth0d.org
| #######################################################################
| This program is free software: you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation, either version 3 of the License, or
| (at your option) any later version.
| #######################################################################
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
\======================================================================*/
class MySQL
{
private $connected = false;
private $hostname = "localhost";
private $username = "root";
private $password = "vertrigo";
private $database = "ngendb";
private $link;
public function MySQL($host, $user, $pass, $db)
{
$this->connected = false;
$this->hostname = $host;
$this->username = $user;
$this->password = $pass;
$this->database = $db;
}
public function IsConnected()
{
if ($this->connected)
{
return true;
}
return false;
}
public function Connect()
{
$this->link = mysql_connect($this->hostname, $this->username, $this->password) or $this->error(mysql_error());
mysql_select_db($this->database, $this->link) or $this->error(mysql_error());
$this->connected = true;
}
public function Disconnect()
{
if($this->connected)
{
@mysql_close($this->link) or $this->error("could not close conn");
$this->connected = false;
}
}
public function DoQuery($query)
{
$resultset = @mysql_query($query, $this->link) or $this->error(mysql_error());
return $resultset;
}
public function Evaluate($resultset)
{
return @mysql_result($resultset, 0);
}
public function Error($errorString)
{
global $core;
$core->systemError('Database Error', $errorString);
}
public function __destruct()
{
$this->disconnect();
}
}
?>
------------------------------------------------------------------------------------------------------------------------------------------
E pronto salve e feche o bloco de notas !
------------------------------------------------------------------------------------------------------------------------------------------
5º Agora clique na pasta " Tpl " que fica dentro da pasta "Inc" , ai quando clicar na pasta "Tpl" clique no bloco de notas " Page-client" , depois que clicar nesse bloco de notas , apague tudo que tiver la e cole isso :
(COLE APENAS AS LETRAS E NUMEROS NAO COLE ESSES TRAÇOS AQUI EM BAIXO )
--------------------------------------------------------------------------------------------------------------------------------
Código:
var habboDefaultClientPopupUrl = "%www%/client";
FlashExternalInterface.loginLogEnabled = true;
FlashExternalInterface.logLoginStep("web.view.start");
if (top == self) {
FlashHabboClient.cacheCheck();
}
var flashvars = {
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "ID DO SEU HAMACHI",
"connection.info.port" : "25",
"site.url" : "%www%",
"url.prefix" : "%www%",
"client.reload.url" : "%www%/account/reauthenticate?page=/flash_client",
"client.fatal.error.url" : "%www%/flash_client_error",
"client.connection.failed.url" : "%www%/client_connection_failed",
"external.hash" : "",
"external.variables.txt" : "http://images.haddoz.net/gamedata/external_variables_nav.txt",
"external.texts.txt" : "http://images.haddoz.net/gamedata/external_flash_texts_es.txt",
"use.sso.ticket" : "1",
if ($forwardType > 0)
{
echo ' "forward.type" : "' . $forwardType . '",' . LB;
echo ' "forward.id" : "' . $forwardId . '",' . LB;
}
?>
"sso.ticket" : "%sso_ticket%",
"processlog.enabled" : "0",
"account_id" : "0",
"client.starting" : "Bem vindo %habboName% ao Habbirx Hotel esrá carregando ",
"flash.client.url" : "http://images.haddoz.net/dcr/r63_none_1dc60c6d6ea6e089c6893ab4e0541ee0/",
"user.hash" : "",
"facebook.user" : "0",
"has.identity" : "0",
"flash.client.origin" : "popup"
};
var params = {
"base" : "http://images.haddoz.net/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/",
"allowScriptAccess" : "always",
"menu" : "false"
};
if (!(HabbletLoader.needsFlashKbWorkaround())) {
params["wmode"] = "opaque";
}
var clientUrl = "http://images.haddoz.net/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/Habbo.swf";
try {
if (swfobject.getFlashPlayerVersion().major <= 9) {
clientUrl = "http://images.haddoz.net/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/Habbo10.swf";
}
} catch(e) {}
swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "9.0.115", "http://images.habbo.com/habboweb/%web_build%/web-gallery/flash/expressInstall.swf", flashvars, params);
RightClick.init("flash-wrapper", "flash-container");
Eai galera , estou aqui para trazer para vocês mais um tutorial de como criar habbo v64 com hamachi ! para quem tem net compartilhada com outra pessoa !.
Como vocês sabem eu gosto muito de tutoriais organizados então vou fazer o tuto mais organizado possivel !
Bom chega de papo e vamos aos downloads , baixe os seguintes programas :
-- Habbo Ngen CMS+EMU+DB v1 : [url]rapidshare.com /#!download|947l36|438948906|Habbo_Ngen__Cms_v1_.rar|36264[/url]
-- VertrigoServ 2.22 : http://www.baixaki.com.br/download/vertrigoserv.htm
-- Hamachi² 2.0.2.85 : http://www.baixaki.com.br/download/hamachi-.htm
-- Microsoft .Net Framework 4.0 (link direto para download) : http://www.superdownloads.com.br/redir.cfm?softid=68387
-- MYSQL Connector : http://mysql.softonic.com.br/download
Agora chega de downloads e vamos a pratica (TUTO PARA NOVATOS !)
_______________________________________________________________________________________________________________
1º Primeiramente va ate o local onde voce baixou o Habbo Ngen CMS + EMU + DB , e extraia ela para o Desktop , depois de extrai-lo , instale , o VertrigoServ em seu computador , e bem rapido , depois de instala-lo instale em seu pc o net framework , ele demora muito pra instalar dependendo de seu computador ! , enquanto o net framework instala , instale o Hamachi em seu computador , e bem rapido tambem .
____________________________________________________________________________________________________________________
2ºDepois de instalar tudo , instale o MySql connector ele e rapido mais depende de seu pc ! , depois de terminar de instalar TUDO , va ate a Habbo Ngen ai la dentro tem uma pasta chamada CMS ai voce clica la , e depois dentro da pasta cms clique em "Inc" , depois dentro da pasta "Inc" clique em " Inc.Config" ai apague tudo que estiver la e cole isso :
----------------------------------------------------------------------------------------------------------------------------------
Código:
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| http://www.meth0d.org
| #######################################################################
| This program is free software: you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation, either version 3 of the License, or
| (at your option) any later version.
| #######################################################################
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
\======================================================================*/
$config['Site']['www'] = "http://Ip do seu hamachi";
$config['Site']['hash_secret'] = "xCg532%@%gdvf^5DGaa6&*rFTfg^FD4\$OIFThrR_gh(ugf*/";
$config['MySQL']['hostname'] = "localhost";
$config['MySQL']['username'] = "root";
$config['MySQL']['password'] = "vertrigo";
$config['MySQL']['database'] = "ngendb";
$config['MUS']['enabled'] = false;
$config['MUS']['ip'] = "IP do seu hamachi";
$config['MUS']['port'] = "90";
?>
----------------------------------------------------------------------------------------------------------------------------------
3º Na onde esta escrito "IP do seu hamachi"; , coloque o ip do seu hamachi , para saber o ip do hamachi va ate o hamachi aquele programa que instalou no seu pc , ai quando clicar nele coloque um nome para voce e clique para ligar ele , ai depois quando entrar nele vai apareçer um IP que sempre começa com 5....... algo assim , ai pegue esse IP que apareçeu no seu hamachi e cole na onde esta escrito "IP do seu hamachi"; , ai nao mude mais nada , ai salve e feche este bloco de notas .
-----------------------------------------------------------------------------------------------------------------------------------------
4º depois va no bloco de notas ' class.db.mysql' que fica na pasta "Inc" ,. ai depois que abrir o bloco de notas " class.db.mysql" , apague tudo que estiver la e cole isso :
--------------------------------------------------------------------------------------------------------------------------------------
Código:
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d'
| http://www.meth0d.org
| #######################################################################
| This program is free software: you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation, either version 3 of the License, or
| (at your option) any later version.
| #######################################################################
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
\======================================================================*/
class MySQL
{
private $connected = false;
private $hostname = "localhost";
private $username = "root";
private $password = "vertrigo";
private $database = "ngendb";
private $link;
public function MySQL($host, $user, $pass, $db)
{
$this->connected = false;
$this->hostname = $host;
$this->username = $user;
$this->password = $pass;
$this->database = $db;
}
public function IsConnected()
{
if ($this->connected)
{
return true;
}
return false;
}
public function Connect()
{
$this->link = mysql_connect($this->hostname, $this->username, $this->password) or $this->error(mysql_error());
mysql_select_db($this->database, $this->link) or $this->error(mysql_error());
$this->connected = true;
}
public function Disconnect()
{
if($this->connected)
{
@mysql_close($this->link) or $this->error("could not close conn");
$this->connected = false;
}
}
public function DoQuery($query)
{
$resultset = @mysql_query($query, $this->link) or $this->error(mysql_error());
return $resultset;
}
public function Evaluate($resultset)
{
return @mysql_result($resultset, 0);
}
public function Error($errorString)
{
global $core;
$core->systemError('Database Error', $errorString);
}
public function __destruct()
{
$this->disconnect();
}
}
?>
------------------------------------------------------------------------------------------------------------------------------------------
E pronto salve e feche o bloco de notas !
------------------------------------------------------------------------------------------------------------------------------------------
5º Agora clique na pasta " Tpl " que fica dentro da pasta "Inc" , ai quando clicar na pasta "Tpl" clique no bloco de notas " Page-client" , depois que clicar nesse bloco de notas , apague tudo que tiver la e cole isso :
(COLE APENAS AS LETRAS E NUMEROS NAO COLE ESSES TRAÇOS AQUI EM BAIXO )
--------------------------------------------------------------------------------------------------------------------------------
Código:
var habboDefaultClientPopupUrl = "%www%/client";
FlashExternalInterface.loginLogEnabled = true;
FlashExternalInterface.logLoginStep("web.view.start");
if (top == self) {
FlashHabboClient.cacheCheck();
}
var flashvars = {
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "ID DO SEU HAMACHI",
"connection.info.port" : "25",
"site.url" : "%www%",
"url.prefix" : "%www%",
"client.reload.url" : "%www%/account/reauthenticate?page=/flash_client",
"client.fatal.error.url" : "%www%/flash_client_error",
"client.connection.failed.url" : "%www%/client_connection_failed",
"external.hash" : "",
"external.variables.txt" : "http://images.haddoz.net/gamedata/external_variables_nav.txt",
"external.texts.txt" : "http://images.haddoz.net/gamedata/external_flash_texts_es.txt",
"use.sso.ticket" : "1",
if ($forwardType > 0)
{
echo ' "forward.type" : "' . $forwardType . '",' . LB;
echo ' "forward.id" : "' . $forwardId . '",' . LB;
}
?>
"sso.ticket" : "%sso_ticket%",
"processlog.enabled" : "0",
"account_id" : "0",
"client.starting" : "Bem vindo %habboName% ao Habbirx Hotel esrá carregando ",
"flash.client.url" : "http://images.haddoz.net/dcr/r63_none_1dc60c6d6ea6e089c6893ab4e0541ee0/",
"user.hash" : "",
"facebook.user" : "0",
"has.identity" : "0",
"flash.client.origin" : "popup"
};
var params = {
"base" : "http://images.haddoz.net/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/",
"allowScriptAccess" : "always",
"menu" : "false"
};
if (!(HabbletLoader.needsFlashKbWorkaround())) {
params["wmode"] = "opaque";
}
var clientUrl = "http://images.haddoz.net/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/Habbo.swf";
try {
if (swfobject.getFlashPlayerVersion().major <= 9) {
clientUrl = "http://images.haddoz.net/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/Habbo10.swf";
}
} catch(e) {}
swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "9.0.115", "http://images.habbo.com/habboweb/%web_build%/web-gallery/flash/expressInstall.swf", flashvars, params);
RightClick.init("flash-wrapper", "flash-container");