f4ceb0ok Posted August 5, 2022 Share Posted August 5, 2022 (edited) Este es el código que he hecho hasta ahora... AreaGuerra = { 1, 1577.6806640625, 663.0947265625, 180, 120, , 0, 0, 0, 1698.1025390625, 679.1884765625, 14.822175979614 } function tables1 () executeSQLQuery("CREATE TABLE IF NOT EXISTS Gang_truf (ID INTEGER, X REAL, Y REAL, W REAL, H REAL, Gang STRING, R, G, B, sX REAL, sY REAL, sZ REAL)") for i, tables in ipairs(AreaGuerra) do local ID, X, Y, W, H, Gang, R, G, B, sX, sY, sZ = tables[1], tables[2], tables[3], tables[4], tables[5], tables[6], tables[7], tables[8], tables[9], tables[10], tables[11], tables[12] executeSQLQuery("insert into Gang_truf(ID, X, Y, W, H, Gang, R, G, B, sX, sY, sZ) values(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", ID, X, Y, W, H, Gang, R, G, B, sX, sY, sZ) end addEventHandler("onResourceStart", getResourceRootElement(getThisResource()), tables1) Edited August 5, 2022 by f4ceb0ok Esto es lo que he hecho hasta ahora, pero no me sale, en la terminal me dice: SCRIPT ERROR: [Nuevos]\Prueba_Database\g_Prueba_Database.lua:3: unexpected symbol near ',' Link to comment
Moderators Vinyard Posted August 5, 2022 Moderators Share Posted August 5, 2022 Hi, welcome to the forums! I've moved your thread to the Spanish scripting section so you can get better assistance in your native language. Make sure to always use English when posting outside this section! 1 Link to comment
AlvarO Posted September 28, 2022 Share Posted September 28, 2022 El for está mal, deberias hacer AreaAguerra no devolver el tables[1]... ya que esto ve si cada objeto de la tabla es otra tabla y accede al índice que le indiques, pero al no ser estos elementos una tabla es como si quieres entrar en un coche por la puerta del conductor, pero no tienes coche. El loop lo que hace es que vas iterando i de forma que por cada elemento de la tabla AreaGuerra, vas aumentando i en 1. Yo simplemente, no haría el loop, y asignaria a cada variable el valor que le corresponde al solo tener un elemento en la tabla. También no has cerrado el loop, te falta un end. Espero haberte ayudado. 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