Advertisement
Guest User

Untitled

a guest
Jan 8th, 2023
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. /*=============================================================================================================
  2. == Server
  3. =============================================================================================================*/
  4. //#define __GUILD_WAR_SERVER
  5.  
  6. #define __DEVELOPER_MODE
  7. #ifdef __DEVELOPER_MODE
  8. #define __NEUZ_IPSET "127.0.0.1"
  9. #define __NEUZ_PHASH "HashItToTheLimit"
  10. #else
  11. #define __NEUZ_IPSET "188.165.236.147"
  12. #define __NEUZ_PHASH "kikugalanet"
  13. #endif
  14. /*=============================================================================================================
  15. == Configuration
  16.  
  17. =============================================================================================================*/
  18.  
  19. #define DK_PROJEKT_VERSION 1
  20.  
  21. #define SERVER_NAME "VIERA KINGDOM"
  22. #define SERVER_WELCOME "[AKUSA] Be welcome !"
  23. #define __NEUZ_MSGVR "12042022"
  24.  
  25. #define __MAX_COLLECT_BY_IP 3 //| Max collecting chars per IP
  26.  
  27.  
  28. #define PN_CACHESRVR 5400
  29. #define PN_CERTIFIER 23000
  30. #define PN_LOGINSRVR 28000
  31.  
  32. //============================================================================================================
  33. #define PET_SPEED_MULTIPLIER 2 // Pet Speed Faktor X
  34. #define MAX_SPEED 400 // Max Runspeed
  35.  
  36. #define ALL_CS_PRICE 4000000 // CS Price
  37. #define INCREASED_SPAWN 1.0F // Spawn Rate from all Monster
  38. #define MAX_DCT 80 // Max Casttime
  39. #define COUPLE_RATE 5 // Couple Level Up
  40. #define PETS_RATE 5 // Pet Rate
  41. #define PET_BASE_EXP 5.0f // Pet Exp Rate
  42.  
  43. #define GS_MAX_SPEED 150 // Max Guildwarspeed
  44. #define GUILD_RATE 1 // Guild Exp Rate
  45. #define GW_COIN 10 // Amount of Red Chips for each kill
  46.  
  47. #define __WEAPONLEVEL_EXP_FACTOR 5.0f
  48.  
  49. #define SHOUT_LEVEL 15 //| SHOUT LEVEL
  50. #define MAX_PACK_ITEM 9999 //| MAX STACKABLE ITEM COUNT
  51.  
  52. /*=============================================================================================================
  53. == Configuration End
  54.  
  55. =============================================================================================================*/
  56. /*=============================================================================================================
  57. == Patcher Configuration
  58.  
  59. =============================================================================================================*/
  60. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////|
  61.  
  62. #define WEB_FIRST_PAGE "http://orpoli.ga/" // Website that shows inside the box
  63. #define SERVER_ROOT "Patch" // Server root, where the Titanium patched list.txt is.
  64. #define PATCHSEVER_URL "orpoli.ga" // URL to your server root
  65. #define HOME_LINK "http://orpoli.ga/" // Your website url shown above the news box. // Your server's name shown on the bottom of the patcher.
  66. #define REGISTER_LINK "http://orpoli.ga/" // Your server's registration URL.
  67. const int PATCH_VERSION = 15; // Same with the version you put in Titanium -> Config.ini
  68. #define __CURRENT_LANG LANG_ENG // Do not change this unless you know what you do.
  69. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////|
  70. /*=============================================================================================================
  71. == Configuration End
  72.  
  73. =============================================================================================================*/
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement