Guest User

Untitled

a guest
Dec 16th, 2016
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.04 KB | None | 0 0
  1.         maxPokemonLevel = 5
  2.         maxPlayerLevel = 120
  3.         version = 161
  4.  
  5.         allowTesters = false
  6.         players_czit = 1
  7. --[[
  8.         sqlType = "mysql"
  9.         sqlHost = "localhost"
  10.         sqlPort = 3306
  11.         sqlUser = "pokemon"
  12.         sqlPass = "rTw53vPLy65DBwY4"
  13.         sqlDatabase = "pokemon"
  14.         encryptionType = "sha1"
  15. ]]--
  16.         sqlType = "sqlite"
  17.         sqlHost = "localhost"
  18.         sqlPort = 3306
  19.         sqlUser = ""
  20.         sqlPass = ""
  21.         sqlDatabase = "pokemon"
  22.         encryptionType = "plain"
  23. ------------------------------------------------------------
  24.         mapName = "map/kanto.otbm"
  25.         mapName = "kanto.otbm"
  26.  
  27.         sqlFile = "data/pokemon.s3db"
  28.         sqlKeepAlive = 0
  29.         mysqlReadTimeout = 10
  30.         mysqlWriteTimeout = 10
  31.  
  32.         worldId = 0
  33.         loginMessage = "Welcome to the Pokemon-Online!"
  34.  
  35.         pzLocked = 3 * 1000
  36.         huntingDuration = 3 * 1000
  37.         pushCreatureDelay = 2 * 1000
  38.  
  39.         loginTries = 10
  40.         retryTimeout = 5 * 1000
  41.         loginTimeout = 5 * 1000
  42.         statusTimeout = 5 * 60 * 1000
  43.         maxPlayers = 300
  44.         replaceKickOnLogin = true
  45.         premiumPlayerSkipWaitList = true
  46.  
  47.         houseNeedPremium = true
  48.         bedsRequirePremium = false
  49.         levelToBuyHouse = 30
  50.         housesPerAccount = 1
  51.         housePrice = 7000
  52.  
  53.         mapAuthor = "Notjet"
  54.         cleanProtectedZones = true
  55.  
  56.         defaultPriority = "high"
  57.         coresUsed = "-1"
  58.  
  59.         allowChangeOutfit = true
  60.         allowChangeColors = true
  61.         allowChangeAddons = true
  62.         addonsOnlyPremium = true
  63.  
  64.         idleWarningTime = 14 * 60 * 1000
  65.         idleKickTime = 15 * 60 * 1000
  66.         maxItemsPerPZTile = 10
  67.         maxItemsPerHouseTile = 10
  68.  
  69.         freePremium = false
  70.  
  71.         rateSpawn = 1
  72.         lootChance = 1.0
  73.  
  74.         rateStaminaLoss = 1
  75.         rateStaminaGain = 3
  76.         rateStaminaThresholdGain = 12
  77.  
  78.         staminaRatingLimitTop = (5 * 60) + 30
  79.         rateStaminaAboveNormal = 1.2
  80.  
  81.         staminaRatingLimitBottom = 30
  82.         rateStaminaUnderNormal = 0.20
  83.         staminaThresholdOnlyPremium = false
  84.  
  85.         ownerName = "Gabrieltxu"
  86.         ownerEmail = "support@pokemon-skyfal.com"
  87.         url = "www.pokemon-skyfall.com"
  88.         location = "Brazil"
  89.  
  90.         displayPlayersLogging = false
  91.         prefixChannelLogs = ""
  92.         outLogName = ""
  93.         errorLogName = ""
  94.         truncateLogsOnStartup = false
Add Comment
Please, Sign In to add comment