xLordneji Posted August 7, 2019 Report Share Posted August 7, 2019 Hola buenas tardes, acá les dejo un tutorial de como cambiar el texto para los items en tienda que valgan "0 Yang" y diga "Precio : Gratis", a mi parecer es mas cómodo ver la segunda opción pero ahí los dejo a sus gustos , comenzamos! 1. Abrimos uitooltip y buscamos: def AppendPrice(self, price): Y modificamos todo por: def AppendPrice(self, price): self.AppendSpace(5) if price == 0: self.AppendTextLine(localeInfo.TOOLTIP_BUYPRICE_FREE, self.GetPriceColorFree(price)) else: self.AppendTextLine(localeInfo.TOOLTIP_BUYPRICE % (localeInfo.NumberToMoneyString(price)), self.GetPriceColor(price)) encima del def AppendPrice ponemos lo siguiente: def GetPriceColorFree(self, price): if price == 0: return self.GREEN_COLOR_PRICE_FREE Una vez hecho esto, buscamos en el mismo archivo: LOW_PRICE_COLOR = grp.GenerateColor(0.7, 0.7, 0.7, 1.0) Y abajo agregamos: GREEN_COLOR_PRICE_FREE = 0xff8EC292 Por último vamos a : locale/es/locale_game.txt y ponemos hasta el final: TOOLTIP_BUYPRICE_FREE Precio : Gratis Como resultado nos quedará así un ítem que valga 0 yang : No es nada del otro mundo pero para el que le sea útil ahí lo tiene Saludos! Debes iniciar sesión para ver el contenido del archivo adjunto en esta publicación. [Dev]MeTo, Magueta and yassine asaidi 2 1 Quote Link to comment Share on other sites More sharing options...
Break Posted August 8, 2019 Report Share Posted August 8, 2019 Dejo la fuente de ponerlo gratis: Debes iniciar sesión para ver el contenido del enlace en esta publicación. Funky-emu.net Alveiro Mantilla Moreno, veterano1998, María monica Guzmán franco and 9 others 10 2 Quote Link to comment Share on other sites More sharing options...
TTV_RANDARON Posted August 8, 2019 Report Share Posted August 8, 2019 Excelente Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.