Jump to content

iBeast

Banned
  • Posts

    83
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    0%

iBeast last won the day on November 23 2018

iBeast had the most liked content!

About iBeast

Core X

  • BAN_NOTICE
    Yes

Informations

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

iBeast's Achievements

Enthusiast

Enthusiast (6/16)

  • Very Popular Rare
  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done

Recent Badges

99

Reputation

  1. NPC names are (usually) being taken from MySQL mob_proto. Are you sure you have translated all? iBeast
  2. Hello! I am writing and asking for help on this forum after some weeks. I am creating ranking system and everything works fine, but I need to know how to read from metin2 client binary .mse file. I have this line in C++ binary function: sprintf(c_pszRank, "d:/ymir work/ui/ranking/ranker_%d.mse", iTOPPlayersRank); and I return 1, so it is ranker_1.mse. But when I try it, nothing happens (so it can not read .mse) and when I change path to .tga file, it will load but picture is static. Could you help me how to solve this problem? Thanks.
  3. Why 34083 files? Why not (for example) Fliege (40k)?
  4. Create new command in cmd.cpp and insert into cmd_general.cpp that command with ChatPacket: ch->ChatPacket(CHAT_TYPE_COMMAND, "TestCommand"); And then move into game.py: Find: serverCommandList={ And insert into list: "TestCommand" : self.__TestCommandFunction, And insert function at the end of game.py: def __TestCommandFunction(self): import dbg dbg.LogBox("Command received!") Hope I helped. iBeast
  5. M2 Download Center Download Here ( Internal ) Information  This function shows player's title after name. Simple to enable/disable (via locale_inc.h definition).  Enjoy!
  6. If you use /reload q It can generate an error. It depends on SF. iBeast
  7. Then apply it for offline shops too... I do not have offline shops so I can not check which things you should modify, but it should be similar.
  8. I was right. There is solution (probably): 1. Find: def SetShopItem(self, slotIndex): 2. Add on the end of function this: self.AppendPrice(price) So it should be like that: def SetShopItem(self, slotIndex): itemVnum = shop.GetItemID(slotIndex) if 0 == itemVnum: return price = shop.GetItemPrice(slotIndex) self.ClearToolTip() self.isShopItem = TRUE metinSlot = [] for i in xrange(player.METIN_SOCKET_MAX_NUM): metinSlot.append(shop.GetItemMetinSocket(slotIndex, i)) attrSlot = [] for i in xrange(player.ATTRIBUTE_SLOT_MAX_NUM): attrSlot.append(shop.GetItemAttribute(slotIndex, i)) self.AddItemData(itemVnum, metinSlot, attrSlot) self.AppendPrice(price) iBeast
  9. Hi. Maybe you are missing function "AppendPrice" in uiToolTip.py. Upload your uiToolTip.py. iBeast
  10. Hello there. Check my website (click on signature). I have this function for that on my website. Enjoy.
  11. I cant use it only inside of server_timer I think. "Timer" is player related... But I am not sure... It was only sample. iBeast
  12. Add me on Skype (contact on my website). I will look at it.
×
×
  • 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.