
Tudo que ADM Mayk on BaiakME postou
-
Players não consegue comprar Houses !buyhouse
Base: server 10.10 Qual erro está surgindo/O que você procura? o player usa o comando !buyhouse fala que eu to sem dinheiro sendo que tenho 10kk na Backpack.... É QUANDO EU TENTO ABRIR QUAL QUER PORTA DE HOUSES APARECE ESSE ERRO NA DISTRO
-
(Resolvido)Membros da staff esta no !rank
- [PEDIDO] Referente ao tfs 0.4 (rev3777) do Fir3element
up ..- (Resolvido)Membros da staff esta no !rank
- (Resolvido)Membros da staff esta no !rank
no distancia o adm aparece é no rank magia é rank level aparece o account mananger o resto deu certo tem como arruma por favor?- mesmo com a bless full o player pode compra a bless varias vezes
mesma coisa- mesmo com a bless full o player pode compra a bless varias vezes
- (Resolvido)Membros da staff esta no !rank
Base: server 10.10 Qual erro está surgindo/O que você procura? membros da staff: ex. [ADM] [CM] [Game Master] [MOD] [TUTOR] estão aparecendo no ranking quero remover eles de todos os ranks .. modaldialog2 = { title = "Rank System", message = "Selecione a classificação que você quer ver:", buttons = { { id = 1, value = "Ver" }, { id = 2, value = "Sair" }, }, buttonEnter = 1, buttonEscape = 2, choices = { { id = 1, value = "Rank Soco" }, { id = 2, value = "Rank Clava" }, { id = 3, value = "Rank Espada" }, { id = 4, value = "Rank Machado" }, { id = 5, value = "Rank Distancia" }, { id = 6, value = "Rank Escudo" }, { id = 7, value = "Rank Pesca" }, { id = 8, value = "Rank Magia" }, { id = 9, value = "Rank Level" } }, popup = false } function callback2(cid, button, choice) if (button == 1) then local str = "" if (choice == 1) then str = "--[ Rank Soco ]--\n" query = db.getResult("SELECT `player_id`, `value` FROM `player_skills` WHERE `skillid` = 0 ORDER BY `value` DESC;") if (query:getID() ~= -1) then k = 1 repeat if k > 20 then break end str = str .. "\n " .. k .. ". "..(getPlayerNameByGUID(query:getDataString("player_id"))).." - [" .. query:getDataInt("value") .. "]" k = k + 1 until not query:next() end elseif (choice == 2) then str = "--[ Rank Clava ]--\n" query = db.getResult("SELECT `player_id`, `value` FROM `player_skills` WHERE `skillid` = 1 ORDER BY `value` DESC;") if (query:getID() ~= -1) then k = 1 repeat if k > 20 then break end str = str .. "\n " .. k .. ". "..(getPlayerNameByGUID(query:getDataString("player_id"))).." - [" .. query:getDataInt("value") .. "]" k = k + 1 until not query:next() end elseif (choice == 3) then str = "--[ Rank Espada ]--\n" query = db.getResult("SELECT `player_id`, `value` FROM `player_skills` WHERE `skillid` = 2 ORDER BY `value` DESC;") if (query:getID() ~= -1) then k = 1 repeat if k > 20 then break end str = str .. "\n " .. k .. ". "..(getPlayerNameByGUID(query:getDataString("player_id"))).." - [" .. query:getDataInt("value") .. "]" k = k + 1 until not query:next() end elseif (choice == 4) then str = "--[ Rank Machado ]--\n" query = db.getResult("SELECT `player_id`, `value` FROM `player_skills` WHERE `skillid` = 3 ORDER BY `value` DESC;") if (query:getID() ~= -1) then k = 1 repeat if k > 20 then break end str = str .. "\n " .. k .. ". "..(getPlayerNameByGUID(query:getDataString("player_id"))).." - [" .. query:getDataInt("value") .. "]" k = k + 1 until not query:next() end elseif (choice == 5) then str = "--[ Rank Distancia ]--\n" query = db.getResult("SELECT `player_id`, `value` FROM `player_skills` WHERE `skillid` = 4 ORDER BY `value` DESC;") if (query:getID() ~= -1) then k = 1 repeat if k > 20 then break end str = str .. "\n " .. k .. ". "..(getPlayerNameByGUID(query:getDataString("player_id"))).." - [" .. query:getDataInt("value") .. "]" k = k + 1 until not query:next() end elseif (choice == 6) then str = "--[ Rank Escudo ]--\n" query = db.getResult("SELECT `player_id`, `value` FROM `player_skills` WHERE `skillid` = 5 ORDER BY `value` DESC;") if (query:getID() ~= -1) then k = 1 repeat if k > 20 then break end str = str .. "\n " .. k .. ". "..(getPlayerNameByGUID(query:getDataString("player_id"))).." - [" .. query:getDataInt("value") .. "]" k = k + 1 until not query:next() end elseif (choice == 7) then str = "--[ Rank Pesca ]--\n" query = db.getResult("SELECT `player_id`, `value` FROM `player_skills` WHERE `skillid` = 6 ORDER BY `value` DESC LIMIT 20;") if (query:getID() ~= -1) then k = 1 repeat if k > 20 then break end str = str .. "\n " .. k .. ". "..(getPlayerNameByGUID(query:getDataString("player_id"))).." - [" .. query:getDataInt("value") .. "]" k = k + 1 until not query:next() end elseif (choice == 8) then str = "--[ Rank Magia ]--\n" query = db.getResult("SELECT `maglevel`, `name` FROM `players` WHERE `group_id` < 3 ORDER BY `maglevel` DESC LIMIT 20;") if (query:getID() ~= -1) then k = 1 repeat if k > 20 then break end str = str .. "\n " .. k .. ". "..(query:getDataString("name")).." - [" .. query:getDataInt("maglevel") .. "]" k = k + 1 until not query:next() end elseif (choice == 9) then str = "--[ Rank Level ]--\n" query = db.getResult("SELECT `name`, `level`, `experience` FROM `players` WHERE `group_id` < 3 ORDER BY `experience` DESC LIMIT 20;") if (query:getID() ~= -1) then k = 1 repeat if k > 20 then break end str = str .. "\n " .. k .. ". "..(query:getDataString("name")).." - [" .. query:getDataInt("level") .. "]" k = k + 1 until not query:next() end end doShowTextDialog(cid, 5785, str) end end function onSay(cid, words, param) addDialog(modaldialog2, 1002, cid, callback2); return true end- mesmo com a bless full o player pode compra a bless varias vezes
- Job System
- mesmo com a bless full o player pode compra a bless varias vezes
não funcionou, agora fala que eu não tenho dinheiro o suficiente sendo que tenho 1kk da bp é estou sem bless- não consigo trocar outfit do GOD nem usar nenhuma montaria
se não tiver na área correta favor mover... Base: tibia 10.10 não acontece erro na distro nem debug, porem não consigo trocar outfit nem usar montaria no GOD segue o outfits segue o groups não sei se tem alguma coisa relacionada... mais ta ai- mesmo com a bless full o player pode compra a bless varias vezes
olá galerinha sou novo aqui, se alguém puder me ajuda fico grato ... Base: server 10.10 Qual erro está surgindo/O que você procura? o player tem bless full, mais mesmo ele com a bless full ele pode comprar a bless varias vezes usando o mesmo comando !bless Você tem o código disponível? Se tiver publique-o aqui: local bless = 5 local cost = 50000 function onSay(cid, words, param) if not isPremium(cid) then return doPlayerSendCancel(cid, 'Desculpe, apenas jogadores donate podem comprar bless por comando.') end local x = 0 for i = 1, bless do if getPlayerBlessing(cid, i) == false then x = x + 1 if doPlayerRemoveMoney(cid, cost) then doPlayerAddBlessing(cid, i) else return doPlayerSendCancel(cid, "Você não tem dinheiro suficiente.") end end end if x == 0 then return doPlayerSendCancel(cid, "Você já tem todas as bless.") else doCreatureSay(cid, "Você agora é abençoado!" ,19) doSendMagicEffect(getPlayerPosition(cid), 49) end return true end se não estiver na área certa favor mova pra área correta obrigado !- Banner, logo tipo
poderia criar uma ? com o nome do meu ot BaiakME no lugar de online Client 1.0 ? se puder agradeço tmj flw ! belo trabalho o seu gostei pakas ....- Magnus Challenger
- [TalkAction] Comando para comprar Bless
UP- [DUVIDA] Bless apenas para premium
- [TFS 1.2] Modal Window Helper Lib
- [TFS 1.2] Modal Window Helper Lib
- [TFS 1.2] Modal Window Helper Lib
- [TalkAction] Comando para comprar Bless
poderia por só para premium poder utilizar esses comandos?- VIP System by Mock 100%
- estou com vários erro no sistema warzones
- Modal Compra por alavanca 1.2
- (Resolvido)Auto Ranking Top 5 Online Broadcast
cara namoral vc é foda lek te amo s2 hsuhsu.... - [PEDIDO] Referente ao tfs 0.4 (rev3777) do Fir3element
Informação Importante
Confirmação de Termo