Jump to content

Meruem

Banned
  • Posts

    20
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Meruem

  1. that makes him think that this image is made in c + it's absurd to create something like that in c ++ if you're going to need to create code in python.
  2. Nice contribution although I did something different.
  3. if you use mounts by value it is better that way. elif itemType == item.ITEM_TYPE_COSTUME and itemSubType == item.COSTUME_TYPE_MOUNT: MountVnum = item.GetValue(3) if MountVnum != 0: self._ModelPreview(MountVnum ) if not, use the style of the code that showed if you want something better in tec post the complete code.
  4. I will install the code and do the test.
  5. DWORD vnum = pItem->GetIndex(); if (pItem->GetSubType() == CItemData::ARMOR_PENDANT) { if (vnum == ITEMVNUM) { m_armorRefineEffect = EFFECT_REFINED+EFFECTXD; break; } } maybe this way it can work but you must specify more details in the binary.
  6. good has worked for me, since I do not get This function v3Pos.z += float(m_GraphicThingInstance.GetHeight());
  7. You can find many guides in German, or Spanish forums
  8. If you are a programmer, I recommend reading some basic principles guides. The rest must realize how it works since it is not very different from the usual.
  9. that is not an error of the code of vegas but of your source code.
  10. make this improvement I hope it's useful if itemVnum >= 53001 and itemVnum <= 53026: self.AppendSpace(5) self.__AppendPetIcon(itemVnum) for g in xrange(item.ITEM_APPLY_MAX_NUM): (affectType, affectValue) = item.GetAffect(g) affectString = self.__GetAffectString(affectType, affectValue) if affectString: # affectColor = self.GetChangeTextLineColor(affectValue) affectColor = grp.GenerateColor(0.3824, 0.5804, 0.9824, 1.0) # You can play here for the text color. self.AppendTextLine(affectString, affectColor) self.__AppendAttributeInformation(attrSlot) bHasRealtimeFlag = 0 for i in xrange(item.LIMIT_MAX_NUM): (limitType, limitValue) = item.GetLimit(i) if item.LIMIT_REAL_TIME == limitType: bHasRealtimeFlag = 1 if bHasRealtimeFlag == 1: self.AppendMallItemLastTime(metinSlot[0]) search:def __AppendItemIcon(self, itemVnum):paste: def __AppendPetIcon(self, itemVnum): itemImage = ui.ImageBox() itemImage.SetParent(self) itemImage.Show() itemImage.LoadImage(item.GetIconImageFileName()) itemImage.SetPosition((self.toolTipWidth/2) - itemImage.GetWidth()/2, self.toolTipHeight) self.toolTipHeight += itemImage.GetHeight() self.childrenList.append(itemImage) self.ResizeToolTip()
×
×
  • 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.