deyan4you

Untitled

Oct 27th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. //=============================================================================
  2. // File : offlineshop_config.h
  3. // Use : Use special offline-shop config commands for offline-shop.
  4. // Author : Ken Kaneki
  5. // Date : 9/28/2015 - 5:41 PM
  6. //=============================================================================
  7.  
  8. #ifndef __INC_METIN_II_GAME_OFFLINE_SHOP_CONFIG_H__
  9. #define __INC_METIN_II_GAME_OFFLINE_SHOP_CONFIG_H__
  10.  
  11.  
  12. void offlineshop_config_init();
  13.  
  14.  
  15. extern BYTE g_bOfflineShopSaveTime; // Offline-shop save time for MySQL
  16. extern bool g_bNeededMoney; // Enable required money for open offline-shop
  17. extern long long g_dwNeedMoney; // Required money for open offline-shop
  18.  
  19. extern int g_iTotalOfflineShopCount; // If total offline-shop equals to maximum, the system won't allow to open new offline-shop anymore.
  20.  
  21. extern bool g_bNeededItem; // Enable required item for open offline-shop
  22. extern int g_iItemVnum; // Required item vnum for open offline-shop
  23. extern BYTE g_bItemCount; // Required item count for open offline-shop
  24. extern bool g_bNeedMinLevel; // Enable requried min level for open an offline-shop
  25. extern BYTE g_bMinLevel; // Required min level for open an offline-shop
  26.  
  27. extern WORD g_wCoinsForUnlimited; // Required coins for open an offline shop.
  28.  
  29. extern bool g_bOfflineShopMapAllowLimit; // Enable map allow limit for offline-shop
  30.  
  31. extern BYTE g_bOfflineShopSocketMax; // This option would be helpful for who uses more sockets for weapons, armors and accessories
  32. extern bool g_bEnableEmpireLimit; // This option provides you the player can't build in shinsoo or chunjo if the player is coming from jinno.
  33. #endif
Add Comment
Please, Sign In to add comment