Tudo que Danihcv postou
-
[Pokemon]Como troca o nome do pokemon?
Não sei como funciona a organização/disposição dos arquivos de um ot pokemon, mas se for igual ao de OTs normais, basta você ir na pasta data/monsters/vá até a pasta onde está o arquivo de seu Charizard.xml e onde tem: <monster name="vc põe Elder charizard" e salva. Não entendi mt bem o pedido, mas pelo que eu entendi é isso que vc deseja... Espero ter ajudado. Abraços.
-
Tibia IpChanger para tibia 10.37
Seu problema está no config.lua você deve configurar o IP, para isso, ou você cria um ip fixo (www.no-ip.com) ou acessa: www.meuip.com.br e copia e cola o ip que aparecer neste site para a área de IP dentro do config.lua, porém se vc usar esse ip ñ fixo, vc terá que muda-lo toda vez que ligar o pc. E pra conectar no seu ot, VOCÊ (somente vc, os players Ñ) deve usar o endereço do seu gateway padrão que vc pode encontrar assim: clique em iniciar, depois digite cmd, dê enter, agora digite ipconfig e dê enter. procure por gateway padrão. E esse é o ip que vc deve usar para acessar eu OT. Abraços.
-
Tibia IpChanger para tibia 10.37
Sim pow, o OTLand IP Changer funciona. Basta vc baixar a versão do tibia 10.37: http://clients.tibiaking.com/client/windows/1037 E configurar o OTLand pra abrir essa versão: Clica em Settings: Clica em Add new tibia client: Digita a versão (1037) e clica em Browse... Seleciona o Tibia.exe da versão 10.37 que vc instalou (procura onde ta instalado e seleciona). Clica em Add. Depois em Close. Depois seleciona a nova versão que vc acabou de configurar: Pronto! Seja feliz. Espero ter ajudado! Abraços Se eu tiver ajudado, sinta-se a vontade para dar ou não REP.
-
(Resolvido)Bug market , não poe item !
O seu problema está em sua data base, mas não é nada que não possa ser resolvido. Você precisa criar uma table chamada: player_statements e adicionar colunas e deixar ela igual a dessa imagem: Se você precisar de uma ajuda mais detalhada, basta pedir, que farei um tutorial! Abraços
-
Tibia IpChanger para tibia 10.37
OTLoader é mt bom, pois ele próprio ja organiza as versões do tibia que você quiser instalar, porém ele não suporta TODAS as versões do tibia. Já o OTLand IP Changer suporta qualquer versão que você queira, pois afinal depende de você baixar a versão desejada e instalar, e configurar o OTLand: http://www.mediafire.com/download/pply8vi2s77l6vk/OTLand-IP-Changer.rar Espero te ajudado! Abraços.
- Problema ao criar otserv 8.6
-
[DUVIDA] Como mudar o ip/ou criar um client 10.10
Pra mudar o ip do ot vc tem q abrir o arquivo CONFIG.LUA e onde tem IP, vc coloca o seu ip não fixo(que vc pode conseguir no site: www.meuip.com.br, mas td vez que vc entrar no pc tem que mudar) ou criar um ip fixo pelo site: www.no-ip.com Espero ter ajudado. Abraços
-
[PEDIDO] Contagem de Frags no Look
Crie um script chamado fraglook.lua na pasta data\creaturescripts\script: 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 E no arquivo creaturescripts.xml adicione: <event type="login" name="fraglook_register" event="script" value="fraglook.lua"/> <event type="look" name="fraglook" event="script" value="fraglook.lua"/> Espero ter ajudado! Abraços
-
Ajuda Com System Market
Nada
-
(Resolvido)Bug market , não poe item !
Aparece algum erro na sua distro relacionado ao sql?? Tipo msgs do tipo: "no such table..." Aparece?? Se aparecer, fala ae q eu te ajudo. Abraços!
-
[PEDIDO] Alguem tem distro OTX para 10.10
Opa, não sei se estou no lugar certo, mas queria saber se alguem tem a distro otx pra 10.10 ou se alguem sabe compilar as sources dele para windows. Estou tendo um problema ao compilar, aparece o erro "VSInstallDir is missing..." se alguém puder me ajudar de alguma serei imensamente grato. Dou REP pra quem me ajudar!! Vlw!! Abraços!
-
Ajuda Com System Market
Opa, seu problema está em sua data base! Você precisa criar uma table chamada: player_statements e adicionar colunas e deixar ela igual a dessa imagem: http://i.imgur.com/wYBSU6W.png Abr E também precisa de uma table chamada: market_offers e fazer o mesmo esquema, deixar ela igual a dessa imagem: http://i.imgur.com/t5HntvQ.png Espero ter ajudado! Abraços
-
[ERRO] Item Não Da Skills
Você ja adicionou ele ao items.otb?? Dá algum erro na distro?? Dê mais informações ae, que eu vejo se ajudo... Abraços
-
[PEDIDO] Script De Tirar item de todos
-- Scrip feito por Danihcv, para tibiaking.com function onSay(cid, words, param, channel) -- Scrip por Danihcv, para tibiaking.com local t = string.explode(param, ",") if t[1] ~= nil and t[2] ~= nil then local list = {} for i, tid in ipairs(getPlayersOnline()) do -- Scrip por Danihcv, para tibiaking.com list[i] = tid end for i = 1, #list do doPlayerRemoveItem(list[i],t[1],t[2]) end -- Scrip por Danihcv, para tibiaking.com doBroadcastMessage(getPlayerName(cid) .. " has removed: " .. t[2] .." ".. getItemNameById(t[1]) .. " from all players!") else doPlayerPopupFYI(cid, "No parm...\nSend:\n /delitemall itemid, how_much_items\nexample:\n /delitemall 2160, 10") end return true end -- Scrip por Danihcv, para tibiaking.com Espero ter ajudado.
-
[TalkAction] Prision System
Pow cara, meu ot é 10.10, ja configurei as celas, mas quando dou o comando não acontece nada... Alguem pode ajudar?? Nem aparece nenhum erro...
- Otitemeditor
- Otitemeditor
-
new marriage system
ñ sei como botar na db.. ajuda ae pf, parabens, parece mt show o system, mas da uma ajuda ae nessa parte da db... VLW!!!