botshara Posted November 18, 2013 Share Posted November 18, 2013 [20:15:13] Starting items [ [20:15:13] SCRIPT ERROR: items/items_functions.lua:6: ')' expected (to close '(' [20;2Hat line 1) near '}' [ [20:15:13] ERROR: Loading script failed: items/items_functions.lua:6: ')' expect [ Hed (to close '(' at line 1) near '}' addEventHandler("onPlayerLogin", root, function() local getfightstyle = exports.sql:query_fetch_assoc("SELECT characterID, fightstyle FROM characters WHERE characterID = " .. exports.players:getCharacterID( source )) setPedFightingStyle(source, tonumber(getfightstyle["fightstyle"])) end } Link to comment
Tete omar Posted November 18, 2013 Share Posted November 18, 2013 addEventHandler("onPlayerLogin", root, function() local getfightstyle = exports.sql:query_fetch_assoc("SELECT characterID, fightstyle FROM characters WHERE characterID = '" .. exports.players:getCharacterID( source )) .. "'") setPedFightingStyle(source, tonumber(getfightstyle["fightstyle"])) end ) Link to comment
botshara Posted November 18, 2013 Author Share Posted November 18, 2013 No errors but doesnt get fightstyle from database or event doesnt start ? addEventHandler("onPlayerLogin", root, function() if exports.players:isLoggedIn( source ) then local characterID = exports.players:getCharacterID( source ) local getfightstyle = exports.sql:query_fetch_assoc("SELECT fightstyle FROM characters WHERE characterID = " .. characterID ) setPedFightingStyle(source, tonumber(getfightstyle["fightstyle"])) end end ) Link to comment
Spajk Posted November 20, 2013 Share Posted November 20, 2013 Add outputChatBox(characterID) Then tell me what it writes in the chat. Link to comment
Renkon Posted November 20, 2013 Share Posted November 20, 2013 setPedFightingStyle(source, tonumber(getfightstyle["fightstyle"])) should eb setPedFightingStyle(source, tonumber(getfightstyle[1]["fightstyle"])) Link to comment
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