Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Galera quando meu ot era tfs 0.3.6 eu coloquei [vip] no nome usando um item...

blz ai tava dando tudo certo, mas eu mudei meu tfs para 0.4 e entao nao consigo colocar mais [vip]

rep ++++++++++++++++++++++++++++++++++++++

Link para o post
Compartilhar em outros sites

Pode ser por uma talkaction ? se a resposta é sim:

data/talkactions/scripts crie systemvip.lua

-- Script SYtem vip 2.0 --  
  
function onSay(cid, words, param)  
if(words == "!buysvip") then  
local price = 1000000000  
if doPlayerRemoveMoney(cid, price) == TRUE then  
local days = 60  
local daysvalue = days * 24 * 60 * 60  
local storageplayer = getPlayerStorageValue(cid, 13540)  
local timenow = os.time()  
  
if getPlayerStorageValue(cid, 13540) - os.time() <= 0 then  
time = timenow + daysvalue  
else  
time = storageplayer + daysvalue  
end  
  
if string.find(tostring(getCreatureName(cid)),"[[VIP]]") then  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Foram adicionados ".. days .." dias de PREMIUM VIP no seu character.")  
setPlayerStorageValue(cid, 13540, time)  
local quantity = math.floor((getPlayerStorageValue(cid, 13540) - timenow)/(24 * 60 * 60))  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você tem ".. quantity .." dias de VIP restantes.")  
else  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Foram adicionados ".. days .." dias de PREMIUM VIP no seu character.")  
setPlayerStorageValue(cid, 13540, time)  
local name = getCreatureName(cid)  
db.executeQuery("UPDATE `players` SET `name` = '[VIP] "..name.."' WHERE `id` = "..getPlayerGUID(cid)..";")  
doRemoveCreature(cid)  
end  
else  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você precisa de "..price.." = 1000 Td's para colocar PREMIUM vip.")  
end  
  
elseif(words == "!svipdays") then  
local timenow = os.time()  
local quantity = math.floor((getPlayerStorageValue(cid, 13540) - timenow)/(24 * 60 * 60))  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você tem ".. (quantity < 0 and 0 or quantity) .." dias de PREMIUM VIP no seu character.")  
  
elseif(words == "/checksvip") then  
if getPlayerAccess(cid) == 5 then  
if not param then  
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.")  
end  
  
local player = getPlayerByName(param)  
if not isPlayer(player) then  
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player "..player.." not found.")  
end  
  
local timenow = os.time()  
  
local quantity = math.floor((getPlayerStorageValue(player, 13540) - timenow)/(24 * 60 * 60))  
doPlayerPopupFYI(cid, "O jogador tem ".. (quantity < 0 and 0 or quantity) .." dias de PREMIUM VIP no character.")  
return TRUE  
end  
  
elseif(words == "/addsvip") then  
if getPlayerAccess(cid) == 5 then  
local t = string.explode(param, ",")  
if not t[2] then  
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.")  
end  
  
local player = getPlayerByName(t[1])  
local name = getCreatureName(player)  
local days = t[2]  
local pid = getPlayerByNameWildcard(t[1])  
if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then  
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player with this name doesn\'t exist or is offline.")  
return TRUE  
end  
  
local daysvalue = days*3600*24  
local storageplayer = getPlayerStorageValue(player, 13540)  
local timenow = os.time()  
local time = storageplayer <= 0 and (timenow + daysvalue) or (storageplayer + daysvalue)  
  
if string.find(tostring(getCreatureName(pid)),"[[Vip]]") then  
doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Foram adicionados "..days.." dias de PREMIUM VIP no seu character.")  
setPlayerStorageValue(player, 13540, time)  
local quantity = math.floor((getPlayerStorageValue(player,13540) - timenow)/(3600*24))  
doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Você tem "..quantity.." dias de VIP restantes.")  
else  
setPlayerStorageValue(player, 13540, time)  
db.executeQuery("UPDATE `players` SET `name` = '[Vip] "..name.."' WHERE `id` = "..getPlayerGUID(player)..";")  
doRemoveCreature(player)  
end  
end  
  
elseif(words == "/delsvip") then  
if getPlayerAccess(cid) == 5 then  
local dec = MESSAGE_INFO_DESCR  
if(param == "") then return TRUE,doPlayerSendTextMessage(cid,18,"Command param required.")end  
local C,t = {},string.explode(param, ",")  
C.pos = getPlayerPosition(cid)  
C.uid = getCreatureByName(t[1])  
C.time = ((tonumber(t[2]) == nil) and 1 or tonumber(t[2]))*3600*24 --Tempo da vip por dia.  
C.days = (tonumber(t[2]) == nil) and 1 or tonumber(t[2]) --Dias de vip.  
  
