Tudo que tonyplyson postou
-
(RESOLVIDO) [PEDIDO] Script Creature
LoL ty ´SA´SAKSAOSK
-
(RESOLVIDO) [PEDIDO] Script Creature
Vou pegar aqui para voce . <event type="advance" name="UpTeleport" event="script" value="nomedoarquivo.lua"/> Edit o Nome do "nomedoarquivo" para o nome do seu arquivo '-' , agora em Login.lua <ainda dentro da pasta creaturescripts , adicione registerCreatureEvent(cid, "UpTeleport")
-
(RESOLVIDO) [PEDIDO] Script Creature
Editado , script teleportando por tempo.
-
[AJUDA] Site com problema?
eae luck , bão ? '-' , aqui o seu site funfo perfeitamente \o/
-
(RESOLVIDO) [PEDIDO] Script Creature
CreatureScript -- , Tenta Isso
-
[PROJETO] Arton - ATS ~~ The New World Official
Introdução Arton é um server pensado no RPG onde iram ter várias quest e sistemas inovadores. Ás classes principais são Mage/ Warrior / Elf. Os jogadores deveram encontrar seus próprios caminhos, traçar seu caminho á glória e honra. O server irá trazer grandes novidades no setor de sistemas, os itens do personagem influenciaram muito. História Fundado no dia 2 de Novembro de 2012, jogo baseado no RPG contemporâneo. Buscando um server perfeito, a equipe do Arton decidiu tomar a iniciativa e criar um serve onde os jogadores poderiam escrever a sua história. Sistemas Sistema de Asas (Player Com Fly) Sistema de Forja (Aprimoraçao de Equipamentos) Mineração() Sistema de Barco (Rota definida) Novo sistema de spells (Cooldown Bar) Sistema de Cast (Tv System) Npc Tutorial (Ensinando a jogar como uma animaçao) REVELAREMOS ATÉ AQUI. Equipe: Mapper: __KaiqueGabriel, TutuStyle+) Programadores: Tony_PlySon, Jhonas_Ottl, Maguila Spriter: Victor Hugo, Nogard, _Heron:@_ Designer: Bruno(Nick) RPG Maker : Bruno(Nick) Alguns Videos #Teasers Algumas Imagens disponível em nosso facebook. ------------------------------------------------------------------------- Formação de Equipe : (Cargos e Vagas) Mapper [1 VAGAS] Spriter [1 VAGAS] Progamador (.LUA or C++) [1 VAGA] Designer [1 VAGA] --------------------------------------------------------- Curriculum : Name/Nick : Idade (Opcional) : Cargo : Tempo que atua nesse cargo : MSN: SKYPE: Adicional : (Conte porque está afim de participar do Arton) Curta nossa pagina no facebook
-
(Cooldown-Bar) // Arton - ATS
Noosssa galera , obrigado ai !! ,
-
(Cooldown-Bar) // Arton - ATS
Olá galera, hoje eu vou mostrar uma especie de Cooldown Bar do servidor Arton - ATS . Espero que gostem Comentem , Pliix
-
[PEDIDO] script
function onUse(cid,item,item2,topos,frompos,pos) itemenviado = 2151 -- Item que irá ser enviado /arrume a seu gosto pos = {x=321, y=123, z=7} -- Posiçao que irá aparecer o item doCreateItem(itemenviado,1,pos) end
-
Cast System 8.60 Alguem ?
Um amigo meu vai me passar as sourcers no 9.7, eu pego e transformo em 8.60 e te passo , me add msn ! [email protected] OBS: tambem irei postar ao forum .
-
Durability + NPC System // Arton - ATS
@Arrumado.
-
Durability + NPC System // Arton - ATS
Olá galera, hoje eu vou mostrar o sistema de durabilidade mais NPC de reparaçao.
-
Arena dos Pixels #13 - Postagens
Nossa , aii siim;) , porradero de pixels \o/
- Script remover tile
-
P.O Battle - Adventure [Prévia]
Ooh Sistema de voo se parece um pouco com o boat system do meu sv '-' , poréém mtt shoow , espero que fike online!
-
Sistema de criar asas // Maker Wings (Arton ATS)
Olá bandiputo , hoje eu vou mostrar o sistema de criaçao de asas do Arton ATS <www.facebook.com/artonats> MSN : [email protected]
- Projeto Baiak
-
[HELP] Private Shop System
o carinha falo que so funfa em 0.4 '-'
-
item exp
AGORA O SCRIPT SOH ESTA DISPONIVEL EM MOD: Vá na pasta mods e adicione um arquivo.xml com o nome de ExpPotion.xml e bote isso: <?xml version="1.0" encoding="UTF-8"?> <mod name="AdvancedExpPotionSystem" enabled="yes" author="MatheusMkalo" forum="#####.com"> <!-- Configs and Functions --> <config name="PotionExpConfigs"><![CDATA[ ------ CONFIGURE SEU SCRIPT ------ TRUE ou FALSE configs = { time = 1, ---- TIME IN MINUTES needpa = TRUE, needlvl = {TRUE, level = 50}, costmana = {TRUE, mana = 300}, addrate = 20, -- Exp que vai adicionar em % removeonuse = TRUE } function getTime(s) local n = math.floor(s / 60) s = s - (60 * n) return n, s end CreatureEventChecker = function(event, ...) -- Colex if isCreature(arg[1]) then event(unpack(arg)) end end creatureEvent = function(event, delay, ...) -- Colex addEvent(CreatureEventChecker, delay, event, unpack(arg)) end function getPlayerExtraExpRate(cid) -- By MatheusMkalo return (getPlayerRates(cid)[8]-1)*100 end ]]></config> <!-- exppotion.lua --> <action itemid="7440" event="script"><![CDATA[ domodlib('PotionExpConfigs') if getPlayerStorageValue(cid, 62164) >= 1 then return doPlayerSendCancel(cid, "You are already taking effect from this item.") end if configs.needpa and not isPremium(cid) then return doPlayerSendCancel(cid, "You need to be a premmium account to use this item.") end if configs.needlvl[1] and getPlayerLevel(cid) < configs.needlvl.level then return doPlayerSendCancel(cid, "You need to be level " .. configs.needlvl.level .. " to use this item.") end if configs.costmana[1] then if getCreatureMana(cid) < configs.costmana.mana then return doPlayerSendCancel(cid, "You need " .. configs.costmana.mana .. " mana to use this item.") else doCreatureAddMana(cid, -configs.costmana.mana) end end if configs.removeonuse then doRemoveItem(item.uid, 1) end for i = configs.time*60, 1, -1 do local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60)) if #a < 4 then a = string.sub(a,1,2) .. "0" .. string.sub(a, 3) end if i == configs.time*60 then creatureEvent(doPlayerSendCancel, configs.time*60*1000, cid, "The effect of the exp potion end.") end creatureEvent(doPlayerSendCancel, (configs.time*60-i)*1000, cid, "The effect of the exp potion will end in "..a..".") end doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100)) creatureEvent(doPlayerSetExperienceRate, configs.time *60*1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100))) doPlayerSendTextMessage(cid, 22, "Agora voce ira receber mais exp por matar os mosntros.") setPlayerStorageValue(cid, 62164, os.time()) creatureEvent(setPlayerStorageValue, configs.time *60*1000, cid, 62164, 0) return TRUE ]]></action> <creaturescript type="login" name="ExpPotion" event="script"><![CDATA[ domodlib('PotionExpConfigs') local time = configs.time if os.time()-getPlayerStorageValue(cid, 62164) < time *60 then doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100)) creatureEvent(doPlayerSetExperienceRate, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100))) creatureEvent(setPlayerStorageValue, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000 , cid, 62164, 0) for i = (time*60-(os.time()-getPlayerStorageValue(cid, 62164))), 1, -1 do local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60)) if #a < 4 then a = string.sub(a,1,2) .. "0" .. string.sub(a, 3) end if i == (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) then creatureEvent(doPlayerSendCancel, (time*60-(os.time()-getPlayerStorageValue(cid, 62164)))*1000, cid, "The effect of the exp potion end.") end creatureEvent(doPlayerSendCancel, ((time*60-(os.time()-getPlayerStorageValue(cid, 62164)))-i)*1000, cid, "The effect of the exp potion will end in "..a..".") end end return TRUE ]]></creaturescript> </mod> Credits : MatheusMkalo
-
clicar em uma arvore e ganhar frutas(coco,manga,laranja e banana)
Voce poderia por com Random , para dar X quantidade de Frutas . Use esse aqui : function onUse(cid,item,item2,topos,frompos,pos) random = math.random(1,100) -- Isso ai vai dar random de 1 em 100 , ou seja , tera chance de sair 1 até 100 item = 2160 -- Id do item que irá adicionar doPlayerAddItem(cid,item,random) doPlayerSendTextMessage(cid,27,"Voce colheu frutos.") end end Poréém , ótimo script =x
- Como criar TalkAction de spellbook (!spells)
- Templo Yurots
- VictorFT Mapping Thread
-
Minha internet está bugada?
olá galera do tibiaking , eu pedi para almentar minha net para 10 Megas e quando me deparo com o teste ... oiem isso <OBS :eu ja fiz o teste umas 6 vezes e nao fica abaixo de 100 Megas , é minha net q ta bugada , o site ou os carinhas colocaram megas amais ? -'
-
WarWolf = Gay ? o.0
PAP´SLPAS´SA´SLASKOSAKPKAOOSKASOPAKSAPSKASOAKSOk , viadagem agora tem aver com letra? '0'