Jump to content

iFreakTime~.~

Member
  • Posts

    120
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by iFreakTime~.~

  1. Hi. How to modify item max stack from 200 to 255. I know this is byte and cannot be modified up to 255. I want to 255. Thanks a lot and sorry for my very bad English.
  2. Hi all. I want to add Marble/Add bonus rate to 100% , but I don't know in what file is that line . I search in char_item, but nothing. I think I don't search in right way.. Please help me.
  3. Hi all. I have a problem with Stones. I put three stones on a weapon, good, I equip weapon, good here. But, I use the removal stone scroll, stone disappear and bonus is still here. Now, I need a restriction to remove stones when armor/weapon is equipped.
  4. Why You don't use SQL? I have the Sql version.. but You need to convert
  5. Everywhere.. On chat, on global chat and PM. But I found this syserr code: 1220 18:06:06344 :: Traceback (most recent call last): 1220 18:06:06344 :: File "game.py", line 1366, in OnMouseLeftButtonUp 1220 18:06:06346 :: File "interfaceModule.py", line 375, in MakeHyperlinkTooltip 1220 18:06:06346 :: File "uiToolTip.py", line 2067, in SetHyperlinkItem 1220 18:06:06346 :: File "uiToolTip.py", line 1068, in AddItemData 1220 18:06:06347 :: File "uiToolTip.py", line 1863, in __AppendMetinSlotInfo 1220 18:06:06347 :: File "uiToolTip.py", line 1874, in __AppendMetinSlotInfo_IsEmptySlotList 1220 18:06:06347 :: IndexError 1220 18:06:06347 :: : 1220 18:06:06347 :: list index out of range 1220 18:06:06347 ::
  6. class HyperlinkItemToolTip(ItemToolTip): def __init__(self): ItemToolTip.__init__(self, isPickable=TRUE) def SetHyperlinkItem(self, tokens): minTokenCount = 3 + player.METIN_SOCKET_MAX_NUM maxTokenCount = minTokenCount + 2 * player.ATTRIBUTE_SLOT_MAX_NUM if tokens and len(tokens) >= minTokenCount and len(tokens) <= maxTokenCount: head, vnum, flag = tokens[:3] itemVnum = int(vnum, 16) metinSlot = [int(metin, 16) for metin in tokens[3:6]] rests = tokens[6:] if rests: attrSlot = [] rests.reverse() while rests: key = int(rests.pop(), 16) if rests: val = int(rests.pop()) attrSlot.append((key, val)) attrSlot += [(0, 0)] * (player.ATTRIBUTE_SLOT_MAX_NUM - len(attrSlot)) else: attrSlot = [(0, 0)] * player.ATTRIBUTE_SLOT_MAX_NUM self.ClearToolTip() self.AddItemData(itemVnum, metinSlot, attrSlot) ItemToolTip.OnUpdate(self) def OnUpdate(self): pass def OnMouseLeftButtonDown(self): self.Hide() I recently updated Python 2.2 to Python 2.7
  7. A player send me a item in PM, no problem here. When i click item, nothing. Don't show item bonus. Please help
  8. No no .. Yesterday mounts work perfectly.. but today bugs..
  9. Hi all. I have a mount problem in a map. It unsummon when I call the mount. Only in one map. I need to /reload q every 30 seconds to work, but only for 20-30 seconds.. Help me please.
  10. How to deactivate droping items on negative rank ? I don't find anywhere a resolve.
  11. How to make max players in a guild to 120 players, I think from here : return 32 + 2 * (m_data.level-1) + m_iMemberCountBonus; in Game SRC / guild.cpp , but how edit this line ?
  12. This is solution ? "player%s_deleted" to "player_deleted%s" ?
  13. I only need to delete the bar can shows the belt inventory.
  14. How to delete Belt inventory from client ? Only for Client.
  15. No working, for a VIP account , shows [Player] ..
×
×
  • 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.