Jump to content

narsuyu

Member
  • Posts

    8
  • Joined

  • Last visited

  • Feedback

    0%

About narsuyu

Recent Profile Visitors

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

narsuyu's Achievements

Contributor

Contributor (5/16)

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

Recent Badges

0

Reputation

  1. Hello, I made a custom armor for the game, exporting it was successful, yet somehow animations are not correctly responding with my model. And the rig looks like this in Blender. (Bone names are one to one with the original rig btw) When I import the animation to the Blender and apply the animation to my model, it works. Also, these animations work on original models, so Granny Viewer is not the main issue here I think. What am I doing wrong this time? Please help!
  2. I've fixed the problem. The problem was at the exporting stage. I disabled some features in the armature and realized that this was the main reason why I could'nt see the models in the viewer. Now with the correct settings, I can see my models clearly well. Thanks for the reply anyway!
  3. Hello, I was trying to do the Import/Export thing via 3DSmax and Granny Viewer, but when I open an exported .gr2 file, I see nothing in the viewport. Meanwhile, there are datas in the lists. Also, when I try to open a model directly from the game, I can clearly see it. The unit settings in 3DSmax is also setted up for this particular import/export process. Am I doing something wrong or is there a thing I've missed? Any type of help is appreciated.
  4. I suggest you to download a older version of freebsd which already has gcc 49 in it. That way would be easier. You can download one from here [Hidden Content] or [Hidden Content]
  5. Hi, I am trying to improve my self by doing things on my test server. I couldn't manage to send packet of a specific effect is active or not ( for example a skill or potion ). I'm trying to send from client to server.
  6. How can i make Dragon Soul Set Bonus just like in main server? I need help in this code: if app.ENABLE_DS_SET: def __AppendDragonSoulAttributeInformation(self, attrSlot, dsType = 0, grade = 0): if 0 != attrSlot: if grade != 0: setWeightValue = item.GetDSSetWeight(dsType, grade) basicApplyCount = item.GetDSBasicApplyCount(dsType, grade) for i in xrange(player.ATTRIBUTE_SLOT_MAX_NUM): type = attrSlot[i][0] value = attrSlot[i][1] if 0 == value: continue affectString = self.__GetAffectString(type, value) if affectString: affectColor = self.__GetAttributeColor(i, value) setValue = 0 if i < basicApplyCount: setValue = item.GetDSBasicApplyValue(dsType, type) else: setValue = item.GetDSAdditionalApplyValue(dsType, type) if setValue != 0: setValue = (setValue * setWeightValue - 1)/100 + 1 if affectString.find('%') == -1: self.AppendTwoColorTextLine(affectString, affectColor, " (+%d)" % (setValue)) else: self.AppendTwoColorTextLine(affectString, affectColor, " (+%d%%)" % (setValue)) else: self.AppendTextLine(affectString, affectColor) else: for i in xrange(player.ATTRIBUTE_SLOT_MAX_NUM): type = attrSlot[i][0] value = attrSlot[i][1] if 0 == value: continue affectString = self.__GetAffectString(type, value) if affectString: affectColor = self.__GetAttributeColor(i, value) self.AppendTextLine(affectString, affectColor) How can i apply this into my file?
×
×
  • 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.