Kilfwan Posted June 8, 2015 Share Posted June 8, 2015 No muestra ningun msj en el dx puse una tabla pero nada no funciona, Que esta mal? local mensajes = { {"Para Sacar Carros Gratis Usa F10 y Guardalos Con F2"}, {"Ten cuidado al Salir de la Zona Segura"}, {"Esto es un mensaje"}, } addEventHandler("onClientPreRender", getRootElement(), function() local mensaje = unpack(mensajes[math.random(#mensajes)]) dxDrawLine(203 - 1, 3 - 1, 203 - 1, 79, tocolor(0, 0, 0, 255), 1, false) dxDrawLine(571, 3 - 1, 203 - 1, 3 - 1, tocolor(0, 0, 0, 255), 1, false) dxDrawLine(203 - 1, 79, 571, 79, tocolor(0, 0, 0, 255), 1, false) dxDrawLine(571, 79, 571, 3 - 1, tocolor(0, 0, 0, 255), 1, false) dxDrawRectangle(203, 3, 368, 76, tocolor(0, 0, 0, 191), false) dxDrawText("Informacion:", 346, 10, 425, 30, tocolor(255, 255, 255, 255), 1.00, "sans", "left", "top", false, false, false, false, false) dxDrawText(mensaje[mesMio + 1], 207, 40, 571, 60, tocolor(255, 255, 255, 255), 1.00, "sans", "left", "top", false, false, false, false, false) end ) function actualizar() if (mesMio == 5) then mesMio = 0 else mesMio = mesMio + 1 end end setTimer(actualizar, 8000, 0) Link to comment
TheCrazy17 Posted June 8, 2015 Share Posted June 8, 2015 local mensajes = { "Para Sacar Carros Gratis Usa F10 y Guardalos Con F2", "Ten cuidado al Salir de la Zona Segura", "Esto es un mensaje" } Actual = 0 addEventHandler("onClientPreRender", getRootElement(), function() dxDrawLine(203 - 1, 3 - 1, 203 - 1, 79, tocolor(0, 0, 0, 255), 1, false) dxDrawLine(571, 3 - 1, 203 - 1, 3 - 1, tocolor(0, 0, 0, 255), 1, false) dxDrawLine(203 - 1, 79, 571, 79, tocolor(0, 0, 0, 255), 1, false) dxDrawLine(571, 79, 571, 3 - 1, tocolor(0, 0, 0, 255), 1, false) dxDrawRectangle(203, 3, 368, 76, tocolor(0, 0, 0, 191), false) dxDrawText("Informacion:", 346, 10, 425, 30, tocolor(255, 255, 255, 255), 1.00, "sans", "left", "top", false, false, false, false, false) dxDrawText(mensajes[Actual], 207, 40, 571, 60, tocolor(255, 255, 255, 255), 1.00, "sans", "left", "top", false, false, false, false, false) end ) function actualizar() if (Actual == #mensajes) then Actual = 0 else Actual = Actual + 1 end end setTimer(actualizar, 8000, 0) Intenta así, debería funcionar. (Nota: No lo probé) Link to comment
Kilfwan Posted June 8, 2015 Author Share Posted June 8, 2015 Gracias me sirvio de mucho Link to comment
Recommended Posts