Como poner lvl al lado del nombre pero en el chat
-
Hola , alguien save como poner lvl al lado delnombre en el chat? es que lo tengo i quiero quitarlo...alguien me ayuda? grax.
-
Descompilas tu root, te dirijes a el archivo uiwhisper.py, entras dentro y buscas las siguientes líneas:
def SendWhisper(self): text = self.chatLine.GetText() textLength = len(text) if textLength > 0: if net.IsInsultIn(text): chat.AppendChat(chat.CHAT_TYPE_INFO, locale.CHAT_INSULT_STRING) return net.SendWhisperPacket(self.targetName, text) self.chatLine.SetText("") chat.AppendWhisper(chat.WHISPER_TYPE_CHAT, self.targetName, player.GetName() + " : " + text)
Más o menos en la línea 245 empieza.
Luego las reemplazas por estas:if textLength > 0: if net.IsInsultIn(text): chat.AppendChat(chat.CHAT_TYPE_INFO, locale.CHAT_INSULT_STRING) return net.SendWhisperPacket(self.targetName, "(Lv. " + str(player.GetStatus(player.LEVEL) )+ "):" + text) self.chatLine.SetText("") chat.AppendWhisper(chat.WHISPER_TYPE_CHAT, self.targetName, player.GetName() + " (Lv. " + str(player.GetStatus(player.LEVEL)) + "): " + text)
Lo compilas y listo.
Un saludo Danibonilla1 -
exelente, yo buscava lo contrario de el xD sacar el lvl del chat xD
-
Dioss esa pregunta esta rara xd bueno el titulo mas que nada confunde un poco pero bueno Excelente danibonilla16 :charm:
-
Yo tambien busco quitarlo ..xD intentare aver si me sale
-
Para quitarlo solo tienes que hacer lo contrario, buscar el texto de abajo y reemplazarlo por lo de arriba.
-
orale nunca me ainteresado pero esta bn :happy:
-
Yo lo que hice es modificar esto un poquito. No me parece logico VER MI MISMO LVL ya que me lo se.
El codigo esta bien, ahora depende de ustedes si lo quieren retocar un poquito