28.02.2019, 14:33
Bom dia, quando eu tento criar uma tabela pela gm msm, ele cria de boa, porem quando eu coloco todos os elementos que serгo salvos do player, ele da erro.
to fazendo assim:
Porem, se eu reduzir o numero de campos da tabela q ta sendo criada, ele funciona. exemplo:
Como eu faзo para que ele tenha todos os elementos sem dar erros. Fora que ainda faltam 62 campos para serem criados, que sгo os itens dos jogadores. se com 10 ele n funciona, oq dirб com 70.
erro do compilador:
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(571) : warning 203: symbol is never used: "lasz"
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(2831 -- 2847) : error 075: input line too long (after substitutions)
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : warning 217: loose indentation
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : error 017: undefined symbol "CREATE"
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : error 017: undefined symbol "TABLE"
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : error 017: undefined symbol "IF"
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
5 Errors.
to fazendo assim:
PHP код:
public MySQL_Start(){
IDConexao = mysql_connect(HOST,USUARIO,DATABASE,SENHA);
if(!IDConexao)
return print("Nгo foi possivel conectar a database, verifique as definiзхes novamente.");
else {
mysql_query(IDConexao,
"CREATE TABLE IF NOT EXISTS `users` (\
`id` int(11) NOT NULL, AUTO_INCREMENT,\
`Senha` varchar(25) NOT NULL, \
`Skin` int(5) NOT NULL, \
`Admin` int(5) NOT NULL, \
`horav` int(10) NOT NULL, \
`mimv` int(10) NOT NULL, \
`segv` int(10) NOT NULL, \
`spawnx` int(10) NOT NULL, \
`spawny` int(10) NOT NULL, \
`spawnz` int(10) NOT NULL, \
`matout` int(10) NOT NULL, \
`morreut` int(10) NOT NULL, \
`matou` int(10) NOT NULL, \
`matoubandidos` int(10) NOT NULL, \
`matouz` int(10) NOT NULL, \
`vida` int(5) NOT NULL, \
`temperatura` double NOT NULL, \
`fome` int(5) NOT NULL, \
`sede` int(5) NOT NULL, \
PRIMARY KEY(`id`)\
)",false);
}
return 1;
}
PHP код:
public MySQL_Start(){
IDConexao = mysql_connect(HOST,USUARIO,DATABASE,SENHA);
if(!IDConexao)
return print("Nгo foi possivel conectar a database, verifique as definiзхes novamente.");
else {
mysql_query(IDConexao,
"CREATE TABLE IF NOT EXISTS `users` (\
`id` int(11) NOT NULL, AUTO_INCREMENT,\
`Senha` varchar(25) NOT NULL, \
`Skin` int(5) NOT NULL, \
`Admin` int(5) NOT NULL, \
`horav` int(10) NOT NULL, \
`mimv` int(10) NOT NULL, \
`segv` int(10) NOT NULL, \
`spawnx` int(10) NOT NULL, \
`spawny` int(10) NOT NULL, \
`spawnz` int(10) NOT NULL, \
`matout` int(10) NOT NULL, \
`morreut` int(10) NOT NULL, \
PRIMARY KEY(`id`)\
)",false);
}
return 1;
}
erro do compilador:
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(571) : warning 203: symbol is never used: "lasz"
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(2831 -- 2847) : error 075: input line too long (after substitutions)
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : warning 217: loose indentation
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : error 017: undefined symbol "CREATE"
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : error 017: undefined symbol "TABLE"
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : error 017: undefined symbol "IF"
C:\Users\Wellington\Documents\Arquivos Importantes\Servidor Dayz Samp\gamemodes\GM_KillerZ.pwn(284 : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
5 Errors.