Jump to content

joshi

Inactive Member
  • Posts

    125
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by joshi

  1. Yes i know My pet and sash system too was putting together individually. Look for the error backwards
  2. I rework your source today later or tomorrow
  3. This Graphics error.. did you add it well?
  4. Dear mates, I have an error with my new character. I don't know what is it. In Granny Viewer: In game view: Please help me someone. Thanks.
  5. Make a new incubator and not add level and see. Because haven't information of your pet. Ex.: Level, Duration etc.
  6. Mate try first this code: Replace: def RefreshChannel(self, channel): chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.MOVE_CHANNEL_NOTICE % (int(channel))) To: def RefreshChannel(self, channel): chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.MOVE_CHANNEL_NOTICE % (str(channel))) And locale_game.txt change in MOVE_CHANNEL_NOTICE text the %d to %s.
  7. send me server source game/char.cpp , char.h, cmd.cpp, cmd_general.cpp
  8. Check channel1 core (1,2,3,4 etc) CONFIG's and search 113 that exists? Maybe duplicate
  9. def RefreshChannel(self, channel): chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.MOVE_CHANNEL_NOTICE % (int(channel))) You have error with variables.
  10. def RefreshChannel(self, channel): chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.MOVE_CHANNEL_NOTICE % (channel)) Replace RefreshChannel funtion with this. And try it
  11. Try this: def RefreshChannel(self, channel): chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.MOVE_CHANNEL_NOTICE % (channel))
  12. Because INT and STR files %s or %d error I think your locale_game have %s and need %d
  13. yes i know But i need this text from locale_game.txt Cuz your error is this text
  14. I need this text localeInfo.MOVE_CHANNEL_NOTICE
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.