Jump to content

Horse and Pet right click bug


Go to solution Solved by forum80,

Recommended Posts

  • Solution
12 minutes ago, ASIKOO said:

How?

bool CInstanceBase::CanPickInstance() 
 { 
         if (!__IsInViewFrustum()) 
                 return false; 
  
         if (IsDoor()) 
         { 
                 if (IsDead()) 
                         return false; 
         } 
  
         if (IsPC()) 
         { 
                 if (IsAffect(AFFECT_EUNHYEONG)) 
                 { 
                         if (!__MainCanSeeHiddenThing()) 
                                 return false; 
                 } 
                 if (IsAffect(AFFECT_REVIVE_INVISIBILITY)) 
                         return false; 
                 if (IsAffect(AFFECT_INVISIBILITY)) 
                         return false; 
         } 
  /* i was add if (IsPet() || IsMount())
                   return false;
and i removed this code is working */
         if (IsDead()) 
                 return false; 
  
         return true; 
 }

 

Edited by forum80
  • 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


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