Ir para conteúdo

LeoTK

Marquês
  • Total de itens

    1249
  • Registro em

  • Última visita

  • Dias Ganhos

    22

Tudo que LeoTK postou

  1. vei nao to achando nao tem varios lugar com codigo aki tem esse
  2. man mais eu ja comsegui fazer um site com o xampp 8090 e consegui bota on que as outras pessoas entravam
  3. OLA GALERA BOM E O SEGUINTE MINHA INTERNET E COMPARTILHADA E A ALGUNS MESES ATRAZ CONSEGUI FAZER UM SITE VIA XAMPP 8090 TUDO BONITINHO MAIS AI AGORA TO USANDO O WAMPP MELHOR CLARO E TO COM PROBLEMAS EU LIBEREI AS PORTAS 8090,8080,80 NO ROTEADOR E NO FIREWALL BOM EU PONHO A POTRA 8090,8080 NAO VAI A PORTA 80 VAI MAIS AS PESSOAS NAO CONSEGUEM ENTRAR NO SITE ALGUEM POR FAVOR PODE ME AJUDAR??
  4. LeoTK

    Ajuda Urgente!

    resolvido fecha ae porfavor
  5. LeoTK

    Ajuda Urgente!

    bom gente baixei o site web poketibia v1 tals fiz tudo certin instalei ele tudo bonitin mais na hora de entra no localhost pra ver o site aparece esse erro no index se alguem ou o criador do site NIBELINS poder ajudar +rep bom porfavor ajudem
  6. valeu vo tenta obrigado +rep pra tu ahhhh nao deu certo aparece "you canoot use this object" TA DO JEITO QUE TU MANDO
  7. local hitmonchans = { ["Hitmonchan"] = { [0] = {out = 559, eff = 112, type = FIGHTINGDAMAGE}, --outfit normal [1] = {out = 1075, eff = 35, type = FIREDAMAGE}, --outfit fogo [2] = {out = 1077, eff = 48, type = ELECTRICDAMAGE}, --outfit raio [3] = {out = 1078, eff = 43, type = ICEDAMAGE}, --outfit gelo [4] = {out = 1076, eff = 140, type = GHOSTDAMAGE} --outfit ghost }, ["Shiny Hitmonchan"] = { --aconcelho trocar a outfit do shiny hitmonchan pela do elite hitmonchan do PO... [0] = {out = 837, eff = 112, type = FIGHTINGDAMAGE}, --outfit normal [1] = {out = 1080, eff = 35, type = FIREDAMAGE}, --outfit fogo [2] = {out = 1081, eff = 48, type = ELECTRICDAMAGE}, --outfit raio [3] = {out = 1082, eff = 43, type = ICEDAMAGE}, --outfit gelo [4] = {out = 1079, eff = 140, type = GHOSTDAMAGE} --outfit ghost } } function onUse(cid, item, frompos, item2, topos) if exhaustion.get(cid, 6666) and exhaustion.get(cid, 6666) > 0 then return true end local owner = getItemAttribute(item.uid, "firstpoke") if owner and owner ~= getCreatureName(cid) then doPlayerSendCancel(cid, "This pokemon belongs to "..owner..", it is his first pokemon. Please, give it back to him.") return true end if getPlayerStorageValue(cid, 17000) >= 1 or getPlayerStorageValue(cid, 17001) >= 1 or getPlayerStorageValue(cid, 63215) >= 1 then return true end local btype = getPokeballType(item.itemid) local effect = pokeballs[btype].effect if not effect then effect = 21 end if item.itemid == pokeballs[btype].use then if getPlayerStorageValue(cid, 990) == 1 then -- GYM doPlayerSendCancel(cid, "You can't return your pokemon during gym battles.") return true end if #getCreatureSummons(cid) <= 0 then if isInArray(pokeballs[btype].all, item.itemid) then doTransformItem(item.uid, pokeballs[btype].off) doItemSetAttribute(item.uid, "hp", 0) doPlayerSendCancel(cid, "This pokemon is fainted.") return true end end local z = getCreatureSummons(cid)[1] if getCreatureCondition(z, CONDITION_INVISIBLE) and not isGhostPokemon(z) then return true end doReturnPokemon(cid, z, item, effect) elseif item.itemid == pokeballs[btype].on then if item.uid ~= getPlayerSlotItem(cid, CONST_SLOT_FEET).uid then doPlayerSendCancel(cid, "You must put your pokeball in the correct place!") return TRUE end local thishp = getItemAttribute(item.uid, "hp") if thishp <= 0 then if isInArray(pokeballs[btype].all, item.itemid) then doTransformItem(item.uid, pokeballs[btype].off) doItemSetAttribute(item.uid, "hp", 0) doPlayerSendCancel(cid, "This pokemon is fainted.") return true end end local pokemon = getItemAttribute(item.uid, "poke") if not pokes[pokemon] then return true end local x = pokes[pokemon] local boosts = getItemAttribute(item.uid, "boost") or 0 if getPlayerLevel(cid) + pokemonMaxLevelAbovePlayer < getItemAttribute(item.uid, "level") + boosts then doPlayerSendCancel(cid, "Your pokemon's level is much higher than yours, you can't use him.") return true end doSummonMonster(cid, pokemon) local pk = getCreatureSummons(cid)[1] if not isCreature(pk) then return true end ------------------------passiva hitmonchan------------------------------ if isSummon(pk) then --local e = getCreatureMaster(cid) local nameHIT = getItemAttribute(getPlayerSlotItem(cid, 8).uid, "poke") local hands = getItemAttribute(getPlayerSlotItem(cid, 8).uid, "hands") if nameHIT == "Shiny Hitmonchan" or nameHIT == "Hitmonchan" then if getItemAttribute(getPlayerSlotItem(cid, 8).uid, "hands") then doSetCreatureOutfit(pk, {lookType = hitmonchans[nameHIT][hands].out}, -1) else doPlayerSendTextMessage(cid, 27, "Contact a GameMaster! Error in passive system! Attribute \"hands\" missing") end end end ------------------------------------------------------------------------- if getCreatureName(pk) == "Ditto" then local left = getItemAttribute(item.uid, "transLeft") local name = getItemAttribute(item.uid, "transName") if left and left > 0 then setPlayerStorageValue(pk, 1010, name) doSetCreatureOutfit(pk, {lookType = getItemAttribute(item.uid, "transOutfit")}, -1) addEvent(deTransform, left * 1000, pk, getItemAttribute(item.uid, "transTurn")) doItemSetAttribute(item.uid, "transBegin", os.clock()) else setPlayerStorageValue(pk, 1010, "Ditto") end end if isGhostPokemon(pk) then doTeleportThing(pk, getPosByDir(getThingPos(cid), math.random(0, 7)), false) end doCreatureSetLookDir(pk, 2) adjustStatus(pk, item.uid, true, false, true) doAddPokemonInOwnList(cid, pokemon) doTransformItem(item.uid, item.itemid+1) local pokename = getItemAttribute(item.uid, "nick") or getCreatureName(pk) local mgo = gobackmsgs[math.random(1, #gobackmsgs)].go:gsub("doka", pokename) doCreatureSay(cid, mgo, TALKTYPE_SAY) doSendMagicEffect(getCreaturePosition(pk), effect) else doPlayerSendCancel(cid, "This pokemon is fainted.") end if useKpdoDlls then doUpdateMoves(cid) end return true end <p>a otra</p> <p> </p> <p> </p> <div>function onLogout(cid)</div> <div> </div> <div>if getPlayerStorageValue(cid, 888) >= 1 then</div> <div>doPlayerSendCancel(cid, "You cant logout during control mind.")</div> <div>return false</div> <div>end</div> <div> </div> <div>local summon = getCreatureSummons(cid)[1]</div> <div>local thisitem = getPlayerSlotItem(cid, 8)</div> <div>local btype = getPokeballType(thisitem.itemid)</div> <div> </div> <div>if #getCreatureSummons(cid) == 1 and thisitem.uid > 1 then</div> <div>doItemSetAttribute(thisitem.uid, "hp", getCreatureHealth(summon) / getCreatureMaxHealth(summon))</div> <div>doTransformItem(thisitem.uid, pokeballs[btype].on)</div> <div> </div> <div>doSendMagicEffect(getThingPos(summon), pokeballs[btype].effect)</div> <div>doRemoveCreature(summon)</div> <div>end</div> <div> </div> <div>if getCreatureOutfit(cid).lookType == 814 then</div> <div>doPlayerStopWatching(cid)</div> <div>end</div> <div> </div> <div>if getPlayerStorageValue(cid, 17000) >= 1 then</div> <div>markFlyingPos(cid, getThingPos(cid))</div> <div>end</div> <div> </div> <div>return TRUE</div> <div>end</div> <div> </div> <div>local deathtexts = {"Oh no! POKENAME, come back!", "Come back, POKENAME!", "That's enough, POKENAME!", "You did well, POKENAME!",</div> <div> "You need to rest, POKENAME!", "Nice job, POKENAME!", "POKENAME, you are too hurt!"}</div> <div> </div> <div>function onDeath(cid, deathList)</div> <div> </div> <div>local owner = getCreatureMaster(cid)</div> <div> </div> <div>local thisball = getPlayerSlotItem(owner, 8)</div> <div>local btype = getPokeballType(thisball.itemid)</div> <div> </div> <div>doSendMagicEffect(getThingPos(cid), pokeballs[btype].effect)</div> <div>doTransformItem(thisball.uid, pokeballs[btype].off)</div> <div> </div> <div>doPlayerSendTextMessage(owner, 22, "Your pokemon fainted.")</div> <div> </div> <div>local say = deathtexts[math.random(#deathtexts)]</div> <div>say = string.gsub(say, "POKENAME", getCreatureName(cid))</div> <div> </div> <div>if getPlayerStorageValue(cid, 33) <= 0 then</div> <div>doCreatureSay(owner, say, TALKTYPE_SAY)</div> <div>end</div> <div> </div> <div>doItemSetAttribute(thisball.uid, "hp", 0)</div> <div>doItemSetAttribute(thisball.uid, "happy", getPlayerStorageValue(cid, 1008) - happyLostOnDeath)</div> <div>doItemSetAttribute(thisball.uid, "hunger", getPlayerStorageValue(cid, 1009))</div> <div> </div> <div>doRemoveCreature(cid)</div> <div> </div> <div>return false</div> <div>end</div>
  8. BOM GALERA ESTOU COM UM PROBLEMA EU COLOQUEI SYSTEMA VIP NO MEU OT POR .!BUYVIP MAIS QUANDO A PESSOA COMPRA O VIP O NOME DELA FICA [Vip] NOME DA PESSOA AI QUE TA O PROBLEMA A PESSOA QUANDO COMPRA VIP NAO PODE USAR O POKEMON INICIAL QUE FALA QUE NAO PERTENCA A ELA COMO FASSO PRA ARRUMAR ISSO??? +rep "SE ESTIVER NA AREA ERRADO FAVOR DE MOVER OBRIGADO"
  9. bom cara emtaum eu procurei mais ainda ta dificil pois na hora de configurar os scripts da erro no ot pa tenho que fazer isso eu mesmo ¬¬ mais valeu assim msm
  10. bom estou precisando de barra coowndown pra por no meu ot se alguem souber algum tuto ou tiver porfavor poste ai que darei +rep bom a barra cowndown so precisa ser 100% e ter a outra tebela de pokes tambem ira ajudar muito bom ja agradeço dez de ja obrigado !!!! SE ESTIVER NA ARENA ERRADA PORFAVOR MOVA PRA MIN SOU NOVO EM POSTAR PEDIDOS !!!!!
  11. cara a senha do admin nao vai eu ponho 1 / ******* nao vai eu refiz o site umas 6 veses mais nao vai nao sei porq pode me ajudar porq sem a conta do admin nao da tipo a senha que coloco e so numeros mais ta foda me ajuda ai porfavor porq se eu fica sem o admin como vo por os itens no shop e tals?
  12. parece estar legal vou ver aki jaja comento se esta bom mais o +rep ja tem
  13. obrigado desculpem nao sou acostumado a postar coisas da proxima vez prestarei atençao
  14. tipo assim ja ta tudo bonitinho site on e tals mais na hora de abrir o ot aparece a mensangen e nao abre vo manda print http://imageshack.us/f/805/errordoot.png/ ta ae a foto do error accountManager = yes namelockManager = true newPlayerChooseVoc = true newPlayerSpawnPosX = 160 newPlayerSpawnPosY = 54 newPlayerSpawnPosZ = 7 newPlayerTownId = 1 newPlayerLevel = 20 newPlayerMagicLevel = 0 generateAccountNumber = false generateAccountSalt = false Paralyze Rune like Tibia.Com 100% paralyzeDelay = 1400 Report comand by Detect baiak reportExhausted = 30 * 60 Auto banishing works only if useBlackSkull set to negative. advancedFragList is not advised if you use huge frags requirements. useFragHandler = true redSkullLength = 1 * 24 * 60 * 60 blackSkullLength = 2 * 24 * 60 * 60 dailyFragsToRedSkull = 6 weeklyFragsToRedSkull = 36 monthlyFragsToRedSkull = 128 dailyFragsToBlackSkull = 8 weeklyFragsToBlackSkull = 48 monthlyFragsToBlackSkull = 192 dailyFragsToBanishment = dailyFragsToRedSkull weeklyFragsToBanishment = weeklyFragsToRedSkull monthlyFragsToBanishment = monthlyFragsToRedSkull blackSkulledDeathHealth = 40 blackSkulledDeathMana = 0 useBlackSkull = true advancedFragList = false killsBanLength works only if useBlackSkull option is disabled. notationsToBan = 3 warningsToFinalBan = 4 warningsToDeletion = 5 banLength = 7 * 24 * 60 * 60 killsBanLength = 7 * 24 * 60 * 60 finalBanLength = 30 * 24 * 60 * 60 ipBanishmentLength = 1 * 24 * 60 * 60 broadcastBanishments = true maxViolationCommentSize = 200 violationNameReportActionType = 2 autoBanishUnknownBytes = false loginProtectionPeriod is the famous Tibia anti-magebomb system. deathLostPercent set to nil enables manual mode. worldType = "open" protectionLevel = 30 pvpTileIgnoreLevelAndVocationProtection = true pzLocked = 40 * 100 huntingDuration = 60 * 500 criticalHitChance = 7 criticalHitMultiplier = 1 displayCriticalHitNotify = false removeWeaponAmmunition = false removeWeaponCharges = true removeRuneCharges = false whiteSkullTime = 5 * 60 * 1000 noDamageToSameLookfeet = false showHealingDamage = true showHealingDamageForMonsters = true fieldOwnershipDuration = 5 * 1000 stopAttackingAtExit = false loginProtectionPeriod = 10 * 1000 deathLostPercent = 10 stairhopDelay = 2 * 1000 pushCreatureDelay = 2 * 1 deathContainerId = 1987 gainExperienceColor = 215 addManaSpentInPvPZone = true squareColor = 0 allowFightback = true fistBaseAttack = 7 worldId = 0 ip = "189.121.163.63" bindOnlyGlobalAddress = false loginPort = 7171 gamePort = 7172 loginTries = 10 retryTimeout = 5 * 1000 loginTimeout = 60 * 1000 maxPlayers = 1000 motd = "Welcome to Detect baiak Ot !" displayOnOrOffAtCharlist = false onePlayerOnlinePerAccount = true allowClones = false serverName = "Detect baiak Ot !" loginMessage = "Welcome to Detect baiak Ot 24 Horas Online !" statusTimeout = 5 * 60 * 1000 replaceKickOnLogin = true forceSlowConnectionsToDisconnect = false loginOnlyWithLoginServer = false premiumPlayerSkipWaitList = false Prime1 - known as p; Prime2 - known as q; Public - known as e; Modulus - known as n; Private - known as d. rsaPrime1 = "14299623962416399520070177382898895550795403345466153217470516082934737582776038882967213386204600674145392845853859217990626450972452084065728686565928113" rsaPrime2 = "7630979195970404721891201847792002125535401292779123937207447574596692788513647179235335529307251350570728407373705564708871762033017096809910315212884101" rsaPublic = "65537" rsaModulus = "109120132967399429278860960508995541528237502902798129123468757937266291492576446330739696001110603907230888610072655818825358503429057592827629436413108566029093628212635953836686562675849720620786279431090218017681061521755056710823876476444260558147179707119674283982419152118103759076030616683978566631413" rsaPrivate = "46730330223584118622160180015036832148732986808519344675210555262940258739805766860224610646919605860206328024326703361630109888417839241959507572247284807035235569619173792292786907845791904955103601652822519121908367187885509270025388641700821735345222087940578381210879116823013776808975766851829020659073" To disable sqlKeepAlive such as mysqlReadTimeout use 0 value. sqlType = "mysql" sqlHost = "localhost" sqlPort = 3306 sqlUser = "root" sqlPass = "1156514" sqlDatabase = "otserv" sqlFile = "" sqlKeepAlive = 0 mysqlReadTimeout = 10 mysqlWriteTimeout = 10 encryptionType = "sha1" deathListEnabled = true deathListRequiredTime = 1 * 60 * 1000 deathAssistCount = 19 maxDeathRecords = 5 ingameGuildManagement = false levelToFormGuild = 50 premiumDaysToFormGuild = 0 guildNameMinLength = 4 guildNameMaxLength = 20 highscoreDisplayPlayers = 15 updateHighscoresAfterMinutes = 60 buyableAndSellableHouses = true houseNeedPremium = false bedsRequirePremium = false levelToBuyHouse = 50 housesPerAccount = 0 houseRentAsPrice = false housePriceAsRent = false housePriceEachSquare = 1000 houseRentPeriod = "never" houseCleanOld = 0 guildHalls = false timeBetweenActions = 200 timeBetweenExActions = 1000 hotkeyAimbotEnabled = true mapName = "Baiak Yurots.otbm" mapAuthor = "xande" randomizeTiles = true storeTrash = true cleanProtectedZones = true mailboxDisabledTowns = "" defaultPriority = "high" niceLevel = 5 coresUsed = "-1" startupDatabaseOptimization = false updatePremiumStateAtStartup = true confirmOutdatedVersion = false formulaLevel = 5.0 formulaMagic = 1.0 bufferMutedOnSpellFailure = false spellNameInsteadOfWords = false emoteSpells = false unifiedSpells = true allowChangeOutfit = true allowChangeColors = true allowChangeAddons = true disableOutfitsForPrivilegedPlayers = false addonsOnlyPremium = false dataDirectory = "data/" logsDirectory = "data/logs/" bankSystem = true displaySkillLevelOnAdvance = true promptExceptionTracerErrorBox = true maximumDoorLevel = 500 maxMessageBuffer = 4 tradeLimit = 100 separateVipListPerCharacter = false vipListDefaultLimit = 20 vipListDefaultPremiumLimit = 100 useHouseDataStorage usage may be found at README. saveGlobalStorage = true useHouseDataStorage = false storePlayerDirection = false checkCorpseOwner = true monsterLootMessage = 3 monsterLootMessageType = 25 ghostModeInvisibleEffect = false ghostModeSpellEffects = true idleWarningTime = 200 * 200 * 1000 idleKickTime = 200 * 200 * 1000 reportsExpirationAfterReads = 1 playerQueryDeepness = 2 tileLimit = 0 protectionTileLimit = 0 houseTileLimit = 0 freePremium = false premiumForPromotion = false blessings = true blessingOnlyPremium = true blessingReductionBase = 30 blessingReductionDecrement = 5 eachBlessReduction = 8 rateExperienceFromPlayers 0 to disable. experienceStages = true rateExperience = 8.0 rateExperienceFromPlayers = 0 rateSkill = 15.0 rateMagic = 10.0 rateLoot = 2.0 rateSpawn = 1 rateMonsterHealth = 1.0 rateMonsterMana = 1.0 rateMonsterAttack = 1.0 rateMonsterDefense = 1.0 player will gain experience from every lower leveled player. player will gain experience from every higher leveled player. minLevelThresholdForKilledPlayer = 0.9 maxLevelThresholdForKilledPlayer = 1.1 multiplied by player attack speed. staminaRatingLimit* is in minutes. rateStaminaLoss = 1 rateStaminaGain = 3 rateStaminaThresholdGain = 12 staminaRatingLimitTop = 40 * 60 staminaRatingLimitBottom = 14 * 60 staminaLootLimit = 14 * 60 rateStaminaAboveNormal = 1.5 rateStaminaUnderNormal = 0.5 staminaThresholdOnlyPremium = false experienceShareLevelDifference is highestLevel * value experienceShareRadiusX = 30 experienceShareRadiusY = 30 experienceShareRadiusZ = 1 experienceShareLevelDifference = 2 / 3 extraPartyExperienceLimit = 20 extraPartyExperiencePercent = 5 experienceShareActivity = 2 * 60 * 1000 Global save globalSaveEnabled = false globalSaveHour = 8 globalSaveMinute = 0 shutdownAtGlobalSave = true cleanMapAtGlobalSave = false deSpawnRange = 2 deSpawnRadius = 50 maxPlayerSummons = 5 teleportAllSummons = false teleportPlayerSummons = false statusPort = 7171 ownerName = "Detect baiak" ownerEmail = "msn@detecthost.net" url = "http://detecthost.net" location = "Brazil" displayGamemastersWithOnlineCommand = false displayPlayersLogging = true prefixChannelLogs = "" runFile = "" outputLog = "" truncateLogOnStartup = false managerPort = 7171 managerLogs = true managerPassword = "" managerLocalhostOnly = true managerConnectionsLimit = 1 Set to anything if you set adminRequireLogin to false. adminPort = 7171 adminLogs = true adminPassword = "" adminLocalhostOnly = true adminConnectionsLimit = 1 adminRequireLogin = true adminEncryption = "" adminEncryptionData = "" meu config.lua
  15. accountManager = yes namelockManager = true newPlayerChooseVoc = true newPlayerSpawnPosX = 160 newPlayerSpawnPosY = 54 newPlayerSpawnPosZ = 7 newPlayerTownId = 1 newPlayerLevel = 20 newPlayerMagicLevel = 0 generateAccountNumber = false generateAccountSalt = false Paralyze Rune like Tibia.Com 100% paralyzeDelay = 1400 Report comand by Detect baiak reportExhausted = 30 * 60 Auto banishing works only if useBlackSkull set to negative. advancedFragList is not advised if you use huge frags requirements. useFragHandler = true redSkullLength = 1 * 24 * 60 * 60 blackSkullLength = 2 * 24 * 60 * 60 dailyFragsToRedSkull = 6 weeklyFragsToRedSkull = 36 monthlyFragsToRedSkull = 128 dailyFragsToBlackSkull = 8 weeklyFragsToBlackSkull = 48 monthlyFragsToBlackSkull = 192 dailyFragsToBanishment = dailyFragsToRedSkull weeklyFragsToBanishment = weeklyFragsToRedSkull monthlyFragsToBanishment = monthlyFragsToRedSkull blackSkulledDeathHealth = 40 blackSkulledDeathMana = 0 useBlackSkull = true advancedFragList = false killsBanLength works only if useBlackSkull option is disabled. notationsToBan = 3 warningsToFinalBan = 4 warningsToDeletion = 5 banLength = 7 * 24 * 60 * 60 killsBanLength = 7 * 24 * 60 * 60 finalBanLength = 30 * 24 * 60 * 60 ipBanishmentLength = 1 * 24 * 60 * 60 broadcastBanishments = true maxViolationCommentSize = 200 violationNameReportActionType = 2 autoBanishUnknownBytes = false loginProtectionPeriod is the famous Tibia anti-magebomb system. deathLostPercent set to nil enables manual mode. worldType = "open" protectionLevel = 30 pvpTileIgnoreLevelAndVocationProtection = true pzLocked = 40 * 100 huntingDuration = 60 * 500 criticalHitChance = 7 criticalHitMultiplier = 1 displayCriticalHitNotify = false removeWeaponAmmunition = false removeWeaponCharges = true removeRuneCharges = false whiteSkullTime = 5 * 60 * 1000 noDamageToSameLookfeet = false showHealingDamage = true showHealingDamageForMonsters = true fieldOwnershipDuration = 5 * 1000 stopAttackingAtExit = false loginProtectionPeriod = 10 * 1000 deathLostPercent = 10 stairhopDelay = 2 * 1000 pushCreatureDelay = 2 * 1 deathContainerId = 1987 gainExperienceColor = 215 addManaSpentInPvPZone = true squareColor = 0 allowFightback = true fistBaseAttack = 7 worldId = 0 ip = "189.121.163.63" bindOnlyGlobalAddress = false loginPort = 7171 gamePort = 7172 loginTries = 10 retryTimeout = 5 * 1000 loginTimeout = 60 * 1000 maxPlayers = 1000 motd = "Welcome to Detect baiak Ot !" displayOnOrOffAtCharlist = false onePlayerOnlinePerAccount = true allowClones = false serverName = "Detect baiak Ot !" loginMessage = "Welcome to Detect baiak Ot 24 Horas Online !" statusTimeout = 5 * 60 * 1000 replaceKickOnLogin = true forceSlowConnectionsToDisconnect = false loginOnlyWithLoginServer = false premiumPlayerSkipWaitList = false Prime1 - known as p; Prime2 - known as q; Public - known as e; Modulus - known as n; Private - known as d. rsaPrime1 = "14299623962416399520070177382898895550795403345466153217470516082934737582776038882967213386204600674145392845853859217990626450972452084065728686565928113" rsaPrime2 = "7630979195970404721891201847792002125535401292779123937207447574596692788513647179235335529307251350570728407373705564708871762033017096809910315212884101" rsaPublic = "65537" rsaModulus = "109120132967399429278860960508995541528237502902798129123468757937266291492576446330739696001110603907230888610072655818825358503429057592827629436413108566029093628212635953836686562675849720620786279431090218017681061521755056710823876476444260558147179707119674283982419152118103759076030616683978566631413" rsaPrivate = "46730330223584118622160180015036832148732986808519344675210555262940258739805766860224610646919605860206328024326703361630109888417839241959507572247284807035235569619173792292786907845791904955103601652822519121908367187885509270025388641700821735345222087940578381210879116823013776808975766851829020659073" To disable sqlKeepAlive such as mysqlReadTimeout use 0 value. sqlType = "mysql" sqlHost = "localhost" sqlPort = 3306 sqlUser = "root" sqlPass = "1156514" sqlDatabase = "otserv" sqlFile = "" sqlKeepAlive = 0 mysqlReadTimeout = 10 mysqlWriteTimeout = 10 encryptionType = "sha1" deathListEnabled = true deathListRequiredTime = 1 * 60 * 1000 deathAssistCount = 19 maxDeathRecords = 5 ingameGuildManagement = false levelToFormGuild = 50 premiumDaysToFormGuild = 0 guildNameMinLength = 4 guildNameMaxLength = 20 highscoreDisplayPlayers = 15 updateHighscoresAfterMinutes = 60 buyableAndSellableHouses = true houseNeedPremium = false bedsRequirePremium = false levelToBuyHouse = 50 housesPerAccount = 0 houseRentAsPrice = false housePriceAsRent = false housePriceEachSquare = 1000 houseRentPeriod = "never" houseCleanOld = 0 guildHalls = false timeBetweenActions = 200 timeBetweenExActions = 1000 hotkeyAimbotEnabled = true mapName = "Baiak Yurots.otbm" mapAuthor = "xande" randomizeTiles = true storeTrash = true cleanProtectedZones = true mailboxDisabledTowns = "" defaultPriority = "high" niceLevel = 5 coresUsed = "-1" startupDatabaseOptimization = false updatePremiumStateAtStartup = true confirmOutdatedVersion = false formulaLevel = 5.0 formulaMagic = 1.0 bufferMutedOnSpellFailure = false spellNameInsteadOfWords = false emoteSpells = false unifiedSpells = true allowChangeOutfit = true allowChangeColors = true allowChangeAddons = true disableOutfitsForPrivilegedPlayers = false addonsOnlyPremium = false dataDirectory = "data/" logsDirectory = "data/logs/" bankSystem = true displaySkillLevelOnAdvance = true promptExceptionTracerErrorBox = true maximumDoorLevel = 500 maxMessageBuffer = 4 tradeLimit = 100 separateVipListPerCharacter = false vipListDefaultLimit = 20 vipListDefaultPremiumLimit = 100 useHouseDataStorage usage may be found at README. saveGlobalStorage = true useHouseDataStorage = false storePlayerDirection = false checkCorpseOwner = true monsterLootMessage = 3 monsterLootMessageType = 25 ghostModeInvisibleEffect = false ghostModeSpellEffects = true idleWarningTime = 200 * 200 * 1000 idleKickTime = 200 * 200 * 1000 reportsExpirationAfterReads = 1 playerQueryDeepness = 2 tileLimit = 0 protectionTileLimit = 0 houseTileLimit = 0 freePremium = false premiumForPromotion = false blessings = true blessingOnlyPremium = true blessingReductionBase = 30 blessingReductionDecrement = 5 eachBlessReduction = 8 rateExperienceFromPlayers 0 to disable. experienceStages = true rateExperience = 8.0 rateExperienceFromPlayers = 0 rateSkill = 15.0 rateMagic = 10.0 rateLoot = 2.0 rateSpawn = 1 rateMonsterHealth = 1.0 rateMonsterMana = 1.0 rateMonsterAttack = 1.0 rateMonsterDefense = 1.0 player will gain experience from every lower leveled player. player will gain experience from every higher leveled player. minLevelThresholdForKilledPlayer = 0.9 maxLevelThresholdForKilledPlayer = 1.1 multiplied by player attack speed. staminaRatingLimit* is in minutes. rateStaminaLoss = 1 rateStaminaGain = 3 rateStaminaThresholdGain = 12 staminaRatingLimitTop = 40 * 60 staminaRatingLimitBottom = 14 * 60 staminaLootLimit = 14 * 60 rateStaminaAboveNormal = 1.5 rateStaminaUnderNormal = 0.5 staminaThresholdOnlyPremium = false experienceShareLevelDifference is highestLevel * value experienceShareRadiusX = 30 experienceShareRadiusY = 30 experienceShareRadiusZ = 1 experienceShareLevelDifference = 2 / 3 extraPartyExperienceLimit = 20 extraPartyExperiencePercent = 5 experienceShareActivity = 2 * 60 * 1000 Global save globalSaveEnabled = false globalSaveHour = 8 globalSaveMinute = 0 shutdownAtGlobalSave = true cleanMapAtGlobalSave = false deSpawnRange = 2 deSpawnRadius = 50 maxPlayerSummons = 5 teleportAllSummons = false teleportPlayerSummons = false statusPort = 7171 ownerName = "Detect baiak" ownerEmail = "msn@detecthost.net" url = "http://detecthost.net" location = "Brazil" displayGamemastersWithOnlineCommand = false displayPlayersLogging = true prefixChannelLogs = "" runFile = "" outputLog = "" truncateLogOnStartup = false managerPort = 7171 managerLogs = true managerPassword = "" managerLocalhostOnly = true managerConnectionsLimit = 1 Set to anything if you set adminRequireLogin to false. adminPort = 7171 adminLogs = true adminPassword = "" adminLocalhostOnly = true adminConnectionsLimit = 1 adminRequireLogin = true adminEncryption = "" adminEncryptionData = "" ta ae mais tipo ta tudo do jeito que me falarao pra deixar
  16. galera eu tenho um ot e conectei meu site com o ot mais na hora que eu tento abrir o server da ERROR UNABLE TO LOAD CONFIG.LUA! alguem pode me ajudar porfavor ps:esse foi o lugar mais adequado que achei
  17. desculpa foi o local mais adecuado que achei
  18. galera porfavor ajuda em uma coisa muito simples mais eu nao manjo tipo assim eu conectei meu ot no site mais quando vo bota meu site on aparece uma mensagen ERROR UNABLE TO LOAD COFIG.LUA!! ALGUEM PODE ME AJUDAR PORFAVOR obrigado +rep pra quem me ajuda valeusss
    1. Mostrar comentários anteriores  %s mais
    2. LeoTK
    3. arthurderan

      arthurderan

      Brunds sou eu o NTOServer vc falou se eu criasse o topico eu podia Mostra pra vc min ajuda por favor taki olha http://www.xtibia.com/forum/topic/238825-pedido-mapa-do-nto-server-com-eventon-hidanjuubikurama-event-boss-por-favor-alguem-min-ajuda/
    4. arthurderan

      arthurderan

      Min ajuda maninho :/
  19. galera alguem pode me ajuda porfavor estou com o pontrait,pokemon,corpse,habilities. dos jotho mais nao sei aonde por ou como por sera que alguem pode fazer um tuto pra min rapidao nao custa nada dou 2+ rep vlws tipo em que pastas por e tals
  20. ola galera bom esse foi o lugar mais apropriado para essa duvida ou ajuda bom estou com um problema que me deixou muito nervoso porq fiquei mais de 3 horas parado no mesmo lugar bom e o seguinte galera estou tentando deixar um site on mais falta a parte do sql para as accounts bom nao sei como faiz essa parte sempre da erro bom galera tanbem queria uma explicaçao para configurar o config.lua e o sql ou se tiver mais algo para mexer bom ja configurei tudo xampp o site ja ta no htdoc e tals bom so falta essa parte bom meu xampp e 1.7.7 bom galera e isso ai tambem nao sei criar god quando conseguir colocar a sql bom galera e isso se alguem poder me ajudar em tudo isso eu do +reep com 5 dias
  21. cara te amo mais +rep pra tu cara y love you valeu mesmo cara
  22. valeu pelo aviso cara se ps: vc poderia dar uma mao kkkk atualizar esse servidor e deixar com todos os pokes kkk eu poderia ate te ajudar seis alguma coisas qual ker coisa manda resposta ae valeu
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...