View Single Post
Gecko
SourceMod Donor
Join Date: Nov 2010
Location: Vancouver, Canada
Old 07-01-2013 , 19:18   Re: Gangs Mod - Jailbreak
Reply With Quote #2

You messed up your SQL syntax,
Code:
CREATE TABLE IF NOT EXISTS Gang.Gangs_Users
(
	SteamID varchar(255) NOT NULL,
	Name varchar(255) NOT NULL,
	Gang varchar(255) NOT NULL DEFAULT 'none',
	Rank varchar(255) NOT NULL DEFAULT 'none'
);
Should be

Code:
CREATE TABLE IF NOT EXISTS Gangs_Users
(
	SteamID varchar(255) NOT NULL,
	Name varchar(255) NOT NULL,
	Gang varchar(255) NOT NULL DEFAULT 'none',
	Rank varchar(255) NOT NULL DEFAULT 'none'
);
Without the "Gang.", otherwise it returns with denied permission.

As with the other CREATE statements.
__________________
"My brain is so left-sided, it isn't even funny... at all."
Gecko is offline