Ir para conteúdo

fantomdruid

Membro
  • Registro em

  • Última visita

Tudo que fantomdruid postou

  1. Pessoal bom dia, alguém tem esta pagina de characters.php que possa estar disponibilizando? ou se possível ter o site completo! Você passa o mouse por cima de um item e mostra seu nome e atributos que ele possui
  2. só mexendo no items.xml não funciona
  3. Items personalizados, que da pra uar como backpack como exemplo o baiak-ilusion eles usam uma surprise bah
  4. Pessoal boa noite, estou tentando colocar skills magic level distabnce protection all em auma backback só que não estou conseguindo alguem pode me ajudar?
  5. fantomdruid postou uma resposta no tópico em Suporte Tibia OTServer
    Boa noite galera do TK, gostaria de saber se alguém tem algum script de Reflect System funcional e que possa me passar? Eu achei um aqui no tópico só que não estou conseguindo usar segue o link: Fico aguardando um retorno de vocês. Agradeço desde já!
  6. Pessoal bom dia, preciso da versão do tibia 11 em zip file onde eu só preciso executar o tibia, alguém pode me ajudar por favor ?
  7. fantomdruid postou uma resposta no tópico em Suporte Tibia OTServer
    Cara eu não sei
  8. fantomdruid postou uma resposta no tópico em Suporte Tibia OTServer
    Eu baixei esse server e ja veio dando esse erro
  9. fantomdruid postou uma resposta no tópico em Suporte Tibia OTServer
    Alguem pode me ajudar com o seguinte erro mysql_real_query(): SELECT `guild_id` FROM `castle_dono` WHERE `guild_id` > 0 - MYSQL ERROR: Table 'baiak.castle_dono' doesn't exist (1146) Grato desde já.
  10. Então Comedinha não é erro no elfbot, porque em outros Otserver funciona normal.
  11. Boa noite galerinha do TK, gostaria de uma ajuda de vocês urgente, meu otserver o NPC de Loot não esta aceitando script 24h, NÃO CONSEGUE VENDER O LOOT SOZINHO, e tem muitos jogadores me cobrando isso, alguem poderia me ajudar ?
  12. fantomdruid postou uma resposta no tópico em Suporte Tibia OTServer
    Bom dia galerinha do TK gostaria de saber se alguem poderia me disponibilizar um monster editor 8.6 ficarei agradecido!
  13. Boa noite galerinha do Tibia King, então queria fazer um pedido para vocês quem souber criar. Um seguinte Sistema. Um dia definido por min, ou um comando que eu de abra o evento. o sistema é o seguinte, quando o evento abrir, diversos players entraram em uma "arena" onde nascera um boss, e tipo o player que der o maior hit ganha o evento com a premiação de ter um lugar exclusivo para ele upar. alguem poderia me ajudar ? Distro OTx
  14. Galera, alguém pode me ajudar? Gostaria de um sistema, que ao entrar no trainer, o jogador tem 'x' minutos para se mover, caso contrario ele será teleportado para 'n' posição. Não basta apenas girar, ou dar use em item e tals, ele tem que se mexer literalmente, sair do piso e entrar novamente. Versão: TFS 1.2 Gostaria também do treiner (criatura) na qual eu pudesse configurar sua aparência, não seria uma criatura, mas deixaria ele na forma de um item por exemplo. Agradeço a quem se dispor a ajudar.
  15. me ajuda Warning: Invalid argument supplied for foreach() inC:\xampp\htdocs\layouts\tibiacom\widget_rank.phpon line 51
  16. Boa tarde galerinha do Tk, estou com um seguindo problema no meu otserver com o comando !frags Quando o Player que esta PK ele consegue usar o comando !frags normal, mais quando o player pega REDSKULL e fala !frags da o seguindo erro na distro [Warning - ProtocolGame::sendFYIBox] Trying to send an empty or too huge message. Alguem poderia me ajudar ? No Meu Config.lua está assim: Talkactions/Scripts/frags local config = { useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')), advancedFragList = getBooleanFromString(getConfigValue('advancedFragList')) } function onSay(cid, words, param, channel) if(not config.useFragHandler) then return false end local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = { name = result:getDataString("name"), level = result:getDataInt("level"), date = result:getDataInt("date") } if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } if(config.advancedFragList) then local result = "Frags gained today: " .. size.day .. "." if(size.day > 0) then for _, content in ipairs(contents.day) do result = result .. "\n* " .. os.date("%d %B %Y %X at ", content.date) .. content.name .. " on level " .. content.level end result = result .. "\n" end result = result .. "\nFrags gained this week: " .. (size.day + size.week) .. "." if(size.week > 0) then for _, content in ipairs(contents.week) do result = result .. "\n* " .. os.date("%d %B %Y %X at ", content.date) .. content.name .. " on level " .. content.level end result = result .. "\n" end result = result .. "\nFrags gained this month: " .. (size.day + size.week + size.month) .. "." if(size.month > 0) then for _, content in ipairs(contents.month) do result = result .. "\n* " .. os.date("%d %B %Y %X at ", content.date) .. content.name .. " on level " .. content.level end result = result .. "\n" end local skullEnd = getPlayerSkullEnd(cid) if(skullEnd > 0) then result = result .. "\nYour " .. (getCreatureSkullType(cid) == SKULL_RED and "red" or "black") .. " skull will expire at " .. os.date("%d %B %Y %X", skullEnd) end doPlayerPopupFYI(cid, result) else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You currently have " .. size.day .. " frags today, " .. (size.day + size.week) .. " this week and " .. (size.day + size.week + size.month) .. " this month.") if(size.day > 0) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Last frag at " .. os.date("%d %B %Y %X", contents.day[1].date) .. " on level " .. contents.day[1].level .. " (" .. contents.day[1].name .. ").") end local skullEnd = getPlayerSkullEnd(cid) if(skullEnd > 0) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Your " .. (getCreatureSkullType(cid) == SKULL_RED and "red" or "black") .. " skull will expire at " .. os.date("%d %B %Y %X", skullEnd)) end end return true end
  17. Vlw cara!!!!!! Funcionou perfeitamente *____*
  18. @fireelement, Eu já tinha chegado até essa parte,o problema está nessa linha: doTargetCombatHealth(attacker, cid, combat, -primaryDamage, -primaryDamage, 255) Ele não da erro mas buga o client
  19. Oi pessoal, blz? Alguem poderia me ajudar a converter a parte do creaturescripts do dodge system para tfs 1.1? Ai está: local lvldodge = 48902 local percent = 0.5 function onStatsChange(cid, attacker, type, combat, value) if type == STATSCHANGE_HEALTHLOSS and isCreature(attacker) then if (getPlayerStorageValue(cid, lvldodge)*3) >= math.random (0,1000) then value = math.ceil(value*(percent)) doTargetCombatHealth(attacker, cid, combat, -value, -value, 255) doSendAnimatedText(getCreaturePos(cid), "DODGE", 6) return false end end return true end Dou rep+ para quem puder ajudar, obrigado!
  20. do otserver ? accountManager = true namelockManager = false newPlayerChooseVoc = true newPlayerSpawnPosX = 72 newPlayerSpawnPosY = 25 newPlayerSpawnPosZ = 8 newPlayerTownId = 2 newPlayerLevel = 8 newPlayerMagicLevel = 0 generateAccountNumber = false redSkullLength = 5 * 24 * 60 * 60 blackSkullLength = 10 * 24 * 60 * 60 dailyFragsToRedSkull = 6 weeklyFragsToRedSkull = 15 monthlyFragsToRedSkull = 30 dailyFragsToBlackSkull = 8 weeklyFragsToBlackSkull = 25 monthlyFragsToBlackSkull = 40 dailyFragsToBanishment = 99999999 weeklyFragsToBanishment = 99999999999 monthlyFragsToBanishment = 99999999999999999999 blackSkulledDeathHealth = 40 blackSkulledDeathMana = 0 useBlackSkull = true useFragHandler = true advancedFragList = true notationsToBan = 3 warningsToFinalBan = 4 warningsToDeletion = 5 banLength = 2 * 24 * 60 * 60 killsBanLength = 2 * 24 * 60 * 60 finalBanLength = 2 * 24 * 60 * 60 ipBanishmentLength = 2 * 24 * 60 * 60 broadcastBanishments = true maxViolationCommentSize = 200 violationNameReportActionType = 2 autoBanishUnknownBytes = false worldType = "open" protectionLevel = 50 pvpTileIgnoreLevelAndVocationProtection = true pzLocked = 60 * 1000 huntingDuration = 60 * 1000 criticalHitChance = 7 criticalHitMultiplier = 1 displayCriticalHitNotify = false removeWeaponAmmunition = false removeWeaponCharges = false removeRuneCharges = false whiteSkullTime = 2 * 60 * 1000 noDamageToSameLookfeet = false showHealingDamage = true showHealingDamageForMonsters = true 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 worldId = 0 ip = "127.0.0.1" bindOnlyConfiguredIpAddress = false loginPort = 7171 gamePort = 7172 adminPort = 7171 statusPort = 7171 loginTries = 10 retryTimeout = 5 * 1000 loginTimeout = 60 * 1000 maxPlayers = 1000 motd = "Bem Vindo ao Baiak NoDelay." displayOnOrOffAtCharlist = false onePlayerOnlinePerAccount = true allowClones = false serverName = "Baiak NoDelay" loginMessage = "Bem Vindo ao Baiak NoDelay." statusTimeout = 5 * 60 * 1000 replaceKickOnLogin = true forceSlowConnectionsToDisconnect = false loginOnlyWithLoginServer = false premiumPlayerSkipWaitList = true sqlType = "mysql" sqlHost = "127.0.0.1" sqlPort = 3306 sqlUser = "root" sqlPass = "MINHASENHA" sqlDatabase = "baiak2" sqlFile = "otserv.s3db" sqlKeepAlive = 1 mysqlReadTimeout = 10 mysqlWriteTimeout = 10 encryptionType = "sha1" deathListEnabled = true deathListRequiredTime = 2 * 60 * 1000 deathAssistCount = 19 maxDeathRecords = 5 ingameGuildManagement = true levelToFormGuild = 8 premiumDaysToFormGuild = 0 guildNameMinLength = 4 guildNameMaxLength = 20 highscoreDisplayPlayers = 10 updateHighscoresAfterMinutes = 15 buyableAndSellableHouses = true houseNeedPremium = true bedsRequirePremium = true levelToBuyHouse = 150 housesPerAccount = 0 houseRentAsPrice = false housePriceAsRent = false housePriceEachSquare = 100000 houseRentPeriod = "never" houseCleanOld = 0 guildHalls = true timeBetweenActions = 200 timeBetweenExActions = 1000 checkCorpseOwner = true hotkeyAimbotEnabled = true maximumDoorLevel = 500 mapName = "Baiak Barao.otbm" mapAuthor = "Diabolic" randomizeTiles = true useHouseDataStorage = false storeTrash = true cleanProtectedZones = true mailboxDisabledTowns = "-1" defaultPriority = "high" niceLevel = 5 coresUsed = "-1" optimizeDatabaseAtStartup = true removePremiumOnInit = true confirmOutdatedVersion = false maxMessageBuffer = 7 bufferMutedOnSpellFailure = false dataDirectory = "data/" allowChangeOutfit = true allowChangeColors = true allowChangeAddons = true disableOutfitsForPrivilegedPlayers = false bankSystem = true saveGlobalStorage = true displaySkillLevelOnAdvance = false spellNameInsteadOfWords = false emoteSpells = true promptExceptionTracerErrorBox = true storePlayerDirection = false monsterLootMessage = 3 monsterLootMessageType = 25 separateViplistPerCharacter = false ghostModeInvisibleEffect = false ghostModeSpellEffects = true idleWarningTime = 14 * 60 * 1000 idleKickTime = 15 * 60 * 1000 expireReportsAfterReads = 1 playerQueryDeepness = 2 maxItemsPerPZTile = 0 maxItemsPerHouseTile = 0 freePremium = true premiumForPromotion = true blessingOnlyPremium = false blessingReductionBase = 30 blessingReductionDecreament = 5 eachBlessReduction = 8 experienceStages = true rateExperience = 90.0 rateExperienceFromPlayers = 0 rateSkill = 100.0 rateMagic = 60.0 rateLoot = 8.0 rateSpawn = 2 rateMonsterHealth = 1.0 rateMonsterMana = 1.0 rateMonsterAttack = 1.0 rateMonsterDefense = 1.0 minLevelThresholdForKilledPlayer = 0.9 maxLevelThresholdForKilledPlayer = 1.1 rateStaminaLoss = 1 rateStaminaGain = 3 rateStaminaThresholdGain = 12 staminaRatingLimitTop = 41 * 60 staminaRatingLimitBottom = 14 * 60 rateStaminaAboveNormal = 1.5 rateStaminaUnderNormal = 0.5 staminaThresholdOnlyPremium = true experienceShareRadiusX = 30 experienceShareRadiusY = 30 experienceShareRadiusZ = 1 experienceShareLevelDifference = 2 / 3 extraPartyExperienceLimit = 20 extraPartyExperiencePercent = 5 experienceShareActivity = 2 * 60 * 1000 globalSaveEnabled = false globalSaveHour = 1 shutdownAtGlobalSave = false cleanMapAtGlobalSave = false deSpawnRange = 2 deSpawnRadius = 50 maxPlayerSummons = 2 teleportAllSummons = false teleportPlayerSummons = false ownerName = "Diabolic" ownerEmail = "diabolic@nodelay.com.br" url = "http://thyrania.nodelay.com.br" location = "Brazil" displayGamemastersWithOnlineCommand = false adminLogsEnabled = true displayPlayersLogging = true prefixChannelLogs = "" runFile = "" outLogName = "" errorLogName = "" truncateLogsOnStartup = false
  21. Boa Tarde galerinha do Tk, Baixei o seguinte site no forum http://www.tibiaking.com/forum/topic/12381-gesior-acc-maker-para-tibia-86020/ e quando eu extrai ele para pasta Htdocs deu o erro que esta abaixo, alguem poderia estar me ajudando ? sou iniciante em mexer com websites se alguem poder me ajudar ficaria agradecido. se puderem me adicionar no skype melhor ainda: Leozinho_firmeza Warning: parse_ini_file(F:/Disco D/Andressa - Imagens/Anderson/Arquivos Que Eu Mais Uso/The End V0.6/Baiak Extreme(OTProjects)/config.lua) [function.parse-ini-file]: failed to open stream: No such file or directory in C:\xampp\htdocs\config-and-functions.php on line 13 Database error. Unknown database type in F:/Disco D/Andressa - Imagens/Anderson/Arquivos Que Eu Mais Uso/The End V0.6/Baiak Extreme(OTProjects)/config.lua . Must be equal to: "mysql" or "sqlite". Now is: ""
  22. Vou estar baixando para ver se dá certo, se der certo tem meu +rep para essas duas respotas
  23. Boa noite Galerinha do Tk, fui instalar o tibiaauto 10.76, e deu o seguinte erro Alguem Poderia estar me ajudando se não conseguir ver a imagem aqui esta o link http://www.4shared.com/photo/d0aFmK8Wba/tibia_auto.html?

Informação Importante

Confirmação de Termo