03.01.2015, 11:24
Thanks, that removed the error, but left me off with 2 warnings.
EDIT: After compiling it the second time the warnings dissapeard, thanks again.
pawn Code:
strcat(qry1,"CREATE TABLE IF NOT EXISTS `users` ( \
`id` int(11) NOT NULL AUTO_INCREMENT, \
`name` varchar(24) NOT NULL, \
`pass` varchar(129) NOT NULL, \
`health` float NOT NULL, \
`X` float NOT NULL, \
`Y` float NOT NULL, \
`Z` float NOT NULL, \
`A` float NOT NULL, "); // warning 217: loose indentation
strcat(qry1,"`interior` int(2) NOT NULL, \
`vw` int(11) NOT NULL, \
`skin` int(3) NOT NULL, \
`banned` int(3) NOT NULL, \
`primary` int(3) NOT NULL, \
`primaryammo` int(5) NOT NULL, \
`secondary` int(3) NOT NULL, \
`secondaryammo` int(5) NOT NULL, PRIMARY KEY (`id`))");
mysql_function_query(g_Handle, qry1, false, "SendQuery", ""); // warning 217: loose indentation

