X-SHADOW Posted March 29, 2013 Posted March 29, 2013 Hello i have A GameMode but it's on SQL who do i set SQL so the gamemod works ? and the SQL on the hosted server or the gameMode files ? If there is an Example or video for SQL Setup show me please Thank's
X-SHADOW Posted March 29, 2013 Author Posted March 29, 2013 it's GangWars By Jayz the Group system it's on SQL and also the functions how to Work on SQL ?
X-SHADOW Posted March 30, 2013 Author Posted March 30, 2013 is this SQL Or MySQL ? local connection = executeSQLQuery ( "CREATE TABLE IF NOT EXISTS gangs ( gangName TEXT, leader TEXT, color TEXT )" ) --[[ GANG SYSTEM ]] local cost = 20000 local maxStr = 20 function gangIsLeader ( uPlayer, uTeam ) local select = executeSQLQuery ( "SELECT leader FROM gangs WHERE gangName = '" .. uTeam .. "' " ); if ( select[1]["leader"] == uPlayer ) then return true; else return false; end end function gangSetLeader ( uTeam, uPlayer ) executeSQLQuery ( "UPDATE gangs SET leader = '" .. uPlayer .. "' WHERE gangName = '" .. uTeam .. "' ") return true end
iPrestege Posted March 30, 2013 Posted March 30, 2013 Hmm...Try to learn with this tut : https://forum.multitheftauto.com/viewtopic.php?f=148&t=38203
Castillo Posted March 30, 2013 Posted March 30, 2013 is this SQL Or MySQL ? local connection = executeSQLQuery ( "CREATE TABLE IF NOT EXISTS gangs ( gangName TEXT, leader TEXT, color TEXT )" ) --[[ GANG SYSTEM ]] local cost = 20000 local maxStr = 20 function gangIsLeader ( uPlayer, uTeam ) local select = executeSQLQuery ( "SELECT leader FROM gangs WHERE gangName = '" .. uTeam .. "' " ); if ( select[1]["leader"] == uPlayer ) then return true; else return false; end end function gangSetLeader ( uTeam, uPlayer ) executeSQLQuery ( "UPDATE gangs SET leader = '" .. uPlayer .. "' WHERE gangName = '" .. uTeam .. "' ") return true end That'S SQL.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now