Jump to content

ForgiveN

Member
  • Posts

    7
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by ForgiveN

  1. Char.h
    Search;
    
    	bool IsGoto() const noexcept { return m_bCharType == CHAR_TYPE_GOTO; }
    
    Add under;
    
    	bool IsHorse() const noexcept { return m_bCharType == CHAR_TYPE_HORSE; }
    
    Char_state.cpp
    Search;
      	else if (IsGuardNPC())
    
    Add above;
    
    	if (IsHorse())
    		return;
    
    
    This will come in handy. However, you need to make the necessary adaptations. To do this, search for the IsPet function and make the adaptations accordingly.
     

     

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