Ir para conteúdo
  • Cadastre-se

Posts Recomendados

[Pokemon] PDA By Slicer

Pokemon dash advanced editado por slicer, vários bugs retidos.

Ultimas Atualizações:

* Leiam o Change Log dentro da pasta do patch!

* Sigam as instruçoes do Change Log!!!

Downlaods:

PDA By Slicer Com Level System v2.6 ->http://www.mediafire...8iab98nfrr9pb5z

PDA By Slicer Sem Level System v1.6 ->http://www.mediafire...tfzit45z39ir47q

Atualizações:

EH OBRIGATORIO O USO DESSE CLIENT ABAIXO E USEM O .PIC TB!!!!!!!!!

Client v1.7/2.7 => http://www.mediafire...05cl5rpnn7spg51

Patch v1.7 =>http://www.mediafire...w983o0nzo8ghobn

Patch v2.7 =>http://www.mediafire...f0g1c1zrw918buo

Patch Correçao! Todos olhem! Atualizado dia 12/10!

  Mostrar conteúdo oculto

Correçao para pokebar do serv com lvl!

1* va em lib/cooldown bar.lua, apague oq tiver dentro e cole isso la..

2* vai em 'pasta do OTClient'/mods/cdBar/cdBar.lua, apague oq ta dentro e cole isso la..

  Mostrar conteúdo oculto

--[[Coisas para saber!

local button = optionsWindow:recursiveGetChildById('Button'):setText("Fuu") == muda o nome do botao!

optionsWindow = g_ui.loadUI('bot.otui', modules.game_interface.getRightPanel()) == faz a janela ficar nos cantos!

local player = g_game.getLocalPlayer() == pega o player!

player:getInventoryItem(8):getId() == pega o id do item, id do .spr

]]

cdBar = {}

cdBar.options = {}

-- Private Variables

local optionsWindow_hori

local optionsWindow_vert

local optionsButton

local barra = 'Horizontal.otui'

local nameAtks = ""

local cdAtks = ""

local botoes = {

['Button1'] = {event = nil},

['Button2'] = {event = nil},

['Button3'] = {event = nil},

['Button4'] = {event = nil},

['Button5'] = {event = nil},

['Button6'] = {event = nil},

['Button7'] = {event = nil},

['Button8'] = {event = nil},

['Button9'] = {event = nil},

['Button10'] = {event = nil},

['Button11'] = {event = nil},

['Button12'] = {event = nil},

}

-- Private Functions

-- Public functions

function cdBar.init()

optionsWindow_hori = g_ui.displayUI(barra)

optionsWindow_vert = g_ui.displayUI('Vertical.otui')

optionsWindow_hori:setVisible(false)

optionsWindow_vert:setVisible(false)

------

local pos = {x = 10, y = 10}

optionsWindow_hori:setPosition(pos)

optionsWindow_vert:setPosition(pos)

------

optionsButton = TopMenu.addLeftButton('cdBarButton', 'cdBar', '/cdBar/cdBar.png', cdBar.toggle)

connect(g_game, { onGameStart = cdBar.online,

onGameEnd = cdBar.hide})

connect(g_game, 'onTextMessage', cdBar.barConfig)

cdBar.options = g_settings.getNode('cdBar') or {}

if g_game.isOnline() then

cdBar.online()

end

end

function cdBar.terminate()

disconnect(g_game, { onGameStart = cdBar.online,

onGameEnd = cdBar.hide})

disconnect(g_game, 'onTextMessage', cdBar.barConfig)

if g_game.isOnline() then

cdBar.offline()

end

optionsWindow_hori:destroy()

optionsWindow_hori = nil

optionsWindow_vert:destroy()

optionsWindow_vert = nil

optionsButton:destroy()

optionsButton = nil

cdBar.cleanEvents()

g_settings.setNode('cdBar', cdBar.options)

end

function cdBar.changeBar()

cdBar.hide()

if barra == 'Horizontal.otui' then

barra = 'Vertical.otui'

cdBar.show()

cdBar.toolTipChange()

g_game.talk('/reloadCDs')

elseif barra == 'Vertical.otui' then

barra = 'Horizontal.otui'

cdBar.show()

cdBar.toolTipChange()

g_game.talk('/reloadCDs')

end

end

function cdBar.barConfig(mode, text)

if not g_game.isOnline() then return end

if mode == MessageModes.Failure then

if string.find(text, '12//,') then

local t1 = text:explode(",")

if t1[2] == 'hide' then

cdBar.hide()

else

cdBar.show()

end

elseif string.find(text, '12|,') then

cdBar.atualizarCDs(text)

elseif string.find(text, '12&,') then

cdBar.toolTipChange(text)

end

end

end

function cdBar.barChange(but, num, lvl, lvlPoke)

if not g_game.isOnline() then return end

if not cdBar.getWindow():isVisible() then return end

local player = g_game.getLocalPlayer()

if num and num >= 1 then

local button = cdBar.getWindow():recursiveGetChildById('Button' ..but)

local pathOff = "/cdBar/imagens/"..button:getTooltip().."_off.png"

button:setImageSource(pathOff)

button:setText(num)

button:setColor('#FF0000') --#000080(azul) #006400(verde)

botoes['Button'..but].event = scheduleEvent(function() cdBar.barChange(but, num-1) end, 1000)

else

if botoes['Button' ..but] then

local button = cdBar.getWindow():recursiveGetChildById('Button' ..but)

if button:getTooltip() then

local pathOn = "/cdBar/imagens/"..button:getTooltip().."_on.png"

local pathOff = "/cdBar/imagens/"..button:getTooltip().."_off.png"

if tonumber(lvl) ~= nil and tonumber(lvlPoke) ~= nil and lvlPoke < lvl then

button:setImageSource(pathOff)

button:setText(lvl)

button:setColor('#FF0000')

elseif tonumber(lvl) ~= nil and player:getLevel() < lvl then

button:setImageSource(pathOff)

button:setText(lvl)

button:setColor('#FF0000')

else

button:setImageSource(pathOn)

button:setText("")

end

end

end

end

end

function cdBar.atualizarCDs(text)

if not g_game.isOnline() then return end

if not cdBar.getWindow():isVisible() then return end

local t = text:explode(",")

table.remove(t, 1)

local table = {}

for j = 1, 12 do

local t2 = t[j]:explode("|")

if tonumber(t2[3]) ~= nil then

table[j] = {t2[1], t2[2], t2[3]} --alterado v2.8

else

table[j] = {t2[1], t2[2]}

end

end

for i = 1, #table do

if tonumber(table[3]) ~= nil then

cdBar.barChange(i, tonumber(table[1]), tonumber(table[2]), tonumber(table[3])) --alterado v2.8

else

cdBar.barChange(i, tonumber(table[1]), tonumber(table[2]))

end

end

end

function cdBar.toolTipChange(text)

if barra == "Horizontal.otui" then

cdBar.getWindow():setHeight(490)

cdBar.getWindow():setWidth(65)

else

cdBar.getWindow():setWidth(480)

cdBar.getWindow():setHeight(80)

end

if not text then

text = nameAtks

else

nameAtks = text

end

local t2 = text:explode(",")

local count = 0

for i = 2, 13 do

if t2 == 'n/n' then

button = cdBar.getWindow():recursiveGetChildById('Button' ..(i-1)):hide()

count = count+1

else

button = cdBar.getWindow():recursiveGetChildById('Button' ..(i-1)):show()

button = cdBar.getWindow():recursiveGetChildById('Button' ..(i-1)):setTooltip(t2)

end

end

if count > 0 and count ~= 12 then

if barra == "Horizontal.otui" then

cdBar.getWindow():setHeight(490 - (count*38))

else

cdBar.getWindow():setWidth(480 - (count*38))

end

elseif count == 12 then

cdBar.getWindow():setHeight(40)

cdBar.getWindow():setWidth(50)

end

end

function cdBar.cleanEvents(button)

if button then

if botoes[button] then

if botoes[button].event ~= nil then

removeEvent(botoes[button].event)

botoes[button].event = nil

end

end

else

for i = 1, 12 do

removeEvent(botoes['Button'..i].event)

botoes['Button'..i].event = nil

end

end

end

function cdBar.getWindow()

if barra == 'Vertical.otui' then

return optionsWindow_vert

else

return optionsWindow_hori

end

end

function cdBar.toggle()

if cdBar.getWindow():isVisible() then

cdBar.changeBar()

end

end

function cdBar.show()

if g_game.isOnline() then

cdBar.getWindow():show()

end

end

function cdBar.hide()

scheduleEvent(cdBar.cleanEvents(), 100)

cdBar.getWindow():hide()

end

function cdBar.online()

if not g_game.isOnline() then

cdBar.hide()

end

end

function cdBar.offline()

if not g_game.isOnline() then

cdBar.hide()

end

end

Créditos:



Brun123

Nibelins

Slicer

Stigal (mapa)

StyloMaldoso (edições no mapa)

Slicer (Criador)

Meu Ultimo projeto em desenvolvimento!

 

http://www.tibiaking.com/forum/topic/47753-show-off-ultimo-projeto-para-download/

 

 

Grupo do facebook para OtServidores! (Divulgação + Criação de Equipe)

 

https://www.facebook.com/groups/otservidores/

 

Link para o post
Compartilhar em outros sites
  Em 29/11/2012 em 20:22, Legnus disse:

Não acredito que tu postou isso man'

Pra que? Me diz.

...

Expand   Mostrar mais  

Num entendi manow?

EdsonJunior: não Consigo Postar Scan minha net Num deixa mais Num tem Virus

Meu Ultimo projeto em desenvolvimento!

 

http://www.tibiaking.com/forum/topic/47753-show-off-ultimo-projeto-para-download/

 

 

Grupo do facebook para OtServidores! (Divulgação + Criação de Equipe)

 

https://www.facebook.com/groups/otservidores/

 

Link para o post
Compartilhar em outros sites
  • 1 month later...

Se ta loko cara ¬¬' tem que baixar as 1.7 etc.. tem o map ¬¬

Meu Ultimo projeto em desenvolvimento!

 

http://www.tibiaking.com/forum/topic/47753-show-off-ultimo-projeto-para-download/

 

 

Grupo do facebook para OtServidores! (Divulgação + Criação de Equipe)

 

https://www.facebook.com/groups/otservidores/

 

Link para o post
Compartilhar em outros sites

Esse serve é bom, só fazer uns ajuste e fica bom :)

Meus Trabalhos ^^

[bot] Macro Expert - repete seus movimentos / todas versões

Criando Houses no RME Map editor [NEW]

Hunt ótima para tibia 8.54

Galera, se inscreve no meu canal ai, tutoriais diversos, photoshop/tibia/habbo e muito mais.

Link para o post
Compartilhar em outros sites

po só to falando que quando começa o mapa é minimo e n tem hunts de pokemon pow , vo em cinnabar n tem respaw nenhum nem outras citys , o resto tudo ta bom mais é foda cara

Link para o post
Compartilhar em outros sites

Bom veey ai seis pede de mais Seis quer um Server 100% Faz o Seu Proprio Todos que estão para download é para base ¬¬'

Meu Ultimo projeto em desenvolvimento!

 

http://www.tibiaking.com/forum/topic/47753-show-off-ultimo-projeto-para-download/

 

 

Grupo do facebook para OtServidores! (Divulgação + Criação de Equipe)

 

https://www.facebook.com/groups/otservidores/

 

Link para o post
Compartilhar em outros sites

poha eu sei mais mapa só tem 2 city e cheio de bug man respaw ta 0 só tem os oddish e os pidgey MAIS ND poha ai fica foda mais o resto ta bom '-'

Link para o post
Compartilhar em outros sites
  • 10 months later...
  • 7 months later...

Ótimo Post..
Vou usar como base pro meu server vlw
A propósito vo posta o scan, aguardem o #Edit....

 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

 

#Edit

 

Server(Sem Lv Sistem)

Client

Ver.2.7(Com Lv)

Editado por heverton1221 (veja o histórico de edições)

~~~# Ajudei ?? || REP++ #~~~

Link para o post
Compartilhar em outros sites
  • 1 year later...

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.

  • Estatísticas dos Fóruns

    96837
    Tópicos
    519578
    Posts
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo