Jump to content

scarf looks bigger


Go to solution Solved by Metin2 Dev,

Recommended Posts

  • Bot

Yes is the scale in instancebase. Maybe you have pet system with scale. Check the conditional, only add the "SetScale" for newpets and if is not a newpet then "SetScaleNew" (I think you have SetScaleNew) I can't copy-paste now the code because I'm not in my desktop, but I hope you understand my explanation .

english_banner.gif

Link to comment
Share on other sites

7 hours ago, WLsj24 said:

Yes is the scale in instancebase. Maybe you have pet system with scale. Check the conditional, only add the "SetScale" for newpets and if is not a newpet then "SetScaleNew" (I think you have SetScaleNew) I can't copy-paste now the code because I'm not in my desktop, but I hope you understand my explanation .

i removed the SetScaleNew from InstanceBase and GrbObjectInstane and i rewrite SetScaleNew for newpet to "SetScale" but the problem with sash it's still there :-?

Link to comment
Share on other sites

26 minutes ago, WLsj24 said:

I mean you should try something like this:


	if (IsNewPet())
	{
		float scale = c_rkCreateData.m_dwLevel * 0.005f + 0.75f;
		m_GraphicThingInstance.SetScale(scale, scale, scale, true);
	}
	else
		m_GraphicThingInstance.SetScaleNew(1.0f,1.0f,1.0f);

 

You have right, i forgot to remove one of "true". cheers ?

  • Love 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • 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.