Tudo que luanluciano93 postou
-
[TFS 1.x] Gaz'Haragoth (Heal + Magia + Teleport)
up
- [TFS 1.x] TK Vip System
- Novo Sistema de Trainer
-
Dúvida Cronos Bot
Alguém já ouviu falar? Alguém já comprou? Usou? testou?
- [TFS 1.3 10.98] ALUNIA 2020 - Styller Custom
- [8.60] Sistema de Recompensa Loot De Boss Compartilhado (reward chest)
-
Claudio Graphic Gallery
Muito bonito, parabéns.
-
Como funciona o sistema de outfit
Em outfits.xml não tem em cada outfit a opção unlocked="no" ?
-
(Resolvido)2 Erros Aparecem Depois De Instalar Script
Substitui a linha 7 do rewardchest_pontos.lua por esta: if getPlayerStorageValue(cid, value.storage) ~= nil then
- DUCA: o melhor evento para otserv (8.60)
- [8.60] Sistema de Recompensa Loot De Boss Compartilhado (reward chest)
-
Item que adiciona 10 dias de premium account
@aldenes qual a versão do seu TFS e qual sistema de vip você usa?
-
Como arranjar uma base para um server de baiak com TFS 1.2?
Leia sobre esse meu projeto: Também tem ele no github: https://github.com/luanluciano93/alunia Ficarei grato em tirar suas dúvidas.
- DUCA: o melhor evento para otserv (8.60)
-
[8.60] Sistema de Recompensa Loot De Boss Compartilhado (reward chest)
Obrigado pela observação, já corrigi. function onReceiveMail(cid, sender, item, openBox) if sender then local nome = getCreatureName(sender) if item.itemid == 2598 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, ''.. getCreatureName(cid) ..' você acabou de receber uma carta de '..nome..'.') elseif item.itemid == 2596 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, ''.. getCreatureName(cid) ..' você acabou de receber um parcel de '..nome..'.') end end return true end
-
DUCA: o melhor evento para otserv (8.60)
@elielder fui verificar o código, porque faz muito tempo que não entrava no fórum e lembrei que coloquei uma verificação de anti-MC nele ... fica em movements: for _, uid in pairs(getPlayersOnline()) do if getPlayerIp(cid) == getPlayerIp(uid) and getPlayerStorageValue(uid, DUCA.STORAGE_TEAM) > 0 then doTeleportThing(cid, fromPosition) return false end end Ele verifica se o IP do player que quer entrar no teleport, caso algum player online que tenha o mesmo IP desse jogador já esteja dentro do evento, esse segundo player não poderá entrar ... Para facilitar os seus testes, é melhor você retirar essa parte do script e depois que terminar colocar novamente. OBS: Irei atualizar no código para aparecer uma mensagem de erro para isso. Arquivo atualizado: "DUCA_movements.lua"
-
Quests Simples em um unico script
function onUse(cid, item, fromPos, item2, count, toPos) local config = { [1] = {aid = 1234, item = 2160, quant = 25}, -- Aqui gostaria de colocar a quantidade 25 e colocar mais de um item em um unico bau. [2] = {aid = 1235, item = 2195, quant = 1}, [3] = {aid = 1231, item = 3121, quant = 1} } for i = 1, #config do config.storage = 202049 + i end for i, valor in ipairs(config) do if item.actionid == valor.aid then if getPlayerFreeCap(cid) >= getItemWeightById(valor.item, valor.quant) then if getPlayerStorageValue(cid, valor.storage) <= 0 then if doPlayerAddItem(cid, valor.item, valor.quant, false) then doPlayerSendTextMessage(cid, 22, 'You have found a '..valor.quant..' '..getItemNameById(valor.item)..'.') setPlayerStorageValue(cid, valor.storage, 1) else doPlayerSendTextMessage(cid, 22, 'You have found a '..valor.quant..' '..getItemNameById(valor.item)..', but you need a free slot.') end else doPlayerSendTextMessage(cid, 22, 'It is empty.') end else doPlayerSendTextMessage(cid, 22, 'You have found a '..valor.quant..' '..getItemNameById(valor.item)..'. It weighs '..getItemWeightById(valor.item, valor.quant)..'.00 and it is too heavy.') end end end return true end
-
Shop entregando vários itens
Dependendo de qual é o seu TFS, pode ser o interval o problema. Alguns TFS 0.4 lêem o interval em milésimos, então se você deixar apenas 5 como esta no seu ele irá executar a ação várias vezes até atualizar e o sistema "entender" que ele já foi entregue. Tente mudar de 5 para 5000.
-
Shop entregando vários itens
qual tag você está usando em globalevents.xml?
- DUCA: o melhor evento para otserv (8.60)
-
Mapa Full RPG Maker!
?
-
Sou filho do Chuck Norris ...
Sou um membro lendário, bjs, zerei essa porra!
- DUCA: o melhor evento para otserv (8.60)
- Yurots 11x — Formação de Equipe
-
[TFS 1.x] TK Vip System
@vine96 -- !checkvip function onSay(player, words, param) if player:isVip() then local vipTime = player:getVipTime() - os.time() local vipDays = 1 + (math.floor(vipTime / 86400)) if player:getVipTime() ~= false then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, 'You have '.. vipDays .. ' vip day(s) in your account.') end else player:sendCancelMessage('You do not have any vip days.') end return false end