Tudo que jefteg3 postou
-
Script click = tp
Funcionou! TE AMOOO!
-
Script click = tp
Estava procurando uma script que quando o player clicasse em determinado item (placa, pedra, estatua, etc..), ele fosse teleportado para determinada área. Se alguém puder me ajudar, eu agradeço. TFS 1.3
-
COMANDO GOD
Assim, o god usa o comando, ai o teleport aparece e fica por um tempo ali naquele local e depois some, e sim, as posições serão fixas.
-
COMANDO GOD
Eu queria um script que, quando o god usar um comando, apareça um teleport em x posição que leva para outro local. TFS 1.0
-
[AJUDA] Aumentando dano de magia
Gostaria de aumentar o atk do exori gran ico e não sei por onde começar, alguém me ajuda? Script: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 1) setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_WEAPONTYPE) setCombatParam(combat, COMBAT_PARAM_USECHARGES, 1) function onGetPlayerMinMaxValues(cid, skill, attack, factor) local min = skill * attack / 17 + getPlayerLevel(cid) / 5 + 1 local max = skill * attack / 9 + getPlayerLevel(cid) / 5 + 6 return -min, -max end setCombatCallback(combat, CALLBACK_PARAM_SKILLVALUE, "onGetPlayerMinMaxValues") function onCastSpell(cid, var) return doCombat(cid, combat, var) end
- [Sistema] Battlefield Event! V.1
-
[Pedido] Bosses rushamuul prison
Poderia dizer onde achou para 1.1? Isso é fácil configurar para 1.0.
-
[AJUDA] NPC Haroun
Alguém pode me ajudar com esse npc? Ele só troca os items e não vende e nem compra nada: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end local function getTable() local list = { {name = 'Axe Ring', id = 2208, sell = 100, buy = 500}, {name = 'Club Ring', id = 2209, sell = 100, buy = 500}, {name = 'Power Ring', id = 2166, sell = 50, buy = 100}, {name = 'Stealth Ring', id = 2165, sell = 200, buy = 5000}, {name = 'Sword Ring', id = 2207, sell = 100, buy = 500}, {name = 'Bronze Amulet', id = 2172, sell = 50, buy = 100}, {name = 'Garlic Necklace', id = 2199, sell = 50, buy = 100}, {name = 'elven Amulet', id = 2198, sell = 100, buy = 500}, {name = 'Stone Skin Amulet', id = 2197, sell = 500, buy = 5000}, {name = 'Wand of Cosmic Energy',id = 2189, sell = 2000, buy = 0}, {name = 'Wand of Decay', id = 2188, sell = 1000, buy = 0}, {name = 'Wand of Defiance', id = 18390, sell = 6500, buy = 0}, {name = 'Wand of Everblazing', id = 18409, sell = 6000, buy = 0}, {name = 'Wand of Dragonbreath', id = 2191, sell = 200, buy = 0}, {name = 'Wand of Inferno', id = 2187, sell = 3000, buy = 0}, {name = 'Wand of Vortex', id = 2190, sell = 100, buy = 0}, {name = 'Wand of Draconia', id = 8921, sell = 1500, buy = 0}, {name = 'Wand of Starstorm', id = 8920, sell = 3600, buy = 0}, {name = 'Wand of Voodoo', id = 8922, sell = 4400, buy = 0}, {name = 'Magic Light Wand', id = 2162, sell = 35, buy = 120}, {name = 'Life Crystal', id = 4851, sell = 50, buy = 0}, {name = 'Mind Stone', id = 2178, sell = 100, buy = 0}, {name = 'Orb', id = 2176, sell = 750, buy = 0} } return list end function creatureSayCallback(cid, type, msg) local player = Player(cid) if(not npcHandler:isFocused(cid)) then return false end if isInArray({"enchanted chicken wing", "boots of haste"}, msg:lower()) then npcHandler:say('Do you want to trade Boots of haste for Enchanted Chicken Wind?', cid) npcHandler.topic[cid] = 1 elseif isInArray({"warrior Sweat", "warrior helmet"}, msg:lower()) then npcHandler:say('Do you want to trade 4 Warrior Helmet for Warrior Sweat?', cid) npcHandler.topic[cid] = 2 elseif isInArray({"fighting Spirit", "royal helmet"}, msg:lower()) then npcHandler:say('Do you want to trade 2 Royal Helmet for Fighting Spiri?t', cid) npcHandler.topic[cid] = 3 elseif isInArray({"magic sulphur", "fire sword"}, msg:lower()) then npcHandler:say('Do you want to trade 3 Fire Sword for Magic Sulphur?', cid) npcHandler.topic[cid] = 4 elseif isInArray({"job", "items"}, msg:lower()) then npcHandler:say('I trade Enchanted Chicken Wing for Boots of Haste, Warrior Sweat for 4 Warrior Helmets, Fighting Spirit for 2 Royal Helmet Magic Sulphur for 3 Fire Swords', cid) npcHandler.topic[cid] = 0 elseif msgcontains(msg,'yes') and npcHandler.topic[cid] <= 4 and npcHandler.topic[cid] >= 1 then local trade = { {NeedItem = 2195, Ncount = 1, GiveItem = 5891, Gcount = 1}, -- Enchanted Chicken Wing {NeedItem = 2475, Ncount = 4, GiveItem = 5885, Gcount = 1}, -- Flask of Warrior's Sweat {NeedItem = 2498, Ncount = 2, GiveItem = 5884, Gcount = 1}, -- Spirit Container {NeedItem = 2392, Ncount = 3, GiveItem = 5904, Gcount = 1}, -- Magic Sulphur } if player:getItemCount(trade[npcHandler.topic[cid]].NeedItem) >= trade[npcHandler.topic[cid]].Ncount then player:removeItem(trade[npcHandler.topic[cid]].NeedItem, trade[npcHandler.topic[cid]].Ncount) player:addItem(trade[npcHandler.topic[cid]].GiveItem, trade[npcHandler.topic[cid]].Gcount) return npcHandler:say(msg,'Here you are') else npcHandler:say('Sorry but you don\'t have the item', player) end elseif msgcontains(msg,'no') and (npcHandler.topic[cid] >= 1 and npcHandler.topic[cid] <= 5) then npcHandler:say(msg,'Ok then', player) npcHandler.topic[cid] = 0 npcHandler:releaseFocus(cid) end return true end local function onTradeRequest(cid) TradeRequest(cid, npcHandler, getTable(), BlueDjinn, 4) end npcHandler:setCallback(CALLBACK_ONTRADEREQUEST, onTradeRequest) npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new())
- Achievements & Reward Chest
-
Global 10.76 comeca sem itens! como faco pra arrumar
http://www.tibiaking.com/forum/topic/36403-global-full-10761077-tfs-10-lions-rock-cast-system-atualiza%C3%A7%C3%A3o-v11/
-
[AJUDA] Tempo de respawn
Resolvido
-
Global 10.76 comeca sem itens! como faco pra arrumar
O meu servidor foi baixado aqui. Meu servidor é o da Anapaula.
-
Global 10.76 comeca sem itens! como faco pra arrumar
Meu servidor é 10.76 tfs 1.0 e tem a pasta mods.
-
Global 10.76 comeca sem itens! como faco pra arrumar
Mas o firstitens dele está no Mods, só falta ele configurar.
-
Global 10.76 comeca sem itens! como faco pra arrumar
Tem sim, na paste mods.
-
Error ao tentar conectar ao meu website
Eu fiz umas conexões diferentes e consegui, só que está acontecendo outro error
-
Error ao tentar conectar ao meu website
Estou tentando isso pela primeira vez, e quando era pra aparecer a parte com as step 1,2,3,4, e 5 aparece isso Alguém tem algum toque para me dar?
-
Error no Step
Estou tentando fazer isso pela primeira vez, e na hora de aparecer a aba de step aparece isso Alguém poderia me dar um toque?
- Gostaria de saber como ver o mapa por completo para eu tirar uma SS
- Ajuda com PvP Tile.
-
Ajuda com PvP Tile.
Seria isso? function onStepIn(cid, item, position, fromPosition) --alterado v1.7 reformulado e melhorado if isSummon(cid) or ehMonstro(cid) then return false end --alterado v1.8 local posis = { --{{pos}, storage, cor da roupa}, [25695] = {{x = 1004, y = 997, z = 13}, 6598754, 113}, [25696] = {{x = 965, y = 997, z = 13}, 6598755, 107}, [25697] = {{x = 970, y = 1069, z = 13}}, [25698] = {{x = 970, y = 1069, z = 13}}, } local action = posis[item.actionid] local out = getPlayerSex(cid) == 0 and 511 or 510 --alterado v1.9 if getPlayerStorageValue(cid, 17001) == 1 or getPlayerStorageValue(cid, 5700) >= 1 or getPlayerStorageValue(cid, 17000) == 1 then doPlayerSendCancel(cid, "You can't do that while ride/fly/or in a bike.") doTeleportThing(cid, fromPosition, false) --alterado v1.6 return true end if getPlayerStorageValue(cid, 52480) >= 1 then doPlayerSendCancel(cid, "You are already dueling!") doTeleportThing(cid, fromPosition, false) --alterado v1.6 return true end if posis[item.actionid] then if isInArray({25695, 25696}, item.actionid) then setPlayerStorageValue(cid, action[2], 1) doSetCreatureOutfit(cid, {lookType = out, lookBody = action[3], lookHead = action[3], lookLegs = action[3], lookFeet = action[3]}, -1) else setPlayerStorageValue(cid, 6598754, -1) setPlayerStorageValue(cid, 6598755, -1) doRemoveCondition(cid, CONDITION_OUTFIT) end doTeleportThing(cid, getClosestFreeTile(cid, action[1]), false) elseif item.actionid == 24158 then if getCreatureCondition(cid, CONDITION_INFIGHT) == TRUE then doPlayerSendCancel(cid, "You can't do that while is in battle!") doTeleportThing(cid, fromPosition, false) end end return true end
- Ajuda com PvP Tile.