Ir para conteúdo

gustavoMtek

Cavaleiro
  • Total de itens

    175
  • Registro em

  • Última visita

  • Dias Ganhos

    1

Tudo que gustavoMtek postou

  1. aonde eu uso essa funçao? quero que os skills subao sozinho e nao pare em um determinado skill
  2. To com um probleMAO !!!! Já baixei uns 10 servidores e todos com o mesmo problema !!!! os skills ( club,sword,axe,shield,distance,magic level ) Todos os skills para em um determinado valor !!! eles nem chegao a resetar quando pega 250, os skills nao upar para o 203 ... eles para no 202 !!! como eu arrumo isso???? tou criando um server de xp alta e to precisando que alguem que me ajude mais rapido possivel !!! sou 10 Rep para quem me ajudar
  3. sky... dps tu edita essas coisas do mapa e dos itens :X primeiro faz um serv sem debug e sem erros para que as pessoas podem baixa e editar com elas querem
  4. "pega de boa ums 150 " depende qual serv vc quer colocar no seu servidor misterrox... esse que vc quer contratar de R$ 55,00 é bom para baiak e suporta apenas uns 120 +- sem lagg ou travadas, mais se for um global tem de ser 2,5 gb de ram pra mais
  5. Scan: Que scan? eu ri rapaz, todo mundo me conhece aqui ;x Avast paro o download na hora ... TEM VIRUS
  6. adc ai gustavomartinst0@hotmail.com vou usar seu server para monta o meu e vou posta os bug que eu achar para voce !! PS: usa o mapa/templo do seu outro serv o Extreme Baiak Yourots... ele é melhor
  7. ele ta ligando e esta estável, só que da esse error e não sei oque é, não altero nada até agora que eu percebi ! como tira isso? acho inútil !! 22:20 fist fighting rate changed from 15000x to 9000x. YOUR RATES: [ Magic Level: 15000x || Fist: 9000x | Club: 24000x | Sword: 6000x | Axe: 24000x | Distance: 24000 | Shielding: 27000x | Fishing: 15000x ] loguei criei 1 knight e fui tenta dar exura e falo "your vocation cannot use this spell " nao intendi.... PS: nao alterei nada... no druid deu certo vo olhar o spell.xml e ja posto aki é.... ta errado muda ai <instant name="Light Healing" words="exura" lvl="9" mana="20" aggressive="0" selftarget="1" exhaustion="1000" groups="2" groupexhaustions="1000" icon="1" needlearn="0" event="script" value="healing/light healing.lua"> <vocation id="1"/> <vocation id="2"/> <vocation id="3"/> <vocation id="5"/> <vocation id="6"/> <vocation id="7"/>
  8. demoro ... arruma ele ai 100% !!! no meu executavel apareceu um erro quando fou ligar Optimized database. http://crystalporjet.110mb.com/version.xml:1: parser error : document is empty ^ http://crystalproject.110mb.com/version.xml:1: parser error : start tag expected, '<' not found ^ checking software version... failed - could not parse remote file <are you connectet to the internet?> Oque é isso?
  9. mude <skill id="6" multiplier="1.4"/> <formula meleeDamage="1.2" para subir skills igual o de kina,acho que é isso que vc tem de mudar ! nao tenho ctz
  10. modo mais facil : Tira o monstro ou posta o script do monstro ai em .xml pra gente da uma olhadinha :smile_positivo:
  11. http://www.xtibia.com/forum/topic/163293-pedidoalguem-modifica-esse-script-aki/ http://www.xtibia.com/forum/topic/163025-duvidasskills-nao-sobe-mais/
  12. 512 é muito poko para rodar um servidor de tibia no minimo que vc precisar de ter é 1GB,mais so se for um baiak com map muito pequeno e que nao tenha nem 100 player online
  13. melhor coisa que vc faz é deleta esse serv e baixar outro ! sao muitos erros !
  14. Queria que alguem modifica-se esse script Colocando as seguintes funçoes: # Guerra acabar automaticamente 60 min depois que eu ativa o comando !war open # Quando a guerra acabar todos os players que nao sao da guild vencedora ser teleportado para o templo # Todos os player que morre dentro do castelo ser teleportado para um local que eu demarcar local storage = 1755 local emGuerra = 1756 local firstpos = {x = 1360,y = 988,z = 0} local secondpos = {x = 1406,y = 1065,z = 0} function onSay(cid, words, param) if param == "open" then setGlobalStorageValue(emGuerra,1) doBroadcastMessage("A Guerra pelo castelo começou!",22) return true elseif param == "close" then for _, pid in ipairs(getPlayersOnline()) do if isInArea(getCreaturePosition(pid),firstpos,secondpos)then if getGlobalStorageValue(storage) ~= getPlayerGuildId(pid) then doTeleportThing(pid,getTownTemplePosition(getPlayerTown(pid))) doPlayerSendTextMessage(pid, MESSAGE_STATUS_CONSOLE_BLUE,"Desculpe mas sua guild não venceu essa guerra!") else doPlayerSendTextMessage(pid,MESSAGE_STATUS_CONSOLE_BLUE,"Sua guild conseguio dominar o castelo. Parabens por ajuda-la!") end end end setGlobalStorageValue(emGuerra,0) doBroadcastMessage("A Guerra pelo castelo terminou!",22) else return doPlayerSendCancel(cid,"Digite !war open[inicia a guerra] ou !war close[terminaa guerra]") end return true end
  15. Crie na pasta Data/Creaturescripts/script o arquivo fraglook.lua e cole isso function getPlayerFrags(cid) 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 = {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) } return size.day + size.week + size.month end function onLogin(cid) registerCreatureEvent(cid, "fraglook") return true end function onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') return true elseif thing.uid == cid then doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') local string = 'You see yourself.' if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end Agora no Data/Creaturescripts/creaturescripts.xml adicione essas tags: <event type="login" name="fraglook_register" event="script" value="fraglook.lua"/> <event type="look" name="fraglook" event="script" value="fraglook.lua"/> Ajudei?? Rep :button_ok:
  16. Já criei uns 2 topicos nem um kra me responde, se eu nao resolve isso eu nao posso colocar o ot online,pois vou colocar com xp alta e com systema de reset,alguem ai com capacidade e experiencia me responde essa minha duvida !!! "Os skills do meu server nao passa de 202,ml nao passa de 156,shield nao passa de 194 dps desses skills,ml,shield nao sobe nem 1% mais como eu resolvo meu problema????" alguem me ajuda !!! meus skills para de subir apartir de um determinado tempo nao sobe nem 1% .... eu ja testei outro distrito e so muda o skills que trava mais continua travando.... ALGUEM ME AJUDA EU DO 20 REP SEGUIDOS 1 POR DIA PRA QUEM ME AJUDA A RESOLVE MEU PROBLEMA
  • Quem Está Navegando   0 membros estão online

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