Grovex Posted January 22, 2018 Share Posted January 22, 2018 Hola, he creado una gridlist de logros o algo por el estilo, la cosa es que hice que cada vez que alguien tenga su nombre ahi, le aparezca en verde.. y funciona.. La cosa es que cuando tiene un nombre con carácteres mágicos: ()%[] por ejemplo, [Clan]NombreDelJugador No encuentra el nombre, es decir, no se pone en verde. ¿Hay alguna forma de solucionarlo?, me leí toda la seccion de strings en lua.org y no encuentro nada, o no sé si no entiendo pero no se me ocurre nada para solucionarlo D: ayuda pls -------------------------------------------------------------------------------------- local rowtop = guiGridListAddRow(logrosgrid) guiGridListSetItemText(logrosgrid, rowtop, 1, "Jugadores Online con Logros", true, false) -- for i, v in ipairs(logrostab) do local row = guiGridListAddRow(logrosgrid) guiGridListSetItemText(logrosgrid, row, 1, v[1], false, false) guiGridListSetItemText(logrosgrid, row, 2, v[2], false, false) guiGridListSetItemText(logrosgrid, row, 3, tostring(convert(v[3])), false, true) -- Si te encuentras local tunombre = getPlayerName(localPlayer) if string.find (v[2], tunombre) then guiGridListSetItemColor ( logrosgrid, row, 1, 0, 255, 0 ) guiGridListSetItemColor ( logrosgrid, row, 2, 0, 255, 0 ) guiGridListSetItemColor ( logrosgrid, row, 3, 0, 255, 0 ) end end -- Link to comment
Grovex Posted January 23, 2018 Author Share Posted January 23, 2018 Ya encontré la solución, era más fácil de lo que creia .-. Link to comment
-Rex- Posted January 23, 2018 Share Posted January 23, 2018 20 hours ago, Grovex said: local tunombre = getPlayerName(localPlayer) if v[2] == tunombre then end Link to comment
Grovex Posted January 23, 2018 Author Share Posted January 23, 2018 Sí, eso mismo hice jaja gracias igual por responder. 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