Ir para conteúdo

BilauX

Membro
  • Registro em

  • Última visita

Tudo que BilauX postou

  1. já instalei uma caralhada nenhum funfa direito pqp......
  2. arruma os erros do distro de casa de monstros ta foda erro pacas...
  3. tfs 0.4
  4. eu postei ali vê aí ta maiúsculo mesmo assim o erro persiste.... <monster name="Behemoth" file="giants/Behemoth.xml"/>
  5. ta falando spawn:: addmonster cannot find "Behemoth", pq do erro ?? só q meu monsters xml do behemoth ta assim <monster name="Behemoth" file="giants/Behemoth.xml"/>
  6. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    quero no meu distro pow, se ninguem não sabe, vou procurar ate achar hehe
  7. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    eu sei q é na sources, problema é q lugar e como fazer ?? hueuhueuh
  8. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    alguém ajuda ???
  9. fala galera meu ot tem uma terceira vocação ela não aparece no character.php, quando eu clico no nick do cara no site, como adiciono ??? os ids são do 9 ao 12, nomes Otfun Master Sorcerer, Royal Paladin, Elder Druid e Elite Knight
  10. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    alguem sabe como eu coloco esse account manager no meu ot, ele é azul bem mais descatacado e o cara não precisa desloga pra criar o character ele cria tudo em um login só..
  11. fala galera to bom tempo atrás,daquele script matou x e morreu x, e eu achei um só q só funciona look em vc mesmo se dar em alguem não aparece matou x e morreu x como resolver ?? function getDeaths(cid) local query, d = db.getResult("SELECT `player_id` FROM `player_killers` WHERE `player_id` = " ..getPlayerGUID(cid)), 0 if (query:getID() ~= -1) then repeat d = d+1 until not query:next() query:free() end return d end 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 onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then return doPlayerSetSpecialDescription(thing.uid, '\n'.. '[Frags: ' .. getPlayerFrags(thing.uid) .. ' - Frags Totais: ' .. getDeaths(thing.uid) .. ']') elseif thing.uid == cid then 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 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 string = string..'\n'.. '[Matou: ' .. getPlayerFrags(cid) .. ' - Morreu: ' .. getDeaths(cid) .. ']' 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 return false, doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) end return 1 end
  12. como posta em spoiler ??? creio q geral já e premium.....
  13. fala galera é o seguinte tem um bau na minha quest tem gente q consegue pegar o item outros não, como resolver ???? o script é esse ou qualquer coisa como faço um novo script pra esse bau local specialQuests = { [2001] = 30015 --Annihilator } local questsExperience = { [30015] = 10000 } function onUse(cid, item, fromPosition, itemEx, toPosition) if(getPlayerCustomFlagValue(cid, PlayerCustomFlag_GamemasterPrivileges)) then doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF, cid) return true end local storage = specialQuests[item.actionid] if(not storage) then storage = item.uid if(storage > 65535) then return false end end if(getPlayerStorageValue(cid, storage) > 0) then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "It is empty.") return true end local items = {} local reward = 0 local size = isContainer(item.uid) and getContainerSize(item.uid) or 0 if(size == 0) then reward = doCopyItem(item, false) else for i = 0, size do local tmp = getContainerItem(item.uid, i) if(tmp.itemid > 0) then table.insert(items, tmp) end end end size = table.maxn(items) if(size == 1) then reward = doCopyItem(items[1], true) end local result = "" if(reward ~= 0) then local ret = getItemDescriptions(reward.uid) if(reward.type > 0 and isItemRune(reward.itemid)) then result = reward.type .. " charges " .. ret.name elseif(reward.type > 0 and isItemStackable(reward.itemid)) then result = reward.type .. " " .. ret.plural else result = ret.article .. " " .. ret.name end else if(size > 20) then reward = doCopyItem(item, false) elseif(size > 8) then reward = getThing(doCreateItemEx(1988, 1)) else reward = getThing(doCreateItemEx(1987, 1)) end for i = 1, size do local tmp = doCopyItem(items, true) if(doAddContainerItemEx(reward.uid, tmp.uid) ~= RETURNVALUE_NOERROR) then print("[Warning] QuestSystem:", "Could not add quest reward") else local ret = ", " if(i == 2) then ret = " and " elseif(i == 1) then ret = "" end result = result .. ret ret = getItemDescriptions(tmp.uid) if(tmp.type > 0 and isItemRune(tmp.itemid)) then result = result .. tmp.type .. " charges " .. ret.name elseif(tmp.type > 0 and isItemStackable(tmp.itemid)) then result = result .. tmp.type .. " " .. ret.plural else result = result .. ret.article .. " " .. ret.name end end end end if(doPlayerAddItemEx(cid, reward.uid, false) ~= RETURNVALUE_NOERROR) then result = "You have found a reward weighing " .. getItemWeight(reward.uid) .. " oz. It is too heavy or you have not enough space." else result = "You have found " .. result .. "." setPlayerStorageValue(cid, storage, 1) if(questsExperience[storage] ~= nil) then doPlayerAddExp(cid, questsExperience[storage]) doSendAnimatedText(getCreaturePosition(cid), questsExperience[storage], TEXTCOLOR_WHITE) end end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, result) return true end
  14. putz o meu começou da isso, no meu protocolgame.cpp não tem isso
  15. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    mais ai mano, attack speed fica lento pacas, fica ruim =.=.....
  16. eu digitei isso lá msm assim o erro persiste ?? ou como adciona isso ??
  17. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    ta mais eu quero rank 10 posições uai ...
  18. fala galera meu ot tem uma terceira vocação ela não aparece no character.php, quando eu clico no nick do cara no site, como adiciono ???
  19. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    up
  20. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    elfbot tem um comando q chama auto 1 attack target tu usa isso, seu attack speed fica rapidao acima do q ta configurado do servidor....
  21. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    fala galera tem ot q não funciona o attack target como bloquear ???
  22. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    a data criação ta errada como arrumar ??
  23. BilauX postou uma resposta no tópico em Websites
    como instalar ?? eu baixei não veio o install.php
  24. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    blz galera é o seguinte no meu servidor o cara abre o bau e vira vip, só q o vip só da pra um boneco de vez pra acc dele toda, como arrumar ???
  25. BilauX postou uma resposta no tópico em Suporte Tibia OTServer
    achei ela no shop de outro ot e peguei agora problema é o seguinte a data de criação do meu character php ta 1969 ot nem existia nesse ano, aonde eu pego varios caracter php diferente pra mim ir mudando ate um q me agrada.......

Informação Importante

Confirmação de Termo