18.05.2015, 21:35
Nгo. a query nem serб executada pois mysql_format e format, sгo a mesma quase a mesma funзгo com diferenзa que no mysql tem a adiзгo do especificador %e.
No seu cуdigo so adicionar:
Como sua callback f@MySQL_Iniciar nгo tem parametros vocк deixa vazio o parametro dela na funзгo query..
No seu cуdigo so adicionar:
PHP Code:
CallBack::MySQL_Iniciar(){
MysqlC = mysql_connect(mysql_host,mysql_usuario,mysql_database,mysql_senha);
if(!MysqlC)
return print("Nгo foi possivel conectar a database, verifique as definiзхes novamente.");
else {
new query[400];
mysql_format(MysqlC, query, sizeof(query),
"CREATE TABLE IF NOT EXISTS `contas` (\
`id` int(11) NOT NULL AUTO_INCREMENT,\
`Nome` varchar(25) NOT NULL, \
`Senha` varchar(25) NOT NULL, \
`Nivel` int(11) NOT NULL, \
`Skin` int(11) NOT NULL, \
`Dinheiro` int(11) NOT NULL, \
`Admin` int(11) NOT NULL, \
`Matou` int(11) NOT NULL, \
`Morreu` int(11) NOT NULL, \
PRIMARY KEY(`id`)\
)");
mysql_tquery(MysqlC,query,"f@MySQL_Iniciar", "", "");
}
return true;
}