Logo de GM en MP.

Topic created · 27 Mensajes · 9958 Visitas
  • Anghios tengo un problema esque en mi game .py no sale nada parecido a esas lineas u.u y donde se ponen esos archivos?

  • ya lo pillé sorry x)

  • "Un saludo" Oye puedo usar este logo en el cliente desgarre v.3 porque ya lo trate de instalar y no funciono....??????

  • anglios hay clientes con este tipo de codigo

    ## Chat
    def OnRecvWhisper(self, mode, name, line):
    if mode == chat.WHISPER_TYPE_GM:
    self.interface.RegisterGameMasterName(name)
    chat.AppendWhisper(mode, name, line)
    self.interface.RecvWhisper(name)

    def OnRecvWhisperSystemMessage(self, mode, name, line):
    chat.AppendWhisper(chat.WHISPER_TYPE_SYSTEM, name, line)
    self.interface.RecvWhisper(name)

    def OnRecvWhisperError(self, mode, name, line):
    if locale.WHISPER_ERROR.has_key(mode):
    chat.AppendWhisper(chat.WHISPER_TYPE_SYSTEM, name, locale.WHISPER_ERROR[mode](name))
    else:
    chat.AppendWhisper(chat.WHISPER_TYPE_SYSTEM, name, "Whisper Unknown Error(mode=%d, name=%s)" % (mode, name))
    self.interface.RecvWhisper(name)

    def RecvWhisper(self, name):
    self.interface.RecvWhisper(name)

    def OnPickMoney(self, money):
    chat.AppendChat(chat.CHAT_TYPE_INFO, locale.GAME_PICK_MONEY % (money))

    def OnShopError(self, type):
    try:
    self.PopupMessage(locale.SHOP_ERROR_DICT[type])
    except KeyError:
    self.PopupMessage(locale.SHOP_ERROR_UNKNOWN % (type))

    def OnSafeBoxError(self):
    self.PopupMessage(locale.SAFEBOX_ERROR)

    def OnFishingSuccess(self, isFish, fishName):
    chat.AppendChatWithDelay(chat.CHAT_TYPE_INFO, locale.FISHING_SUCCESS(isFish, fishName), 2000)

    # ADD_FISHING_MESSAGE
    def OnFishingNotifyUnknown(self):
    chat.AppendChat(chat.CHAT_TYPE_INFO, locale.FISHING_UNKNOWN)

    def OnFishingWrongPlace(self):
    chat.AppendChat(chat.CHAT_TYPE_INFO, locale.FISHING_WRONG_PLACE)
    # END_OF_ADD_FISHING_MESSAGE

    def OnFishingNotify(self, isFish, fishName):
    chat.AppendChat(chat.CHAT_TYPE_INFO, locale.FISHING_NOTIFY(isFish, fishName))

    def OnFishingFailure(self):
    chat.AppendChatWithDelay(chat.CHAT_TYPE_INFO, locale.FISHING_FAILURE, 2000)

    def OnCannotPickItem(self):
    chat.AppendChat(chat.CHAT_TYPE_INFO, locale.GAME_CANNOT_PICK_ITEM)

    # MINING
    def OnCannotMining(self):
    chat.AppendChat(chat.CHAT_TYPE_INFO, locale.GAME_CANNOT_MINING)
    # END_OF_MINING

    def OnCannotUseSkill(self, vid, type):
    if locale.USE_SKILL_ERROR_TAIL_DICT.has_key(type):
    textTail.RegisterInfoTail(vid, locale.USE_SKILL_ERROR_TAIL_DICT[type])

    if locale.USE_SKILL_ERROR_CHAT_DICT.has_key(type):
    chat.AppendChat(chat.CHAT_TYPE_INFO, locale.USE_SKILL_ERROR_CHAT_DICT[type])

    def OnCannotShotError(self, vid, type):
    textTail.RegisterInfoTail(vid, locale.SHOT_ERROR_TAIL_DICT.get(type, locale.SHOT_ERROR_UNKNOWN % (type)))

    como se debe modificar?

  • No recibo mensajes de los jugadores y los jugadores no reciben mis mensajes: x
    Puede alguien ayudarme?

  • hey amigo no se que hacer con lo que descargue 😕

  • Aportazo.