Advertisement
ThomasShelby

Untitled

Jul 4th, 2018
3,312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. /////////// INPUT_LOGIN.CPP ///////////
  2.  
  3.  
  4. 01. Search :
  5. #include "priv_manager.h"
  6.  
  7. 01. Add after :
  8.  
  9. #ifdef ENABLE_MOUNT_COSTUME_SYSTEM
  10. #include "MountSystem.h"
  11. #endif
  12.  
  13.  
  14. 02. Search :
  15.  
  16.     if (g_noticeBattleZone)
  17.     {
  18.                 ...
  19.     }
  20.    
  21. 02. Add after :
  22.  
  23. #ifdef ENABLE_MOUNT_COSTUME_SYSTEM
  24.     if (ch->GetMapIndex() != 113 && CArenaManager::instance().IsArenaMap(ch->GetMapIndex()) == false)
  25.     {
  26.         ch->CheckMount();
  27.     }
  28. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement