Ir para conteúdo

Wend

Membro
  • Registro em

  • Última visita

Tudo que Wend postou

  1. Wend postou uma resposta no tópico em Suporte OTServer Derivados
    C:\Program Files\ObjectBuilder e mim manda o seu versions.xml
  2. Wend postou uma resposta no tópico em Design Show Off
    Show! Parabéns Tony Background e Avatar para o Youtuber Ficou De mais.
  3. execute CREATE TABLE IF NOT EXISTS `polls` ( `id` int(11) NOT NULL AUTO_INCREMENT, `player_id` int(11) NOT NULL, `poll` varchar(255) NOT NULL, `options` varchar(255) NOT NULL, `timestamp` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `player_id` (`player_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `poll_votes` ( `poll_id` int(11) NOT NULL, `votes` varchar(255) NOT NULL, `account_id` varchar(255) NOT NULL, KEY `poll_id` (`poll_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; CREATE TABLE IF NOT EXISTS `z_polls` ( `id` int(11) NOT NULL AUTO_INCREMENT, `question` varchar(255) NOT NULL, `end` int(11) NOT NULL, `start` int(11) NOT NULL, `answers` int(11) NOT NULL, `votes_all` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `z_polls_answers` ( `poll_id` int(11) NOT NULL, `answer_id` int(11) NOT NULL, `answer` varchar(255) NOT NULL, `votes` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  4. Teste: function onSay(cid, words, param, channel) local n = 1 if(param ~= '' and tonumber(param)) then n = math.max(0, tonumber(param)) end local tmp, pos = getCreaturePosition(cid), getCreaturePosition(cid) if(words:sub(2, 2) == "u") then pos.z = pos.z - n else pos.z = pos.z + n end if pos.z == 7 then elseif pos.z <= 6 then doAreaCombatHealth(0,0,pos,0,0,0,255) doCreateItem(460,1,pos) end pos = getClosestFreeTile(cid, pos, false, false) if(not pos or isInArray({pos.x, pos.y}, 0)) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Destination not reachable.") return true end if(doTeleportThing(cid, pos, true) and not isPlayerGhost(cid)) then doSendMagicEffect(tmp, CONST_ME_POFF) doSendMagicEffect(pos, CONST_ME_TELEPORT) end if(getThingPos(cid)) end return true end
  5. Então use esse >> http://www.tibiaking.com/forum/topic/30054-otloader/
  6. Resolvido. Clique em melhor Resposta para que a Tag seja adicionada Automaticamente
  7. Para que você está querendo ? Tem esse ai que acho melhor que o IP CHANGER. Link >> http://www.tibiaking.com/forum/topic/30054-otloader/
  8. Não dar para arruma Pois vai precisar do Editor Link de um Tutorial >> http://www.tibiaking.com/forum/topic/9232-resolvendo-temple-position-is-wrong-contact-the-administrator/
  9. "data/movements/scripts/donateviiting.lua" [/b]function onStepIn(cid, item, position, fromPosition) if isPremium(cid) == FALSE then doTeleportThing(cid, fromPosition, false) doSendMagicEffect(position, CONST_ME_MAGIC_BLUE) doPlayerSendCancel(cid, "Somente players Que tem Acesso VIP podem passar.") end return TRUE end "data/movements/movements.xml" <movevent type="StepIn" actionid="15000" event="script" value="donateviiting.lua"/> Depois abra o RME e coloque actionID 15000 no Piso que dar acesso a area vip.
  10. Acesse: localhost/phpmyadmin E escolha a sua database otserv, escolha a aba sql, e cole este script e execute: CREATE TABLE IF NOT EXISTS `news` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(150) DEFAULT '', `body` text, `time` int(11) DEFAULT '0', PRIMARY KEY (`id`) );
  11. 1° você adicionou alguma stone nova? qual nome dela? 2° irei ver umas coisa aqui 3° teste assim
  12. Ou outro jeito mais facil vá na Pasta data\lib e abra o configuration.lua e procure por uma parte +ou- assim do shiny oddish ["Shiny Oddish"] = {chance = 20, corpse = 12462}, quando achar +ou- isso só retirar essa linha e Reiniciar o server que vai Ficar impossivel tacar Ball no pokemon
  13. Tente assim: -- The Forgotten Server Config-- -- Account manager accountManager = true namelockManager = true newPlayerChooseVoc = true newPlayerSpawnPosX = 1000 newPlayerSpawnPosY = 1000 newPlayerSpawnPosZ = 7 newPlayerTownId = 1 newPlayerLevel = 8 newPlayerMagicLevel = 0 generateAccountNumber = false -- Auto Combo Dedecter comboTime = 100 comboMembers = 2 comboFriends = 3 comboFriendsClearTime = 5 * 60 * 1000 comboFriendsClearInterval = 1 * 60 * 1000 comboShowAnimation = 1 -- Anti Paralyze Dedection paralyzeSlow = 10 -- decrease basespeed percent paralyzeMinTime = 200 -- if unparalyze time under (miliseconds) count it as too fast paralyzeChecks = 3 -- after how many too fast unparalyzes punish player (slow) -- Anti MC -- At data/creaturescripts/scripts/Antimagebomb.lua --You can configure it! antimulticlient = true --Do you want allow the player to check max players on one ip? -- Unjustified kills -- NOTE: *Banishment and *BlackSkull variables are >summed up< -- (dailyFragsToRedSkull + dailyFragsToBanishment) with their -- *RedSkull equivalents. -- Auto banishing works only if useBlackSkull set to negative. -- advancedFragList is not advised if you use huge frags -- requirements. redSkullLength = 30 * 24 * 60 * 60 blackSkullLength = 45 * 24 * 60 * 60 dailyFragsToRedSkull = 3 weeklyFragsToRedSkull = 5 monthlyFragsToRedSkull = 10 dailyFragsToBlackSkull = dailyFragsToRedSkull weeklyFragsToBlackSkull = weeklyFragsToRedSkull monthlyFragsToBlackSkull = monthlyFragsToRedSkull dailyFragsToBanishment = dailyFragsToRedSkull weeklyFragsToBanishment = weeklyFragsToRedSkull monthlyFragsToBanishment = monthlyFragsToRedSkull blackSkulledDeathHealth = 40 blackSkulledDeathMana = 0 useBlackSkull = true useFragHandler = true advancedFragList = false -- Banishments -- violationNameReportActionType 1 = just a report, 2 = name lock, 3 = player banishment -- 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 -- Battle -- NOTE: showHealingDamageForMonsters inheritates from showHealingDamage. -- loginProtectionPeriod is the famous Tibia anti-magebomb system. -- deathLostPercent set to nil enables manual mode. worldType = "pvp" protectionLevel = 1 pvpTileIgnoreLevelAndVocationProtection = true pzLocked = 60 * 1000 huntingDuration = 60 * 1000 criticalHitChance = 7 criticalHitMultiplier = 1 displayCriticalHitNotify = false removeWeaponAmmunition = true removeWeaponCharges = true removeRuneCharges = true whiteSkullTime = 15 * 60 * 1000 noDamageToSameLookfeet = false showHealingDamage = false showHealingDamageForMonsters = false fieldOwnershipDuration = 5 * 1000 stopAttackingAtExit = false oldConditionAccuracy = false loginProtectionPeriod = 10 * 1000 deathLostPercent = 10 stairhopDelay = 2 * 1000 pushCreatureDelay = 2 * 1000 deathContainerId = 1987 gainExperienceColor = 215 addManaSpentInPvPZone = true squareColor = 0 allowFightback = true -- Connection config worldId = 0 ip = "187.38.86.205" bindOnlyConfiguredIpAddress = false loginPort = 7171 gamePort = 7172 adminPort = 7171 statusPort = 7171 loginTries = 10 retryTimeout = 5 * 1000 loginTimeout = 60 * 1000 maxPlayers = 1000 motd = "Welcome to the Forgotten Server 8.60!" displayOnOrOffAtCharlist = false onePlayerOnlinePerAccount = true allowClones = false serverName = "Forgotten 8.60" loginMessage = "Welcome to the Forgotten Server 8.60!" statusTimeout = 5 * 60 * 1000 replaceKickOnLogin = true forceSlowConnectionsToDisconnect = false loginOnlyWithLoginServer = false premiumPlayerSkipWaitList = false -- Database -- NOTE: sqlFile is used only by sqlite database, and sqlKeepAlive by mysql database. -- To disable sqlKeepAlive such as mysqlReadTimeout use 0 value. sqlType = "sqlite" sqlHost = "localhost" sqlPort = 3306 sqlUser = "root" sqlPass = "" sqlDatabase = "theforgottenserver" sqlFile = "forgottenserver.s3db" sqlKeepAlive = 0 mysqlReadTimeout = 10 mysqlWriteTimeout = 10 encryptionType = "plain" -- Deathlist deathListEnabled = true deathListRequiredTime = 1 * 60 * 1000 deathAssistCount = 19 maxDeathRecords = 5 -- Guilds ingameGuildManagement = true levelToFormGuild = 8 premiumDaysToFormGuild = 0 guildNameMinLength = 4 guildNameMaxLength = 20 -- Highscores highscoreDisplayPlayers = 15 updateHighscoresAfterMinutes = 60 -- Houses buyableAndSellableHouses = true houseNeedPremium = true bedsRequirePremium = true levelToBuyHouse = 1 housesPerAccount = 0 houseRentAsPrice = false housePriceAsRent = false housePriceEachSquare = 1000 houseRentPeriod = "never" houseCleanOld = 0 guildHalls = false -- Item usage timeBetweenActions = 200 timeBetweenExActions = 1000 hotkeyAimbotEnabled = true -- Map -- NOTE: storeTrash costs more memory, but will perform alot faster cleaning. mapName = "Norah" mapAuthor = "Komic" randomizeTiles = true storeTrash = true cleanProtectedZones = true mailboxDisabledTowns = "-1" -- Process -- NOTE: defaultPriority works only on Windows and niceLevel on *nix -- coresUsed are seperated by comma cores ids used by server process, -- default is -1, so it stays untouched (automaticaly assigned by OS). defaultPriority = "high" niceLevel = 5 coresUsed = "-1" -- Startup optimizeDatabaseAtStartup = true removePremiumOnInit = true confirmOutdatedVersion = false -- Spells formulaLevel = 5.0 formulaMagic = 1.0 bufferMutedOnSpellFailure = false spellNameInsteadOfWords = false emoteSpells = false -- Outfits allowChangeOutfit = true allowChangeColors = true allowChangeAddons = true disableOutfitsForPrivilegedPlayers = false addonsOnlyPremium = true -- Miscellaneous -- NOTE: promptExceptionTracerErrorBox works only with precompiled support feature, -- called "exception tracer" (__EXCEPTION_TRACER__ flag). dataDirectory = "data/" bankSystem = true displaySkillLevelOnAdvance = false promptExceptionTracerErrorBox = true separateViplistPerCharacter = false maximumDoorLevel = 500 maxMessageBuffer = 4 -- Saving-related -- useHouseDataStorage usage may be found at README. saveGlobalStorage = true useHouseDataStorage = false storePlayerDirection = false -- Loot -- monsterLootMessage 0 to disable, 1 - only party, 2 - only player, 3 - party or player (like Tibia's) checkCorpseOwner = true monsterLootMessage = 3 monsterLootMessageType = 25 -- Ghost mode ghostModeInvisibleEffect = false ghostModeSpellEffects = true -- Limits idleWarningTime = 14 * 60 * 1000 idleKickTime = 15 * 60 * 1000 expireReportsAfterReads = 1 playerQueryDeepness = 2 maxItemsPerPZTile = 0 maxItemsPerHouseTile = 0 -- Premium-related freePremium = false premiumForPromotion = true -- Blessings -- NOTE: blessingReduction* regards items/containers loss. -- eachBlessReduction is how much each bless reduces the experience/magic/skills loss. blessingOnlyPremium = true blessingReductionBase = 30 blessingReductionDecreament = 5 eachBlessReduction = 8 -- Rates -- NOTE: experienceStages configuration is located in data/XML/stages.xml. -- rateExperienceFromPlayers 0 to disable. experienceStages = false rateExperience = 5.0 rateExperienceFromPlayers = 0 rateSkill = 3.0 rateMagic = 3.0 rateLoot = 2.0 rateSpawn = 1 -- Monster rates rateMonsterHealth = 1.0 rateMonsterMana = 1.0 rateMonsterAttack = 1.0 rateMonsterDefense = 1.0 -- Experience from players -- NOTE: min~Threshold* set to 0 will disable the minimum threshold: -- player will gain experience from every lower leveled player. -- max~Threshold* set to 0 will disable the maximum threshold: -- player will gain experience from every higher leveled player. minLevelThresholdForKilledPlayer = 0.9 maxLevelThresholdForKilledPlayer = 1.1 -- Stamina -- NOTE: Stamina is stored in miliseconds, so seconds are multiplied by 1000. -- rateStaminaHits multiplies every hit done a creature, which are later -- multiplied by player attack speed. -- rateStaminaGain is divider of every logged out second, eg: -- 60000 / 3 = 20000 milliseconds, what gives 20 stamina seconds for 1 minute being logged off. -- rateStaminaThresholdGain is divider for the premium stamina. -- staminaRatingLimit* is in minutes. rateStaminaLoss = 1 rateStaminaGain = 3 rateStaminaThresholdGain = 12 staminaRatingLimitTop = 41 * 60 staminaRatingLimitBottom = 14 * 60 rateStaminaAboveNormal = 1.5 rateStaminaUnderNormal = 0.5 staminaThresholdOnlyPremium = true -- Party -- NOTE: experienceShareLevelDifference is float number. -- experienceShareLevelDifference is highestLevel * value experienceShareRadiusX = 30 experienceShareRadiusY = 30 experienceShareRadiusZ = 1 experienceShareLevelDifference = 2 / 3 extraPartyExperienceLimit = 20 extraPartyExperiencePercent = 5 experienceShareActivity = 2 * 60 * 1000 -- Global save -- NOTE: globalSaveHour means like 03:00, not that it will save every 3 hours, -- if you want such a system please check out data/globalevents/globalevents.xml. globalSaveEnabled = false globalSaveHour = 8 shutdownAtGlobalSave = true cleanMapAtGlobalSave = false -- Spawns deSpawnRange = 2 deSpawnRadius = 50 -- Summons maxPlayerSummons = 2 teleportAllSummons = false teleportPlayerSummons = false -- Status ownerName = "SmoOkeR" ownerEmail = "" url = "www.xtibia.com location = "Brasil" displayGamemastersWithOnlineCommand = false -- Logs -- NOTE: This kind of logging does not work in GUI version. -- For such, please compile the software with __GUI_LOGS__ flag. adminLogsEnabled = false displayPlayersLogging = true prefixChannelLogs = "" runFile = "" outLogName = "" errorLogName = "" truncateLogsOnStartup = false-- The Forgotten Server Config-- -- Account manager accountManager = true namelockManager = true newPlayerChooseVoc = true newPlayerSpawnPosX = 1000 newPlayerSpawnPosY = 1000 newPlayerSpawnPosZ = 7 newPlayerTownId = 1 newPlayerLevel = 8 newPlayerMagicLevel = 0 generateAccountNumber = false -- Auto Combo Dedecter comboTime = 100 comboMembers = 2 comboFriends = 3 comboFriendsClearTime = 5 * 60 * 1000 comboFriendsClearInterval = 1 * 60 * 1000 comboShowAnimation = 1 -- Anti Paralyze Dedection paralyzeSlow = 10 -- decrease basespeed percent paralyzeMinTime = 200 -- if unparalyze time under (miliseconds) count it as too fast paralyzeChecks = 3 -- after how many too fast unparalyzes punish player (slow) -- Anti MC -- At data/creaturescripts/scripts/Antimagebomb.lua --You can configure it! antimulticlient = true --Do you want allow the player to check max players on one ip? -- Unjustified kills -- NOTE: *Banishment and *BlackSkull variables are >summed up< -- (dailyFragsToRedSkull + dailyFragsToBanishment) with their -- *RedSkull equivalents. -- Auto banishing works only if useBlackSkull set to negative. -- advancedFragList is not advised if you use huge frags -- requirements. redSkullLength = 30 * 24 * 60 * 60 blackSkullLength = 45 * 24 * 60 * 60 dailyFragsToRedSkull = 3 weeklyFragsToRedSkull = 5 monthlyFragsToRedSkull = 10 dailyFragsToBlackSkull = dailyFragsToRedSkull weeklyFragsToBlackSkull = weeklyFragsToRedSkull monthlyFragsToBlackSkull = monthlyFragsToRedSkull dailyFragsToBanishment = dailyFragsToRedSkull weeklyFragsToBanishment = weeklyFragsToRedSkull monthlyFragsToBanishment = monthlyFragsToRedSkull blackSkulledDeathHealth = 40 blackSkulledDeathMana = 0 useBlackSkull = true useFragHandler = true advancedFragList = false -- Banishments -- violationNameReportActionType 1 = just a report, 2 = name lock, 3 = player banishment -- 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 -- Battle -- NOTE: showHealingDamageForMonsters inheritates from showHealingDamage. -- loginProtectionPeriod is the famous Tibia anti-magebomb system. -- deathLostPercent set to nil enables manual mode. worldType = "pvp" protectionLevel = 1 pvpTileIgnoreLevelAndVocationProtection = true pzLocked = 60 * 1000 huntingDuration = 60 * 1000 criticalHitChance = 7 criticalHitMultiplier = 1 displayCriticalHitNotify = false removeWeaponAmmunition = true removeWeaponCharges = true removeRuneCharges = true whiteSkullTime = 15 * 60 * 1000 noDamageToSameLookfeet = false showHealingDamage = false showHealingDamageForMonsters = false fieldOwnershipDuration = 5 * 1000 stopAttackingAtExit = false oldConditionAccuracy = false loginProtectionPeriod = 10 * 1000 deathLostPercent = 10 stairhopDelay = 2 * 1000 pushCreatureDelay = 2 * 1000 deathContainerId = 1987 gainExperienceColor = 215 addManaSpentInPvPZone = true squareColor = 0 allowFightback = true -- Connection config worldId = 0 ip = "187.38.86.205" bindOnlyConfiguredIpAddress = false loginPort = 7171 gamePort = 7172 adminPort = 7171 statusPort = 7171 loginTries = 10 retryTimeout = 5 * 1000 loginTimeout = 60 * 1000 maxPlayers = 1000 motd = "Welcome to the Forgotten Server 8.60!" displayOnOrOffAtCharlist = false onePlayerOnlinePerAccount = true allowClones = false serverName = "Forgotten 8.60" loginMessage = "Welcome to the Forgotten Server 8.60!" statusTimeout = 5 * 60 * 1000 replaceKickOnLogin = true forceSlowConnectionsToDisconnect = false loginOnlyWithLoginServer = false premiumPlayerSkipWaitList = false -- Database -- NOTE: sqlFile is used only by sqlite database, and sqlKeepAlive by mysql database. -- To disable sqlKeepAlive such as mysqlReadTimeout use 0 value. sqlType = "sqlite" sqlHost = "localhost" sqlPort = 3306 sqlUser = "root" sqlPass = "" sqlDatabase = "theforgottenserver" sqlFile = "forgottenserver.s3db" sqlKeepAlive = 0 mysqlReadTimeout = 10 mysqlWriteTimeout = 10 encryptionType = "plain" -- Deathlist deathListEnabled = true deathListRequiredTime = 1 * 60 * 1000 deathAssistCount = 19 maxDeathRecords = 5 -- Guilds ingameGuildManagement = true levelToFormGuild = 8 premiumDaysToFormGuild = 0 guildNameMinLength = 4 guildNameMaxLength = 20 -- Highscores highscoreDisplayPlayers = 15 updateHighscoresAfterMinutes = 60 -- Houses buyableAndSellableHouses = true houseNeedPremium = true bedsRequirePremium = true levelToBuyHouse = 1 housesPerAccount = 0 houseRentAsPrice = false housePriceAsRent = false housePriceEachSquare = 1000 houseRentPeriod = "never" houseCleanOld = 0 guildHalls = false -- Item usage timeBetweenActions = 200 timeBetweenExActions = 1000 hotkeyAimbotEnabled = true -- Map -- NOTE: storeTrash costs more memory, but will perform alot faster cleaning. mapName = "Norah" mapAuthor = "Komic" randomizeTiles = true storeTrash = true cleanProtectedZones = true mailboxDisabledTowns = "-1" -- Process -- NOTE: defaultPriority works only on Windows and niceLevel on *nix -- coresUsed are seperated by comma cores ids used by server process, -- default is -1, so it stays untouched (automaticaly assigned by OS). defaultPriority = "high" niceLevel = 5 coresUsed = "-1" -- Startup optimizeDatabaseAtStartup = true removePremiumOnInit = true confirmOutdatedVersion = false -- Spells formulaLevel = 5.0 formulaMagic = 1.0 bufferMutedOnSpellFailure = false spellNameInsteadOfWords = false emoteSpells = false -- Outfits allowChangeOutfit = true allowChangeColors = true allowChangeAddons = true disableOutfitsForPrivilegedPlayers = false addonsOnlyPremium = true -- Miscellaneous -- NOTE: promptExceptionTracerErrorBox works only with precompiled support feature, -- called "exception tracer" (__EXCEPTION_TRACER__ flag). dataDirectory = "data/" bankSystem = true displaySkillLevelOnAdvance = false promptExceptionTracerErrorBox = true separateViplistPerCharacter = false maximumDoorLevel = 500 maxMessageBuffer = 4 -- Saving-related -- useHouseDataStorage usage may be found at README. saveGlobalStorage = true useHouseDataStorage = false storePlayerDirection = false -- Loot -- monsterLootMessage 0 to disable, 1 - only party, 2 - only player, 3 - party or player (like Tibia's) checkCorpseOwner = true monsterLootMessage = 3 monsterLootMessageType = 25 -- Ghost mode ghostModeInvisibleEffect = false ghostModeSpellEffects = true -- Limits idleWarningTime = 14 * 60 * 1000 idleKickTime = 15 * 60 * 1000 expireReportsAfterReads = 1 playerQueryDeepness = 2 maxItemsPerPZTile = 0 maxItemsPerHouseTile = 0 -- Premium-related freePremium = false premiumForPromotion = true -- Blessings -- NOTE: blessingReduction* regards items/containers loss. -- eachBlessReduction is how much each bless reduces the experience/magic/skills loss. blessingOnlyPremium = true blessingReductionBase = 30 blessingReductionDecreament = 5 eachBlessReduction = 8 -- Rates -- NOTE: experienceStages configuration is located in data/XML/stages.xml. -- rateExperienceFromPlayers 0 to disable. experienceStages = false rateExperience = 5.0 rateExperienceFromPlayers = 0 rateSkill = 3.0 rateMagic = 3.0 rateLoot = 2.0 rateSpawn = 1 -- Monster rates rateMonsterHealth = 1.0 rateMonsterMana = 1.0 rateMonsterAttack = 1.0 rateMonsterDefense = 1.0 -- Experience from players -- NOTE: min~Threshold* set to 0 will disable the minimum threshold: -- player will gain experience from every lower leveled player. -- max~Threshold* set to 0 will disable the maximum threshold: -- player will gain experience from every higher leveled player. minLevelThresholdForKilledPlayer = 0.9 maxLevelThresholdForKilledPlayer = 1.1 -- Stamina -- NOTE: Stamina is stored in miliseconds, so seconds are multiplied by 1000. -- rateStaminaHits multiplies every hit done a creature, which are later -- multiplied by player attack speed. -- rateStaminaGain is divider of every logged out second, eg: -- 60000 / 3 = 20000 milliseconds, what gives 20 stamina seconds for 1 minute being logged off. -- rateStaminaThresholdGain is divider for the premium stamina. -- staminaRatingLimit* is in minutes. rateStaminaLoss = 1 rateStaminaGain = 3 rateStaminaThresholdGain = 12 staminaRatingLimitTop = 41 * 60 staminaRatingLimitBottom = 14 * 60 rateStaminaAboveNormal = 1.5 rateStaminaUnderNormal = 0.5 staminaThresholdOnlyPremium = true -- Party -- NOTE: experienceShareLevelDifference is float number. -- experienceShareLevelDifference is highestLevel * value experienceShareRadiusX = 30 experienceShareRadiusY = 30 experienceShareRadiusZ = 1 experienceShareLevelDifference = 2 / 3 extraPartyExperienceLimit = 20 extraPartyExperiencePercent = 5 experienceShareActivity = 2 * 60 * 1000 -- Global save -- NOTE: globalSaveHour means like 03:00, not that it will save every 3 hours, -- if you want such a system please check out data/globalevents/globalevents.xml. globalSaveEnabled = false globalSaveHour = 8 shutdownAtGlobalSave = true cleanMapAtGlobalSave = false -- Spawns deSpawnRange = 2 deSpawnRadius = 50 -- Summons maxPlayerSummons = 2 teleportAllSummons = false teleportPlayerSummons = false -- Status ownerName = "SmoOkeR" ownerEmail = "" url = "www.xtibia.com" location = "Brasil" displayGamemastersWithOnlineCommand = false -- Logs -- NOTE: This kind of logging does not work in GUI version. -- For such, please compile the software with __GUI_LOGS__ flag. adminLogsEnabled = false displayPlayersLogging = true prefixChannelLogs = "" runFile = "" outLogName = "" errorLogName = "" truncateLogsOnStartup = false
  14. Seus arquivos DAT e SPR são de que servidor?
  15. CREATE TABLE IF NOT EXISTS `polls` ( `id` int(11) NOT NULL AUTO_INCREMENT, `player_id` int(11) NOT NULL, `poll` varchar(255) NOT NULL, `options` varchar(255) NOT NULL, `timestamp` int(11) NOT NULL, PRIMARY KEY (`id`), FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci ROW_FORMAT=DYNAMIC AUTO_INCREMENT=1 ; INSERT INTO `polls` (`player_id`, `poll`, `options`, `timestamp`) VALUES (2, 'What about this Poll System?', 'Really good|Nice!|Huh?|Worst', UNIX_TIMESTAMP()); CREATE TABLE IF NOT EXISTS `poll_votes` ( `poll_id` int(11) NOT NULL, `votes` varchar(255) NOT NULL, `account_id` varchar(255) NOT NULL, FOREIGN KEY (`poll_id`) REFERENCES `polls` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  16. CREATE TABLE IF NOT EXISTS `poll` ( `id` int(11) NOT NULL AUTO_INCREMENT, `question` varchar(150) , `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `date_start` datetime , `date_end` datetime , `status` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `question` (`question`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `poll_votes` ( `poll_id` int(11) NOT NULL, `votes` varchar(255) NOT NULL, `account_id` varchar(255) NOT NULL, KEY `poll_id` (`poll_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  17. Acesse: localhost/phpmyadmin E escolha a sua database otserv, escolha a aba sql, e cole este script e execute: CREATE TABLE IF NOT EXISTS `news` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(150) DEFAULT '', `body` text, `time` int(11) DEFAULT '0', PRIMARY KEY (`id`) );
  18. Pegue esse configuration.lua e troque-o pelo seu configuration.lua
  19. Pegue esse configuration.lua e troque-o pelo seu configuration.lua
  20. isso é no configuration.lua troque por esse >> configuration.lua
  21. si Na BP de algum player estive com um pokemon que usou os Helds vai da erro.
  22. Marque como melhor resposta para adiciona a tag automaticamente
  23. Só seguir o tutorial e no local que ele está mandando colocar é só ir lá e ir tirando
  24. Ele já está adicionado não? eu mandei você tira o held items é por causa deles que acontece esse erros.
  25. Substitua Por esse <?xml version="1.0" encoding="utf-8"?> <versions> <version value="710" string="7.10" dat="3DFF4B2A" spr="3DFF4AEB" otb="0"/> <version value="730" string="7.30" dat="411A6233" spr="411A6279" otb="0"/> <version value="740" string="7.40" dat="41BF619C" spr="41B9EA86" otb="1"/> <version value="750" string="7.50" dat="42F81973" spr="42F81949" otb="1"/> <version value="755" string="7.55" dat="437B2B8F" spr="434F9CDE" otb="2"/> <version value="760" string="7.60" dat="439D5A33" spr="439852BE" otb="3"/> <version value="770" string="7.70" dat="439D5A33" spr="439852BE" otb="3"/> <version value="780" string="7.80" dat="44CE4743" spr="44CE4206" otb="4"/> <version value="790" string="7.90" dat="457D854E" spr="457957C8" otb="5"/> <version value="792" string="7.92" dat="459E7B73" spr="45880FE8" otb="6"/> <version value="800" string="8.00" dat="467FD7E6" spr="467F9E74" otb="7"/> <version value="810" string="8.10" dat="475D3747" spr="475D0B01" otb="8"/> <version value="811" string="8.11" dat="47F60E37" spr="47EBB9B2" otb="9"/> <version value="820" string="8.20" dat="486905AA" spr="4868ECC9" otb="10"/> <version value="830" string="8.30" dat="48DA1FB6" spr="48C8E712" otb="11"/> <version value="840" string="8.40" dat="493D607A" spr="493D4E7C" otb="12"/> <version value="841" string="8.41" dat="49B7CC19" spr="49B140EA" otb="13"/> <version value="842" string="8.42" dat="49C233C9" spr="49B140EA" otb="14"/> <version value="850" string="8.50 v1" dat="4A49C5EB" spr="4A44FD4E" otb="15"/> <version value="850" string="8.50 v2" dat="4A4CC0DC" spr="4A44FD4E" otb="15"/> <version value="850" string="8.50 v3" dat="4AE97492" spr="4ACB5230" otb="15"/> <version value="852" string="8.52" dat="4A4CC0DC" spr="4A44FD4E" otb="0"/> <version value="853" string="8.53" dat="4AE97492" spr="4ACB5230" otb="0"/> <version value="854" string="8.54 v1" dat="4B1E2CAA" spr="4B1E2C87" otb="16"/> <version value="854" string="8.54 v2" dat="4B0D46A9" spr="4B0D3AFF" otb="16"/> <version value="854" string="8.54 v3" dat="475D3747" spr="5750B01E" otb="16"/> <version value="854" string="8.54 v4" dat="4B28B89E" spr="4B1E2C87" otb="17"/> <version value="855" string="8.55" dat="4B98FF53" spr="4B913871" otb="18"/> <version value="860" string="8.60 v1" dat="4C28B721" spr="4C220594" otb="19"/> <version value="860" string="8.60 v2" dat="4C2C7993" spr="4C220594" otb="20"/> <version value="861" string="8.61" dat="4C6A4CBC" spr="4C63F145" otb="21"/> <version value="862" string="8.62" dat="4C973450" spr="4C63F145" otb="22"/> <version value="870" string="8.70" dat="4CFE22C5" spr="4CFD078A" otb="23"/> <version value="871" string="8.71" dat="4D41979E" spr="4D3D65D0" otb="24"/> <version value="872" string="8.72" dat="4DAD1A1A" spr="4DAD1A32" otb="25"/> <version value="900" string="9.00" dat="4DBAA20B" spr="4DAD1A32" otb="27"/> <version value="910" string="9.10" dat="4E12DAFF" spr="4E12DB27" otb="28"/> <version value="920" string="9.20" dat="4E807C08" spr="4E807C23" otb="29"/> <version value="940" string="9.40" dat="4EE71DE5" spr="4EE71E06" otb="30"/> <version value="944" string="9.44 v0" dat="4F0EEFBB" spr="4F0EEFEF" otb="31"/> <version value="944" string="9.44 v1" dat="4F105168" spr="4F1051D7" otb="32"/> <version value="944" string="9.44 v2" dat="4F16C0D7" spr="4F1051D7" otb="33"/> <version value="944" string="9.44 v3" dat="4F3131CF" spr="4F3131F6" otb="34"/> <version value="946" string="9.46" dat="4F75B7AB" spr="4F5DCEF7" otb="35"/> <version value="950" string="9.50" dat="4F75B7AB" spr="4F75B7CD" otb="36"/> <version value="952" string="9.52" dat="4F857F6C" spr="4F857F8E" otb="37"/> <version value="953" string="9.53" dat="4FA11252" spr="4FA11282" otb="38"/> <version value="954" string="9.54" dat="4FD5956B" spr="4FD595B7" otb="39"/> <version value="960" string="9.60" dat="4FFA74CC" spr="4FFA74F9" otb="40"/> <version value="961" string="9.61" dat="50226F9D" spr="50226FBD" otb="41"/> <version value="963" string="9.63" dat="503CB933" spr="503CB954" otb="42"/> <version value="970" string="9.70" dat="5072A490" spr="5072A567" otb="43"/> <version value="980" string="9.80" dat="50C70674" spr="50C70753" otb="44"/> <version value="981" string="9.81" dat="50D1C5B6" spr="50D1C685" otb="45"/> <version value="982" string="9.82" dat="512CAD09" spr="512CAD68" otb="46"/> <version value="983" string="9.83" dat="51407B67" spr="51407BC7" otb="47"/> <version value="985" string="9.85" dat="51641A1B" spr="51641A84" otb="48"/> <version value="986" string="9.86" dat="5170E904" spr="5170E96F" otb="49"/> <version value="1010" string="10.10" dat="51E3F8C3" spr="51E3F8E9" otb="50"/> <version value="1020" string="10.20" dat="5236F129" spr="5236F14F" otb="51"/> <version value="1021" string="10.21" dat="526A5068" spr="526A5090" otb="52"/> <version value="1030" string="10.30" dat="52A59036" spr="52A5905F" otb="53"/> <version value="1031" string="10.31" dat="52AED581" spr="52AED5A7" otb="54"/> <version value="1032" string="10.32" dat="52D8D0A9" spr="52D8D0CE" otb="0"/> <version value="1034" string="10.34" dat="52E74AB5" spr="52E74ADA" otb="0"/> <version value="1035" string="10.35" dat="52FDFC2C" spr="52FDFC54" otb="55"/> <version value="1036" string="10.36" dat="53159C7E" spr="53159CA9" otb="0"/> <version value="1037" string="10.37" dat="531EA82E" spr="531EA856" otb="0"/> <version value="1038" string="10.38" dat="5333C199" spr="5333C1C3" otb="0"/> <version value="1039" string="10.39" dat="535A50AD" spr="535A50D5" otb="0"/> <version value="1040" string="10.40" dat="5379984D" spr="53799876" otb="0"/> <version value="1041" string="10.41" dat="5383504E" spr="53835077" otb="0"/> <version value="1050" string="10.50" dat="53B6460E" spr="53B64639" otb="0"/> <version value="1051" string="10.51" dat="53C8CC17" spr="53C8CC3F" otb="0"/> </versions>

Informação Importante

Confirmação de Termo