Jump to content

Blend

Member
  • Posts

    8
  • Joined

  • Last visited

  • Feedback

    0%

About Blend

Informations

  • Gender
    Male

Recent Profile Visitors

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

Blend's Achievements

Contributor

Contributor (5/16)

  • Dedicated
  • Reacting Well
  • First Post
  • Conversation Starter
  • Week One Done

Recent Badges

5

Reputation

  1. I had this problem this week too. I installed mysql 5.7. After this you need to go /usr/local/etc/mysql/my.cnf and change bind-adress to 0.0.0.0 Now you can run on mysql 5.7
  2. Try this: open uiinventory.py and find function RefreshEquipSlotWindow(self): and at the end of funcion (last line) paste this: setItemVNum(item.COSTUME_SLOT_START+2, getItemVNum(item.COSTUME_SLOT_START+2), 0)
  3. Yes i know use re library, but my client get error if i use re, so i try to find fix without re library. Just with str.find() and str.split(). I think its good example for begginers to learn str. functions.
  4. Hello devs. Here is my fix of lua color string. Look at screens. Here is the problem: And here is fixed screen: How to fix? Open uitip.py and find self.__AppendText(curTime, text) (must by Class TipBoard, not BigBoard) Repleace to: After go to last line of Class TipBoard and paste: Its all. Nothing hard. Fix by Blend.
  5. Hello guys, first sorry for my bad english. Thank you for share, i have just one reservation. Its a centering of string. Your centering is not good because if i have lenght > 1, i have the result more left. Here is my proposal to improvement startNumber = 0 for slot in self.quickslot: for i in xrange(4): slotNumber = i+startNumber (Type, Position) = player.GetLocalQuickSlot(slotNumber) if player.IsSkillCoolTime(Position): (coolTime, elapsedTime) = player.GetSkillCoolTime(Position) slot.SetSlotCoolTime(slotNumber, coolTime, elapsedTime) cooldownDelay = 0 cooldown = int(coolTime-elapsedTime+cooldownDelay) self.cooldownText[slotNumber].SetOutline() self.cooldownText[slotNumber].SetText("%d" % cooldown) cooldown = str(cooldown) if len(cooldown) <= 1: self.cooldownText[slotNumber].SetPosition(8,0) else: self.cooldownText[slotNumber].SetPosition(8 - (len(cooldown) + 2), 0) self.cooldownText[slotNumber].Show() else: self.cooldownText[slotNumber].Hide() startNumber += 4 if len(cooldown) <= 1: self.cooldownText[slotNumber].SetPosition(8,0) else: self.cooldownText[slotNumber].SetPosition(8 - (len(cooldown) + 2),0) self.cooldownText[slotNumber].Show() EDIT: This is good if i have bold:16. If you use more bold, u must change SetPosition(8 - (len(cooldown) + 2), 0) to SetPosition(8 - (len(cooldown) + x), 0). If your bold is highest, x is highest too. How much? You must try.
×
×
  • 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.