Jump to content

AncientWorld

Inactive Member
  • Posts

    5
  • Joined

  • Last visited

  • Feedback

    0%

About AncientWorld

Informations

  • Gender
    Male

Recent Profile Visitors

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

AncientWorld's Achievements

Collaborator

Collaborator (7/16)

  • Very Important Person Rare
  • First Post
  • Dedicated
  • Reacting Well
  • Week One Done

Recent Badges

2

Reputation

  1. Good job for this but there are some problems, compiling on freebsd 14.0 x64 are some errors, your serverfiles doesnt start the channels, just auth and db, using another serverfiles (tmp4) and game/db compiled from your source doesn't let you enter, you can login, select char see the map for 2 second and client it crash, without any error or something like this. You also can't create new char. Thats its all i tested on freebsd, on windows it works fine (i didn't test the create char part)
  2. i solved in this way uitooltip.py def SetShopItem(self, slotIndex): itemVnum = shop.GetItemID(slotIndex) if 0 == itemVnum: return price = shop.GetItemPrice(slotIndex) if app.ENABLE_CHEQUE_SYSTEM: cheque = shop.GetItemCheque(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) if not app.ENABLE_RENEWAL_SHOPEX: if app.ENABLE_CHEQUE_SYSTEM: self.AppendSpace(5) self.AppendTextLine(localeInfo.CHEQUE_SYSTEM_SELL_PRICE, grp.GenerateColor(1.0, 0.9686, 0.3098, 1.0)) self.AppendCheque(cheque) self.AppendPrice(price) else: self.AppendPrice(price) else: self.AppendPrice(price)
  3. same problem as two other people, any ideea? xD [Hidden Content]
  4. On c++20 i receive this error If i change the compiler to c++17 or lower it works, is any solution to make it work on c++20 ?
  5. How can i solve this? I use a clean source
×
×
  • 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.