Ir para conteúdo

KyureJL

Membro
  • Registro em

  • Última visita

Tudo que KyureJL postou

  1. .Qual servidor ou website você utiliza como base? tfs 0.3.6 Qual o motivo deste tópico? Nas spr do pxg tem essas outfit animadas, como elas funcionam? precisa de algum script para mudar para ela em determinada situação? Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  2. a melhor versão é 8.60 tfs 0.4 rev 3997, as old versions são mais utilizadas pois já foram feitos vários scripts para elas nas infinitas bases disponibilizadas, e teria que ter muito conhecimento sobre luascript para converter os scripts para as tfs mais recentes ou otx e otservbr
  3. .Qual servidor ou website você utiliza como base? Qual o motivo deste tópico? Eu gostaria de saber se a catch rate para essas balls em especifico só vai ir para "8" se for jogada em um pokemon do type dela e se for jogada em um pokemon que não é do type dela se vai para "1" ou algo assim Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: [15677] = {cr = 8, on = 313, off = 314, ball = {16181, 16204}, send = 72, typeee = "magu", boost = "0", type = {"fire", "ground"}}, [15676] = {cr = 8, on = 316, off = 317, ball = {16182, 16205}, send = 73, typeee = "sora", boost = "0", type = {"ice", "flying"}}, [15678] = {cr = 8, on = 320, off = 321, ball = {16183, 16206}, send = 74, typeee = "yume", boost = "0", type = {"normal", "psychic"}}, [15680] = {cr = 8, on = 322, off = 323, ball = {16184, 16207}, send = 75, typeee = "dusk", boost = "0", type = {"rock", "fighting"}}, [15673] = {cr = 8, on = 331, off = 332, ball = {16187, 16210}, send = 78, typeee = "tale", boost = "0", type = {"dragon", "fairy"}}, [15674] = {cr = 8, on = 334, off = 335, ball = {16188, 16211}, send = 79, typeee = "moon", boost = "0", type = {"dark", "ghost"}}, [15675] = {cr = 8, on = 337, off = 338, ball = {16189, 16212}, send = 80, typeee = "net", boost = "0", type = {"bug", "water"}}, [15679] = {cr = 8, on = 343, off = 344, ball = {16191, 16214}, send = 82, typeee = "premier", boost = "0", type = {"rock", "fighting"}}, [15681] = {cr = 8, on = 346, off = 347, ball = {16192, 16215}, send = 83, typeee = "tinker", boost = "0", type = {"electric", "steel"}}, Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  4. @Zwarttyp Obrigado
  5. .Qual servidor ou website você utiliza como base? Qual o motivo deste tópico? Gostaria de modificar a chance de captura de cada pokemon, eu vi q tem esses arquivos dentro da Pokemon Statistics: Abra Catches.txt 52 mais não sei ao certo se é por ai que modifica e se é eu gostaria q me ensinassem como funciona exemplo "quanto maior o valor menor a chance de catch" Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  6. @samlecter perfeito man, obrigado.
  7. .Qual servidor ou website você utiliza como base? Qual o motivo deste tópico? Eu gostaria de modificar o effect dessa spell porem eu não sei como, se puderem me ajudar agradeço. eu já tentei local effect = 7 e effect = 7, porem continua com a effect original Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: elseif spell == "Fireball" then doSendDistanceShoot(getThingPosWithDebug(cid), getThingPosWithDebug(target), (isMega(cid) and getMegaID(cid) == "X") and 57 or 3) effect = 7 addEvent(doDanoWithProtect, 200, cid, FIREDAMAGE, getThingPosWithDebug(target), waba, min, max, (isMega(cid) and getMegaID(cid) == "X") and 302 or 5) Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  8. .Qual servidor ou website você utiliza como base? Qual o motivo deste tópico? Eu gostaria q desse para colocar o lvl que recebe a outfit do lado do ID dela, do jeito que está, a cada 25 lvls vc libera uma outfit e eu queria ganhar a outfit a cada 25, 50, 100 lvls OBS IMPORTANTE: NÃO QUERO QUE MUDE A VOCAÇÃO Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: local saga = { -- [ID DA VOCATION] = { ID DAS OUTFITS EM ORDEM } [1] = {2,3,4,5,6,7,8,9,10,11,12}, -- Goku [2] = {}, -- Vegeta } local level = 25 -- Limite para liberar uma saga nova function onSay(cid, words, param, channel) if exhaustion.check(cid, 120) == TRUE then doPlayerSendCancel(cid, "You are exhausted.") doSendMagicEffect(getCreaturePosition(cid), 3) return TRUE end if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Digite o número da saga que você deseja.") exhaustion.set(cid, 120, 0.5) return true end if not saga[getPlayerVocation(cid)] then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Voce nao pode trocar de saga.") exhaustion.set(cid, 120, 0.5) return true end local t = string.explode(param, ",") if(t[2]) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Could not understand.") return true end if not (tonumber(t[1])) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Digite o número da saga que você deseja.") exhaustion.set(cid, 120, 0.5) return true end if tonumber(t[1]) > #saga[getPlayerVocation(cid)] or tonumber(t[1]) < 1 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Essa saga não existe.") exhaustion.set(cid, 120, 0.5) return true end if getPlayerLevel(cid) >= (tonumber(t[1])*level) then doCreatureChangeOutfit(cid, {lookType = saga[getPlayerVocation(cid)][tonumber(t[1])]}) doSendMagicEffect(getThingPos(cid), saga[getPlayerVocation(cid)].effect) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Voce escolheu uma nova saga!") doPlayerSay(cid, "Saga!!", TALKTYPE_ORANGE_1) exhaustion.set(cid, 120, 0.5) else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Desculpe, você precisa de level "..(tonumber(t[1]) * level).." usar essa saga.") end return true end Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  9. .Qual servidor ou website você utiliza como base? TFS 0.4 Qual o motivo deste tópico? alguem teria um script q aumenta o CAP do player nos "status" da backpack, ai seria backpack X aumenta 1000 de CAP, backpack Y aumenta 5000 de cap Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  10. obrigado @Nolis
  11. @Nolis link off, pode reupar por favor?
  12. Alguem ta conseguindo abrir o mapa no RME? fica dando unsupported client version (8)
  13. .Qual servidor ou website você utiliza como base? TFS Qual o motivo deste tópico? Onde fica a ID do Effect da spell no script? Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_HITCOLOR, COLOR_ORANGE) setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatFormula(combat1, COMBAT_FORMULA_LEVELMAGIC, -15.0, -1600, -15.0, -1800) arr1 = { {3} } local area1 = createCombatArea(arr1) setCombatArea(combat1, area1) local function onCastSpell1(parameters) return isPlayer(parameters.cid) and doCombat(parameters.cid, combat1, parameters.var) end function onCastSpell(cid, var) local waittime = 4 -- Tempo de exhaustion local storage = 7224 if exhaustion.check(cid, storage) then doPlayerSendChannelMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Aguarde ".. exhaustion.get(cid, storage) .. " segundos para usar o jutsu novamente.", TALKTYPE_CHANNEL_O, CHANNEL_SPELL) return false end local parameters = { cid = cid, var = var} local target = getCreatureTarget(cid) -- efeito no alvo local pos = getCreaturePosition(target) local poz = getCreaturePosition(cid) -- effeito no caster addEvent(doSendDistanceShoot, 1, getCreaturePosition(cid), {x = poz.x, y = poz.y-2, z = poz.z}, 46) addEvent(doSendDistanceShoot, 400, {x = poz.x, y = poz.y-2, z = poz.z}, pos, 136) addEvent(doSendMagicEffect, 300, {x = poz.x+1, y = poz.y-1, z = poz.z}, 186) addEvent(doSendMagicEffect, 600, {x = pos.x+2, y = pos.y, z = pos.z}, 235) addEvent(doSendMagicEffect, 1600, {x = pos.x+1, y = pos.y+1, z = pos.z}, 82) addEvent(onCastSpell1, 600, parameters) exhaustion.set(cid, storage, waittime) return TRUE end Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  14. .Qual servidor ou website você utiliza como base? OTX 8.6 NTO Hard base Qual o motivo deste tópico? Quando tento entrar com o account manager fica carregando infinitamente e aparece aquilo no console q ele logou e deslogou e eu n sei se é oq está causando o problema mais estou com um erro ao entrar nas contas no site Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: Erro no site ao tentar entrar nas contas Deprecated: Function get_magic_quotes_gpc() is deprecated in C:\xampp\htdocs\system\load.init.php on line 47Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\xampp\htdocs\pages\accountmanagement.php on line 1165Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\xampp\htdocs\pages\accountmanagement.php on line 1247 Error occured! Error ID:More info: Invalid field name format.File: C:\xampp\htdocs\classes/database_mysql.php Line: 30File: C:\xampp\htdocs\classes/databaselist.php Line: 31File: C:\xampp\htdocs\classes/databaselist.php Line: 155File: C:\xampp\htdocs\pages/accountmanagement.php Line: 373File: C:\xampp\htdocs\system/load.page.php Line: 7File: C:\xampp\htdocs/index.php Line: 37 Config.lua accountManager = true namelockManager = true newPlayerChooseVoc = true newPlayerSpawnPosX = 1043 newPlayerSpawnPosY = 1049 newPlayerSpawnPosZ = 5 newPlayerTownId = 1 newPlayerLevel = 1 newPlayerMagicLevel = 1 generateAccountNumber = false stairhopDelay = 1 * 1000 blessingOnlyPremium = false fragsLimit = 24 * 60 * 60 fragsSecondLimit = 1 * 24 * 60 * 60 fragsThirdLimit = 1 * 24 * 60 * 60 fragsToRedSkull = 10 fragsSecondToRedSkull = 60 fragsThirdToRedSkull = 90 redSkullLength = 1 * 24 * 60 * 60 fragsToBlackSkull = 15 fragsSecondToBlackSkull = 65 fragsThirdToBlackSkull = 95 blackSkulledDeathHealth = 40 blackSkulledDeathMana = 0 blackSkullLength = 2 * 24 * 60 * 60 useBlackSkull = true notationsToBan = 3 warningsToFinalBan = 4 warningsToDeletion = 5 banLength = 7 * 24 * 60 * 60 killsBanLength = 7 * 24 * 60 * 60 finalBanLength = 30 * 24 * 60 * 60 ipBanLength = 1 * 24 * 60 * 60 fragsToBanishment = 25 fragsSecondToBanishment = 70 fragsThirdToBanishment = 99 worldId = 0 worldType = "open" hotkeyAimbotEnabled = true protectionLevel = 30 killsToRedSkull = 10 killsToBlackSkull = 15 pzLocked = 30 * 1000 removeChargesFromRunes = false removeChargesFromPotions = false removeWeaponAmmunition = false removeWeaponCharges = false timeToDecreaseFrags = 24 * 60 * 60 * 1000 whiteSkullTime = 10 * 60 * 1000 stairJumpExhaustion = 1 * 1000 experienceByKillingPlayers = true rateExperienceFromPlayers = 2 expFromPlayersLevelRange = 40 skipItemsVersionCheck = true pushCreatureDelay = 1 * 1500 ingameGuildManagement = false elfProtectionTarget = true useFragHandler = true advancedFragList = false ip = "127.0.0.1" bindOnlyGlobalAddress = false loginProtocolPort = 7171 gameProtocolPort = 7172 statusProtocolPort = 7171 maxPlayers = 200 motd = "Bem-vindo ao NTO Hard Online !" onePlayerOnlinePerAccount = false allowClones = false serverName = "Hard" statusTimeout = 5 * 1000 replaceKickOnLogin = true maxPacketsPerSecond = 50 clientVersionMin = 860 clientVersionMax = 860 clientVersionStr = "Only clients with protocol 8.60 allowed!" deathLosePercent = 0 housePriceEachSquare = 7500 houseRentPeriod = "monthly" timeBetweenActions = 1000 timeBetweenExActions = 1000 mapName = "forgotten.otbm" mapAuthor = "Eros" sqlType = "mysql" mysqlHost = "localhost" mysqlUser = "root" mysqlPass = "" mysqlDatabase = "ntohard" mysqlPort = 3306 mysqlSock = "" passwordType = "sha1" sqlHost = "localhost" sqlPort = 3306 sqlUser = "root" sqlPass = "" sqlDatabase ="ntohard" sqlFile = "ntohard.s3db" sqlKeepAlive = 0 mysqlReadTimeout = 0 mysqlWriteTimeout = 0 mysqlReconnectionAttempts = 3 encryptionType = "sha1" allowChangeOutfit = true freePremium = true kickIdlePlayerAfterMinutes = 15 maxMessageBuffer = 5 emoteSpells = true classicEquipmentSlots = false allowWalkthrough = true classicAttackSpeed = false experienceStages = true rateExp = 1 rateSkill = 4 rateLoot = 1 rateMagic = 4 rateSpawn = 1 formulaLevel = 3.5 formulaMagic = 3.5 rateMonsterHealth = 1.0 rateMonsterAttack = 1.0 rateMonsterDefense = 1.0 deSpawnRange = 2 deSpawnRadius = 50 staminaSystem = false warnUnsafeScripts = true convertUnsafeScripts = true defaultPriority = "high" startupDatabaseOptimization = true globalSaveEnabled = true globalSaveHour = 5 globalSaveMinute = 5 shutdownAtGlobalSave = true cleanMapAtGlobalSave = false closeInstanceOnShutdown = true buyableAndSellableHouses = true houseNeedPremium = true bedsRequirePremium = true levelToBuyHouse = 100 housesPerAccount = 1 houseRentAsPrice = true housePriceAsRent = true housePriceEachSquare = 45000 houseRentPeriod = "monthly" houseCleanOld = 0 guildHalls = true houseSkipInitialRent = true houseProtection = true ownerName = "KyureJL" ownerEmail = "" url = "www.nto-hard.com" location = "Brazil" Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  15. KyureJL postou uma resposta no tópico em Suporte OTServer Derivados
    .Qual servidor ou website você utiliza como base? Qual o motivo deste tópico? Estou tentando abrir o mapa do NTO Hard no RME e da os erros da imagem, eu coloquei o items.obd e o items.xml na 860 do data do RME e selecionei a pasta do client do NTO Hard e o mapa no RME normal e extended e o erro é o mesmo nos 2 Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. @LeoTK Eu vi que você comentou que ia usar umas partes do mapa, vc poderia me ajudar pfv?
  16. @Belmont $config['site']['useServerConfigCache'] = false;
  17. @Belmont nos tutoriais que eu vi falaram para colocar a pasta do server ali ue
  18. @Belmont # Account Maker Config $config['site']['serverPath'] = 'C:/Users/#####/Desktop/mynto/[BASE] NTO Hard/NTOHard_server/'; $config['site']['useServerConfigCache'] = false; $config['site']['worlds'] = array(0 => 'Gesior ACC'); $towns_list[0] = array(1 => 'Konoha');
  19. Alguem pode postar os arquivos do site desbugados? da erro ao tentar criar conta e mais um monte de erro ao tentar logar Criar conta: Warning: invalid argument supplied for foreach() in C;\xampp\htdocs\classes\website.php on line 222 Logar: Warning: Invalid argument supplied for foreach() in C:\xampp\htdocs\classes\configlua.php on line 54Deprecated: Function get_magic_quotes_gpc() is deprecated in C:\xampp\htdocs\system\load.init.php on line 47Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\xampp\htdocs\pages\accountmanagement.php on line 1165Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\xampp\htdocs\pages\accountmanagement.php on line 1247 Error occured! Error ID:More info: Invalid field name format.File: C:\xampp\htdocs\classes/database_mysql.php Line: 30File: C:\xampp\htdocs\classes/databaselist.php Line: 31File: C:\xampp\htdocs\classes/databaselist.php Line: 155File: C:\xampp\htdocs\pages/accountmanagement.php Line: 373File: C:\xampp\htdocs\system/load.page.php Line: 7File: C:\xampp\htdocs/index.php Line: 37
  20. Configurei o site porem quando eu tento entrar da esse erro: Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting '-' or identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in C:\xampp\htdocs\config\config.php on line 25 E quando eu tento atk os monstros parece q sla eles n levam dano mais morrem e eles n atk
  21. .Qual servidor ou website você utiliza como base? The Forgotten Server a mais recente versão na github Qual o motivo deste tópico? Gostaria de saber como converter um script de spell da 8.6 para a 10.98, eu já o coloquei no object builder. Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, 67) setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, 2) setCombatParam(combat, COMBAT_PARAM_CREATEITEM, 4177) local arr = { { 0, 1, 1, 1, 1, 0. }, { 1, 1, 0, 0, 1, 1. }, { 1, 0, 0, 0, 0, 1, }, { 1, 0, 0, 2, 0, 1, }, { 1, 0, 0, 0, 0, 1, }, { 1, 1, 0, 0, 1, 1, }, { 0, 1, 1, 1, 1, 0, }, } local area = createCombatArea(arr) setCombatArea(combat, area) function onCastSpell(cid, var) local waittime = 120 -- Tempo de exhaustion local storage = 115818 if exhaustion.check(cid, storage) then doPlayerSendCancel(cid, "You are exhausted") return false end exhaustion.set(cid, storage, waittime) return doCombat(cid, combat, var) end Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  22. @TrojanRat Obrigado, era isso mesmo, esqueci de por o sexo feminino das outfits.
  23. .Qual servidor ou website você utiliza como base? Qual o motivo deste tópico? Está surgindo algum erro? Se sim coloque-o aqui. Você tem o código disponível? Se tiver publique-o aqui: Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
  24. @sdnjaks sabe converter esse script para a 10.98 do forgotten server?
  25. Obrigado @Spooky Ghost @sdnjaks por serem ótimas pessoas e me ajudarem

Informação Importante

Confirmação de Termo