Tudo que Wend postou
-
(Resolvido)Mudar Ip E Trocar Link De Fb
2° ?
-
(Resolvido)Mudar Ip E Trocar Link De Fb
1° coloque o Host do no-ip no seu navegador 3° mim mande o seu config.php da pasta htdocs
-
(Resolvido)Mudar Ip E Trocar Link De Fb
1° Já tem um host no no-ip? 2° C:\xampp\htdocs\templates 3° C:\xampp\htdocs no seu config.php
-
Duvida proteger tibia.spr | tibia.dat | tibia.pic
ai você vai ter que arruma um Programado para isso *--* Mais por enquanto o único jeito de esconder é só Desse modo ai
-
Duvida proteger tibia.spr | tibia.dat | tibia.pic
Não, com um certo programa podem descompilar Mais fazer oque ter o OTClient da PxG os caras conseguem pega Spr e Dat.
-
Duvida proteger tibia.spr | tibia.dat | tibia.pic
é isso que vocês querem? https://www.youtube.com/watch?v=GSxA2lOChtE
- Pedido(Sistema de Sexo para dash)
-
Shaders do OTClient
Olá Galera do TK Eu achei aqui no fórum mesmo umas shaders de chuva para meu otclient, configurei certinho mais só que quando abro o OTC e vou no local que configurei está normal chuvendo direitinho mais quando ando uma sqm pra qualquer lado (Direito ou Esquerdo) para de chuve fica normal, só achei estranho por que tenho outro shader de neblina e ele Funciona normal na cidade Toda. shaders.lua imagens de como está Esperando Resposta
-
como importar a database maior que 2 mbs para o xampps ?
Deixe ela com Formato RIP o Nome vai ficar mais ou menos assim >> otserver.sql.zip
-
Faça seu pedido aqui!
Você é d+ Manin Vallew Mesmo @Edit Sem querer abusa, mais já abusando poderia atender outro perdido? Assim acho quem você já viu os OTClient com o Background animado não ? queria que você fizesse um daqueles para mim, pode ser uma imagem bem legal com o nome pokexmostyer e você faria a animação entender? tipo uma GIF Link de tutorial para fazer esse tipo de imagem: Clique aqui Obs: tem que segui o Tutorial pois o OTC não aceita formato GIF *--*
- PDA By: [GOD Anna]
-
Qual sua opinião sobre cannabis ?
tudo pode fazer mal, até mesmo as coisas mais naturais. -- Daaniel
-
Qual sua opinião sobre cannabis ?
Poha, sou o único Do Fórum que nunca Fumei Maconha? @Topic Acho que deveriam Liberar, Pois é Coisa de Deus
-
System Addon
kkk Tá foda então porque aqui no servidor do bolz funciona Perfeitamente
-
System Addon
Tente essa: function onUse(cid, item, fromPosition, itemEx, toPosition) local addons = { [751] = {pokemon= "Electabuzz" , looktype = 1911, count = 1}, [748] = {pokemon= "Charizard" , looktype = 1910, count = 1}, [755] = {pokemon= "Blastoise" , looktype = 1909, count = 1}, [754] = {pokemon= "Shiny Nidoking" , looktype = 1914, count = 1}, [753] = {pokemon= "Arcanine" , looktype = 1908, count = 1}, [752] = {pokemon= "Shiny Golem" , looktype = 1913, count = 1}, } if #getCreatureSummons(cid) > 0 then doPlayerSendCancel(cid, "Please back your pokemon.") return false end local numero = addons[item.itemid].looktype local count = addons[item.itemid].count local pb = getPlayerSlotItem(cid, 8).uid local pk = addons[item.itemid].pokemon if pb <= 0 then doPlayerSendCancel(cid, "Desculpe, você não tem um "..pk.." no slot") return false end if getItemAttribute(pb,"poke") ~= pk then doPlayerSendCancel(cid, "Desculpe, você não pode usar esse addon nesse pokemon.") return false end local addon = tonumber(getItemAttribute(pb,"addon")) if not addon or addon < 1 then if doRemoveItem(item.uid, count) then doPlayerSendTextMessage(cid, 27, "Parabéns, você executou isso com sucesso. Para remover seu addon diga !addons remove") doSetItemAttribute(pb,"addon", numero) else doPlayerSendCancel(cid, "Você não tem o necessário para adicionar no seu "..pk..".") end return true end return true end
-
System Addon
Já tentou com a script que mandei ?
-
System Addon
Use o sistema de addon do Centurion acho que funcionará no Seu servidor
- PDA By: [GOD Anna]
-
Faça seu pedido aqui!
Ok, Agradeço
-
Erro globalevent zombie event
Essa script está desorganizada por que não usas outro Zombie Event?
-
Erro globalevent zombie event
aqui: local config = { playerCount = 2001, -- Global storage for counting the players left/entered in the event zombieCount = 2002, -- Global storage for counting the zombies in the event teleportActionId = 2000, -- Action id of the teleport needed for the movement script teleportPosition = {x = 154, y = 46, z = 6, stackpos = 1}, -- Where the teleport will be created teleportToPosition = {x = 532, y = 1058, z = 7}, -- onde o teleport vai levar teleportId = 1387, -- Id of the teleport timeToStartEvent = 2, -- Minutes, after these minutes the teleport will be removed and the event will be declared started timeBetweenSpawns = 20, -- Seconds between each spawn of zombie zombieName = "event zombie", -- Name of the zombie that should be summoned playersNeededToStartEvent = 2, -- Players needed before the zombies can spawn. -- Should be the same as in the creaturescript! -- The zombies will spawn randomly inside this area fromPosition = {x = 512, y = 1041, z = 7}, -- top left cornor of the playground toPosition = {x = 558, y = 1080, z = 7}, -- bottom right cornor of the playground } function onTime() local tp = doCreateTeleport(config.teleportId, config.teleportToPosition, config.teleportPosition) doItemSetAttribute(tp, "aid", config.teleportActionId) doBroadcastMessage("Zombie event starting in " .. config.timeToStartEvent .. " minutes! The teleport will be closed when the event start!", MESSAGE_STATUS_WARNING) setGlobalStorageValue(config.playerCount, 0) setGlobalStorageValue(config.zombieCount, 0) addEvent(startEvent, config.timeToStartEvent * 1000 * 60) print(getGlobalStorageValue(2001)) end function startEvent() local get = getThingfromPos(config.teleportPosition) if get.itemid == config.teleportId then doRemoveItem(get.uid, 1) end local fromp, top = config.fromPosition, config.toPosition if getGlobalStorageValue(config.playerCount) >= config.playersNeededToStartEvent then addEvent(spawnZombie, config.timeBetweenSpawns * 1000) doBroadcastMessage("Good luck in the zombie event people! The teleport has closed!", MESSAGE_STATUS_WARNING) for x = fromp.x, top.x do for y = fromp.y, top.y do for z = fromp.z, top.z do areapos = {x = x, y = y, z = z, stackpos = 253} getPlayers = getThingfromPos(areapos) if isPlayer(getPlayers.uid) then doPlayerSendTextMessage(getPlayers.uid, MESSAGE_EVENT_ADVANCE, "The first zombie will spawn in " .. config.timeBetweenSpawns .. " seconds! Good luck!") end end end end else doBroadcastMessage("The Zombie event could not start because of to few players participating.\n At least " .. config.playersNeededToStartEvent .. " players is needed!", MESSAGE_STATUS_WARNING) for x = fromp.x, top.x do for y = fromp.y, top.y do for z = fromp.z, top.z do areapos = {x = x, y = y, z = z, stackpos = 253} getPlayers = getThingfromPos(areapos) if isPlayer(getPlayers.uid) then doTeleportThing(getPlayers.uid, getTownTemplePosition(getPlayerTown(getPlayers.uid)), false) doSendMagicEffect(getPlayerPosition(getPlayers.uid), CONST_ME_TELEPORT) end end end end end end function spawnZombie() if getGlobalStorageValue(config.playerCount) >= 2 then pos = {x = math.random(config.fromPosition.x, config.toPosition.x), y = math.random(config.fromPosition.y, config.toPosition.y), z = math.random(config.fromPosition.z, config.toPosition.z)} doSummonCreature(config.zombieName, pos) doSendMagicEffect(pos, CONST_ME_MORTAREA) setGlobalStorageValue(config.zombieCount, getGlobalStorageValue(config.zombieCount)+1) doBroadcastMessage("A zombie has spawned! There is currently " .. getGlobalStorageValue(config.zombieCount) .. " zombies in the zombie event!", MESSAGE_STATUS_CONSOLE_RED) addEvent(spawnZombie, config.timeBetweenSpawns * 1000) end end
-
System Addon
Qual o erro no seu?
-
RME
você está usando o RME com suporte a client extendido? Si não use >> http://www.tibiaking.com/forum/topic/38665-remeres-map-editor-vers%C3%A3o-cliente-estendidaextended/
-
Faça seu pedido aqui!
Olá, Queria umas imagens mais Bonita e legal de que essa ai: http://prntscr.com/49frsy Os Pokemons e preços colocarei na lista abaixo esperando Resposta *--* Lista Sei que vai dar trabalho, Si não der para fazer avisa Ok?
-
(Resolvido)[Pedido] Frase que o player fala ao chamar pokémon!
Resolvido o problema?