if(getPlayerStorageValue(C.uid,13540) < C.time)then  
doPlayerSendTextMessage(cid,dec,'O jogador '..t[1]..' não possui '..C.days..' dias de vip.')  
else  
doPlayerSendTextMessage(cid,dec,'Você removeu '..C.days..' dias de vip do player '..t[1]..'.')  
setPlayerStorageValue(C.uid,13540,getPlayerStorageValue(C.uid,13540)-C.time)
end  
doSendMagicEffect(C.pos, math.random(28,30))  
end  
end  
  
return TRUE  
end

data/talkactions e abra talkactions.xml

adicione a tag

        <talkaction words="!svipdays;!buysvip;/checksvip;/addsvip;/delsvip" script="systemvip.lua"/>

Ando devagar, porque já tive pressa. E levo esse sorriso, porque já chorei demais...

________________________________________________________________________________

Minhas Sprites:

Mega Metagross

Mega Abomasnow

Pack de Shinys

[Posso atualizá-lo com novos shinys a qualquer momento]

Tutoriais:

[Completo] Criando e adicionando um novo Pokémon

[Actions] Criando quest no RME

Editores Lua/Xml/Sync Entre outros:

Editores Win/Mac/Linux

Link para o post
Compartilhar em outros sites

Pode ser por uma talkaction ? se a resposta é sim:

data/talkactions/scripts crie systemvip.lua

-- Script SYtem vip 2.0 --  
  
function onSay(cid, words, param)  
if(words == "!buysvip") then  
local price = 1000000000  
if doPlayerRemoveMoney(cid, price) == TRUE then  
local days = 60  
local daysvalue = days * 24 * 60 * 60  
local storageplayer = getPlayerStorageValue(cid, 13540)  
local timenow = os.time()  
  
if getPlayerStorageValue(cid, 13540) - os.time() <= 0 then  
time = timenow + daysvalue  
else  
time = storageplayer + daysvalue  
end  
  
if string.find(tostring(getCreatureName(cid)),"[[VIP]]") then  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Foram adicionados ".. days .." dias de PREMIUM VIP no seu character.")  
setPlayerStorageValue(cid, 13540, time)  
local quantity = math.floor((getPlayerStorageValue(cid, 13540) - timenow)/(24 * 60 * 60))  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você tem ".. quantity .." dias de VIP restantes.")  
else  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Foram adicionados ".. days .." dias de PREMIUM VIP no seu character.")  
setPlayerStorageValue(cid, 13540, time)  
local name = getCreatureName(cid)  
db.executeQuery("UPDATE `players` SET `name` = '[VIP] "..name.."' WHERE `id` = "..getPlayerGUID(cid)..";")  
doRemoveCreature(cid)  
end  
else  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você precisa de "..price.." = 1000 Td's para colocar PREMIUM vip.")  
end  
  
elseif(words == "!svipdays") then  
local timenow = os.time()  
local quantity = math.floor((getPlayerStorageValue(cid, 13540) - timenow)/(24 * 60 * 60))  
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você tem ".. (quantity < 0 and 0 or quantity) .." dias de PREMIUM VIP no seu character.")  
  
elseif(words == "/checksvip") then  
if getPlayerAccess(cid) == 5 then  
if not param then  
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.")  
end  
  
local player = getPlayerByName(param)  
if not isPlayer(player) then  
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player "..player.." not found.")  
end  
  
local timenow = os.time()  
  
local quantity = math.floor((getPlayerStorageValue(player, 13540) - timenow)/(24 * 60 * 60))  
doPlayerPopupFYI(cid, "O jogador tem ".. (quantity < 0 and 0 or quantity) .." dias de PREMIUM VIP no character.")  
return TRUE  
end  
  
elseif(words == "/addsvip") then  
if getPlayerAccess(cid) == 5 then  
local t = string.explode(param, ",")  
if not t[2] then  
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.")  
end  
  
local player = getPlayerByName(t[1])  
local name = getCreatureName(player)  
local days = t[2]  
local pid = getPlayerByNameWildcard(t[1])  
if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then  
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player with this name doesn\'t exist or is offline.")  
return TRUE  
end  
  
local daysvalue = days*3600*24  
local storageplayer = getPlayerStorageValue(player, 13540)  
local timenow = os.time()  
local time = storageplayer <= 0 and (timenow + daysvalue) or (storageplayer + daysvalue)  
  
if string.find(tostring(getCreatureName(pid)),"[[Vip]]") then  
doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Foram adicionados "..days.." dias de PREMIUM VIP no seu character.")  
setPlayerStorageValue(player, 13540, time)  
local quantity = math.floor((getPlayerStorageValue(player,13540) - timenow)/(3600*24))  
doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Você tem "..quantity.." dias de VIP restantes.")  
else  
setPlayerStorageValue(player, 13540, time)  
db.executeQuery("UPDATE `players` SET `name` = '[Vip] "..name.."' WHERE `id` = "..getPlayerGUID(player)..";")  
doRemoveCreature(player)  
end  
end  
  
elseif(words == "/delsvip") then  
if getPlayerAccess(cid) == 5 then  
local dec = MESSAGE_INFO_DESCR  
if(param == "") then return TRUE,doPlayerSendTextMessage(cid,18,"Command param required.")end  
local C,t = {},string.explode(param, ",")  
C.pos = getPlayerPosition(cid)  
C.uid = getCreatureByName(t[1])  
C.time = ((tonumber(t[2]) == nil) and 1 or tonumber(t[2]))*3600*24 --Tempo da vip por dia.  
C.days = (tonumber(t[2]) == nil) and 1 or tonumber(t[2]) --Dias de vip.  
  
if(getPlayerStorageValue(C.uid,13540) < C.time)then  
doPlayerSendTextMessage(cid,dec,'O jogador '..t[1]..' não possui '..C.days..' dias de vip.')  
else  
doPlayerSendTextMessage(cid,dec,'Você removeu '..C.days..' dias de vip do player '..t[1]..'.')  
setPlayerStorageValue(C.uid,13540,getPlayerStorageValue(C.uid,13540)-C.time)
end  
doSendMagicEffect(C.pos, math.random(28,30))  
end  
end  
  
return TRUE  
end

data/talkactions e abra talkactions.xml

adicione a tag

        <talkaction words="!svipdays;!buysvip;/checksvip;/addsvip;/delsvip" script="systemvip.lua"/>

 

 

não tem como converter para action nao?? pq meu sistema é donate xD

 

 

 

local name, guid = getCreatureName(cid), getPlayerGUID(cid)
	doRemoveCreature(cid)
	db.executeQuery("UPDATE `players` SET `name` = '[VIP] "..name.."' WHERE `id` = "..guid..";")

 

 

onde coloco isso? kkkkkkkkkk boiei aqui agora

Link para o post
Compartilhar em outros sites
local config = {
    removeItem = "yes",
    strInName = "[VIP] "
}

config.removeItem = getBooleanFromString(config.removeItem)
function onUse(cid, item, fromPosition, itemEx, toPosition)
    local name, guid = getCreatureName(cid), getPlayerGUID(cid)
    doRemoveItem(item.uid, config.removeItem and 1 or 0)
    doRemoveCreature(cid)
    db.executeQuery("UPDATE `players` SET `name` = '"..config.strInName..""..name.."' WHERE `id` = "..guid..";")
    return true
end

 Agora só adicionar a TAG em actions

Editado por MaTTch (veja o histórico de edições)
Link para o post
Compartilhar em outros sites
local config = {
    removeItem = "yes",
    strInName = "[VIP] "
}

config.removeItem = getBooleanFromString(config.removeItem)
function onUse(cid, item, fromPosition, itemEx, toPosition)
    local name, guid = getCreatureName(cid), getPlayerGUID(cid)
    doRemoveItem(item.uid, config.removeItem and 1 or 0)
    doRemoveCreature(cid)
    db.executeQuery("UPDATE `players` SET `name` = '"..config.strInName..""..name.."' WHERE `id` = "..guid..";")
    return true
end

 Agora só adicionar a TAG em actions

 

 

 

Mano não add o nome =(, lembrando que meu server é tfs 0.4 e tem gesior

 

 

o que eu usava e funcinava perfeitamente era 

 

function onUse(cid, item, fromPosition, itemEx, toPosition)

 
local name = getCreatureName(cid)
local days = 30 -- dias que serão adicionados
local strg = 13500 -- valor da sua storage
local strg_n = 12120 -- não precisa editar
local daysvalue = days * 24 * 60 * 60
local storageplayer = getPlayerStorageValue(cid, strg)
local timenow = os.time()
 
 
    if getPlayerStorageValue(cid, strg) - os.time() <= 0 then
time = timenow + daysvalue
    else
time = storageplayer + daysvalue
    end
 
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Foram adicionados ".. days .." dias de VIP no seu character.")
        setPlayerStorageValue(cid, strg, time)
local quantity = math.floor((getPlayerStorageValue(cid, strg) - timenow)/(24 * 60 * 60))
        doSendMagicEffect(getPlayerPosition(cid), math.random(28,30))
        doPlayerAddPremiumDays(cid, 30)
doRemoveItem(item.uid, 1)
    if getPlayerStorageValue(cid, strg_n) < 1  then
        setPlayerStorageValue(cid, strg_n, 1)
        db.executeQuery("UPDATE `players` SET `name` = '[VIP] "..name.."' WHERE `id` = "..getPlayerGUID(cid)..";")
        doRemoveCreature(cid)  
    else
        doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Seus dias foram acrescentados e seu nome ja foi alterado.")
    end
return TRUE
end
Link para o post
Compartilhar em outros sites

 

Tenta trocar:

db.executeQuery

por:

db.query

 

 

Manoh, agora deu kkkk, mas tipo ta assim [VIP] Tester

e tem como cria um player com o nick Tester :unsure:

 

e tem como colocar ele como storange 13500, e... acabar em 15 dias.. kk rep+++ e melhor resposta se ajuda ^^

Link para o post
Compartilhar em outros sites

Troca o script por esse:

local config = {
    removeItem = "yes",
    strInName = "[VIP] ",
    vipStorage = 13500,
    vipDays = 15
}

config.removeItem = getBooleanFromString(config.removeItem)
function onUse(cid, item, fromPosition, itemEx, toPosition)
    local name, guid = getCreatureName(cid), getPlayerGUID(cid)
    doRemoveItem(item.uid, config.removeItem and 1 or 0)
    setPlayerStorageValue(cid, config.vipStorage, (config.vipDays*24*60*60) + os.time())
    doRemoveCreature(cid)
    db.query("UPDATE `players` SET `name` = '"..config.strInName..""..name.."' WHERE `id` = "..guid..";")
    return true
end

depois vá em login.lua e la no final você coloca isso:

if(string.find(getCreatureName(cid), "[VIP] ")) then
        if(getPlayerStorageValue(cid, 13500) < os.time) then
            local newname, guid = string.match(getCreatureName(cid), " (.+)"), getPlayerGUID(cid)
            setPlayerStorageValue(cid, 13500, -1)
            doRemoveCreature(cid)
            db.query("UPDATE `players` SET `name` = '"..newname.."' WHERE `id` = "..guid..";")
            return true
        end
    end
Editado por MaTTch (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

 

Troca o script por esse:

local config = {
    removeItem = "yes",
    strInName = "[VIP] ",
    vipStorage = 13500,
    vipDays = 15
}

config.removeItem = getBooleanFromString(config.removeItem)
function onUse(cid, item, fromPosition, itemEx, toPosition)
    local name, guid = getCreatureName(cid), getPlayerGUID(cid)
    doRemoveItem(item.uid, config.removeItem and 1 or 0)
    setPlayerStorageValue(cid, config.vipStorage, (config.vipDays*24*60*60) + os.time())
    doRemoveCreature(cid)
    db.query("UPDATE `players` SET `name` = '"..config.strInName..""..name.."' WHERE `id` = "..guid..";")
    return true
end

depois vá em login.lua e la no final você coloca isso:

if(string.find(getCreatureName(cid), "[VIP] ") then
        if(getPlayerStorageValue(cid, 13500) < os.time) then
            local newname, guid = string.match(getCreatureName(cid), " (.+)"), getPlayerGUID(cid)
            setPlayerStorageValue(cid, 13500, -1)
            doRemoveCreature(cid)
            db.query("UPDATE `players` SET `name` = '"..newname.."' WHERE `id` = "..guid..";")
            return true
        end
    end

 

 

olha, tem como cria 2 personagem com o mesmo nick agora ='(

 

sabe como arrumar??

 

TIPO NO ACCOUNT MANAGER TEM NÃO TEM COMO CRIAR UMA CONTA COM OUTRO NOME MAS NO SITE TEM  :unsure:

ajuda plxx

 

10981156_1547194938893894_29474915181141

Editado por Danielgomes (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Infelizmente eu não entendo de PHP, você vai ter que pedir ajuda a quem mexe com site.

 

vlw kkk vo cria outro topico...

quando os dias acaba ele perde o nome e o acesso vip???

rep ++

Editado por Danielgomes (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

local config = {
    removeItem = "yes",
    strInName = "[VIP] ",
    vipStorage = 13500,
    vipDays = 15
}
config.removeItem = getBooleanFromString(config.removeItem)
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if getCreatureName(cid):find(config.strInName) then
        return doPlayerSendCancel(cid, "Sorry, not possible.")
    end
    local name, guid = getCreatureName(cid), getPlayerGUID(cid)
    doRemoveItem(item.uid, config.removeItem and 1 or 0)
    setPlayerStorageValue(cid, config.vipStorage, (config.vipDays*24*60*60) + os.time())
    doRemoveCreature(cid)
    db.query("UPDATE `players` SET `name` = '"..config.strInName..""..name.."' WHERE `id` = "..guid..";")
    return true
end

não respondo pms solicitando suporte em programação/scripting

Link para o post
Compartilhar em outros sites
local config = {
    removeItem = "yes",
    strInName = "[VIP] ",
    vipStorage = 13500,
    vipDays = 15
}
config.removeItem = getBooleanFromString(config.removeItem)
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if getCreatureName(cid):find(config.strInName) then
        return doPlayerSendCancel(cid, "Sorry, not possible.")
    end
    local name, guid = getCreatureName(cid), getPlayerGUID(cid)
    doRemoveItem(item.uid, config.removeItem and 1 or 0)
    setPlayerStorageValue(cid, config.vipStorage, (config.vipDays*24*60*60) + os.time())
    doRemoveCreature(cid)
    db.query("UPDATE `players` SET `name` = '"..config.strInName..""..name.."' WHERE `id` = "..guid..";")
    return true
end

 

Agora meu ADM bugo kkkkkk ta assim [VIP] [VIP] [VIP] [VIP] [VIP] [ADM]

 

desisto de colocar essa coisa :cursing:

 

Tem como colocar tipo um efeito entao??? tipo quem usa o item vai ter efeito tal... ate quando seu dia acabar?

 

tipo esse efeito11001889_1547279658885422_19200490591824

 

peguei esse efeito da surprise bag, mas pode ser qualquer um pfv me ajuda kk

rep++ e melhor resp ;)

Editado por Danielgomes (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

  • Conteúdo Similar

    • Por BTitan
      Reviva a nostalgia do Tibia 8.6 com um toque das novidades modernas, mantendo a essência clássica que você ama. Nosso mapa é limpo e otimizado, perfeito para wars intensas e estratégicas.
      Com mais de 100 áreas de caça, vocações equilibradas e eventos automáticos diários, garantimos diversão sem limites para todos os jogadores.
       
      ACC Manager: 1/1
      IP: go.baiaktitan.com
      https://www.baiaktitan.com
       
      Principais informações:
       
      Dedicado 24 horas sem lag Attack Speed moderado Cast System DODGE! CRITICAL! REFLECT! Upgrade Weapon Forge System Autoloot Anti Rollbacks Eventos exclusivos (Battle Royale, DOTA, Team Battle, entre outros...) Servidor integrado com Telegram (Contato direto com ADM) Cliente próprio (com novos itens, montarias e outfits) Mapa Baiak, modificado exclusivamente para o PvP Servidor otimizado, suportando mais de 1.000 players online  
      »» EXP Rate: 200x
      »» Skill Rate: 20x
      »» Magic Rate: 10x
      »» Loot Rate: 3x
       
      Aguardamos por você!
    • Por Nogard
      Não deixe seu evento de Natal para última hora, faltam apenas 4 dias. 

      Aproveite as sprites com desconto no site: https://otsprites.com
       
       
       

       

       
       
       
    • Por otpokesalense
      🧿Base Tibia Solebran totalmente otimizada!  
       
       ✔️ OTClient (Version Old);
      ✔️ Update 2.2;
      ✔️ Site Póprio;
      ✔️ Map Global
      ✔️ Bugs, Minimo (2x) talvez;
      ✔️ PVP 💯 Funcional.
       
       
      Get Servidor: https://files.fm/f/7qumr8943e 💸 Buy! otimo projeto para vc utilizá-lo.
      Lembrando:: ao comprar o download será disponibilizado automaticamente.
       
      🧑‍💻System Operacional: Windows (VPS)
      👨‍💻Programador (27) 998931903 - - - O Valor já inclui o serviço de programação! 🤗
       

       
       

       
       
    • Por Arkanjo39
      CUIDA, CUIDA E VEM CONHECER NOSSO SERVER. KING BAIAK ACABOU DE SER LANÇADO!!! VEM SER O TOP 1 Site com Otclient: https://kingbaiak.com/ PARA NOVOS JOGARES ADM TA DANDO AQUELA FORCINHA! SERVIDOR 8.60 COM RESETS, MONTARIAS E GOLDEN OUTFIT! INFORMAÇÕES BÁSICAS DO SERVIDOR: [+] MAPA BAIAK [+] HIGH EXP [+] RESETS COM + DAMAGE [+] AUTOLOOT AUTOMÁTICO [+] CITY DONATE [+] ROSHAMUUL, ORAMOND E NETHER [+] MONTARIAS E GOLDEN OUTFIT [+] INVASÃO DE MONSTROS AUTOMÁTICAS [+] DAILY MONSTER QUE APARECE AO LOGAR [+] MONTARIAS COM COMANDO !MOUNT [+] SISTEMA DE ROLETA ATUAL [+] CAST WATCH [+] FAST ATTACK [+] CAST ARROWS [+] PUSH CRUZADO [+] REWARD CHEST [+] WARSQUARE [+] COMBO EXP DE POTIONS [+] MINERAÇÃO COM LOJA [+] SISTEMA DE BOSS [+] CRITICAL/DODGE [500/500] [+] LIFE E MANA EM PORCENTAGEM* [+] VARIAS QUESTS [+] EVENTO DTT (AUTOMÁTICO) [+] EVENTO BATLEFIELD (AUTOMÁTICO) [+] EVENTO SNOWBALLWAR (AUTOMÁTICO) [+] EVENTO DESERT WAR (AUTOMÁTICO) [+] EVENTO ZOMBIE (AUTOMÁTICO) [+] EVENTO CAMPO MINADO (AUTOMÁTICO) [+] EVENTO TEAM BATLE (AUTOMÁTICO) [+] EVENTO CAPTURE THE FLAG (AUTOMÁTICO)
    • Por BTitan
      Baiak Titan: Uma Experiência Incomparável no Universo Baiak
       
      O Baiak Titan combina a nostalgia dos antigos tempos de OTServ com a inovação e modernidade atuais. Oferecemos um mapa vasto, com mais de 100 áreas de caça para explorar, além de vocações equilibradas para um PvP justo e emocionante. Diversos eventos automáticos ocorrem diariamente, garantindo diversão constante para os jogadores. O servidor conta com vários sistemas, como por exemplo, montarias para quem utiliza o cliente exclusivo, monstros do Tibia 9.6+, sistema de mineração, entre outros!
       
      Por Que Escolher o Baiak Titan?
       
      PvP de Alta Qualidade: Embora seja um servidor Baiak, nosso mapa é cuidadosamente projetado para proporcionar ganho de experiência sem perder a seriedade do jogo, oferecendo desafios instigantes e um equilíbrio perfeito para combates épicos.
      Jogabilidade Customizada: O mapa Baiak foi exclusivamente adaptado para promover intensas batalhas de PvP, com recursos inovadores que mantêm a jogabilidade sempre fresca e emocionante.

      Detalhes do Servidor:
       
      IP: baiaktitan.com Website: https://baiaktitan.com Account Manager: 1/1
        Principais Características:
       
      Uptime 24/7, Sem Lag: Jogue a qualquer hora com a estabilidade de servidores dedicados e de alta performance. Velocidade de Ataque Equilibrada: Ajustada perfeitamente para garantir combates dinâmicos e justos. Sistema de Cast: Transmita suas jogadas ao vivo e assista aos seus amigos em ação. Cliente Exclusivo: Software personalizado com novos outfits, montarias e criaturas, enriquecendo ainda mais sua experiência no jogo. Runas, Poções e Flechas Não Infinitas: Valorizamos uma jogabilidade mais estratégica e desafiadora, onde os recursos precisam ser geridos com sabedoria.
      Eventos Automáticos:
       
      Zombie Team Battle Monster Hunter Castle (War of Emperium) Capture The Flag DOTA Corrida Arena War (O último sobrevivente ganha) Fire Storm
        Taxas do Servidor:
       
      EXP: 200x (com stages)
      Skill: 100x
      Magic: 30x
      Loot: 3x
       
      Junte-se à nossa comunidade e viva essa aventura única. O Baiak Titan espera por você!
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo