Tudo que vankk postou
- Script dias vip
-
(Resolvido)[AJUDA] Transform
Verifique se está printando.
-
Bug que Faz o Servidor Cair
Tente verificar seus scripts um por um.
-
Aura atrás de Gamemasters
up!
-
AuraOT - Vankk
Eu estava? Nem eu sabia. Eu não tenho motivos para ficar derrubando apache de um servidor com nenhum jogador online. E faça aquilo que você quiser meu caro, quer disponibilizar? Siga em frente. Quem é essência não tem concorrente.
-
Aura atrás de Gamemasters
up!! Estamos procurando novos Gamemasters!!
-
(Resolvido)Função
https://www.lua.org/pil/22.1.html
-
Aura atrás de Gamemasters
Adicionei todos acima no Skype!
-
Algumas paradas editadas
Preciso de alguém que possa editar umas três imagens para mim, me adicionem no Skype, urgente!! vankk_ @Beeny
-
ADAPTAR WAR SYSTEM ANTI ENTROSA 8.60 PARA TFS 1.2
É realmente estranho alguém falar de Comunismo tendo um iPhone, internet, dinheiro, servidor, uma máquina, By the way, vivemos num país capitalista.
-
ADAPTAR WAR SYSTEM ANTI ENTROSA 8.60 PARA TFS 1.2
https://pt.wikipedia.org/wiki/Capitalismo
-
Wands e Rods com ataque zero
>> Global 10.96 do mitsuig Já começou errado, mas enfim, testa aumentando o dano no weapons.xml
-
Modern AAC Table Shop_
CREATE TABLE IF NOT EXISTS `shop_history` ( `id` int(11) NOT NULL AUTO_INCREMENT, `product` int(11) NOT NULL, `session` varchar(256) NOT NULL, `player` varchar(256) NOT NULL, `date` int(10) NOT NULL, `processed` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=31 ; CREATE TABLE IF NOT EXISTS `shop_offer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `points` int(11) NOT NULL DEFAULT '0', `category` int(11) NOT NULL DEFAULT '1', `type` int(11) NOT NULL DEFAULT '1', `item` int(11) NOT NULL DEFAULT '0', `count` int(11) NOT NULL DEFAULT '0', `description` text NOT NULL, `name` varchar(256) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ; CREATE TABLE IF NOT EXISTS `shop_donation_history` ( `id` int(11) NOT NULL AUTO_INCREMENT, `method` varchar(256) NOT NULL, `receiver` varchar(256) NOT NULL, `buyer` varchar(256) NOT NULL, `account` varchar(256) NOT NULL, `points` int(11) NOT NULL, `date` int(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
-
ADAPTAR WAR SYSTEM ANTI ENTROSA 8.60 PARA TFS 1.2
Acredito que não, porém, se você tiver feito o script e tudo mais, e quiser postar tudo bem, porém, se você tiver pego de alguém que comprou e postado seria desrespeito com a pessoa e também com quem fez o script, porque só quem fez esse tipo de script sabe o quanto CHATO que é
-
ADAPTAR WAR SYSTEM ANTI ENTROSA 8.60 PARA TFS 1.2
Vamos dizer assim, você tem um emprego, no final do mês você não espera ter sido pago pelo seu trabalho? Então, a mesma coisa de alguns scripts
-
Stamina Regeneration por Tile Trainers
Correto.
-
ADAPTAR WAR SYSTEM ANTI ENTROSA 8.60 PARA TFS 1.2
Eu de fato tenho o war anti entrosa, porém, é um script que não pode ser gratuito.
-
Stamina Regeneration por Tile Trainers
Não sei, tenho o script completo para ler
-
Stamina Regeneration por Tile Trainers
addSta = {} local config = { timeToAdd = 3, -- intervalo de tempo para adicionar. addTime = 5, -- quanto vai adicionar. } local function addStamina(playerId) local player = Player(playerId) if not player then return end player:setStamina(player:getStamina() + config.addTime) player:sendTextMessage(MESSAGE_EVENT_ADVANCE, string.format('You received %d minutes of Stamina.', config.addTime)) addSta[playerId] = addEvent(addStamina, config.timeToAdd * 60 * 1000, playerId) end function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() if not player then return true end local playerId = player:getId() addSta[playerId] = addEvent(addStamina, config.timeToAdd * 60 * 1000, playerId) return true end function onStepOut(creature, item, position, fromPosition) local player = creature:getPlayer() if not player then return true end local playerId = player:getId() stopEvent(addSta[playerId]) addSta[playerId] = nil return true end
-
push war
Foi bem específico, obrigado.
-
[DUVIDA] Comando no database
Se você não posta a dúvida como que eu vou saber qual que é?
-
Erro enchanted item.
Não existe a função getItemArmor em sua lib.
-
Problema com AddEvent
Se você não postar o código completo fica difícil verificar como que funciona a função na qual você quer no addEvent
-
pedra que ativa e desativa teleport
local function removesAid(newItem) if not newItem then return end newItem:setActionId(0) end function onUse(cid, item, fromPosition, itemEx, toPosition) local stonePosition = Position(5981, 465, 9) local stoneItem = Tile(stonePosition):getItemById(1756) if stoneItem then stoneItem:remove() end local teleportExists = Tile(stonePosition):getItemById(1756) if not teleportExists then local newItem = Game.createItem(1756, 1, stonePosition) if newItem then newItem:setActionId(33158) addEvent(removesAid, 10000, newItem) end end return true end
-
QUEST LOG NAO APARECE
Você trocou as suas sources? Talvez seja esse o motivo.