Tudo que ViitinG postou
-
Bug RME Pokemon
@slyton é extremamente proibído pedir/dar suporte fora do fórum amigo ! @Prezyoso vou pedir para que retira o skype do comentario por gentileza. Leia as regras do fórum : http://www.tibiaking.com/forum/forum/23-regras-do-forum/
-
Onde pegar as imagens dos items?
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Suporte OTServ → Suporte de OTServ Geral" Para: "OTServ → Suporte OTServ → Suporte de Servidores Derivados"
-
[HELP] Shop Com Alavanca
@pauliinho157 o script funciona perfeitamente porque eu usava em um servidor meu antigo TFS 0.3.6 e funcionava. Mande o erro se possível !
-
Ajuda mapa aparece no minimap mas não no RME
O título do tópico for alterado de : "ajudaaa" para "Ajuda mapa aparece no minimap mas não no RME". Leia as regras do fórum : http://www.tibiaking.com/forum/forum/23-regras-do-forum/
-
Script De Points
Você deve ter copiado algo de errado,tente excluir o script e adicionar novamente : local config = { storagekill = 119498, --- storage q conta a quantidade de kills } function onKill(cid, target, lastHit) local killed = getPlayerStorageValue(cid,config.storagekill) if isMonster(target) and getCreatureName(target):lower() == 'aegis' then if killed > config.times then doPlayerSendTextMessage(cid,22,"Congratulations, voce matou "..getCreatureName(target).." and earned "..points.." point(s)!") addPoints(cid,points,1) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você tem "..getPoints(cid).." Points.") else doPlayerSendTextMessage(cid,22,"Congratulations, voce matou "..getCreatureName(target).." and earned "..points.." point(s)!") addPoints(cid,points,1) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você tem "..getPoints(cid).." Points.") end end return true end
-
Master ball + boost
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Suporte OTServ → Suporte de Scripts" Para: "OTServ → Suporte OTServ → Suporte de Servidores Derivados"
- (Resolvido)[Duvida]IP CHANGER 10.41
- (Resolvido)[Duvida]IP CHANGER 10.41
-
Aol que dropa apenas para players
Amigo você criou 2 tópicos com a mesma dúvida,evite fazer isso porque isso é considerado double topic e é proibído aqui no fórum,preste mais atenção ! (o outro tópico foi exclúido por conter a mesma dúvida que este) Leia as regras do fórum : http://www.tibiaking.com/forum/forum/23-regras-do-forum/
-
[ Pedido ] otPokemon Com 5º Geração. #Gnals
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Downloads → Servidores Derivados" Para: "OTServ → Suporte OTServ → Suporte de Servidores Derivados"
-
um vps bom e barato pf?
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Suporte OTServ → Suporte de OTServ Geral" Para: "OTServ → Suporte OTServ → Suporte de Infraestrutura"
-
Net Com Wifi
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Infraestrutura OTServ" Para: "OTServ → Suporte OTServ → Suporte de Infraestrutura"
-
[Duvida] Spell Torta
@Natan Fernandes é proibído das UP antes de 24 horas amigo,preste mais atenção ! Leia as regras do fórum : http://www.tibiaking.com/forum/topic/1281-regras-gerais/?p=7680#entry7680
-
[talkaction] Teleport System (somente para TFS 1.0)
Tente trocar por este,não testei : function onSay(cid, words, param) local player = Player(cid) if teleport.premiumOnly and getPlayerPremiumDays(cid) < 1 and getPlayerGroupId(cid) < 4 then return doPlayerSendCancel(cid, "Voce precisar ser premium account para usar este comando.") end if words == "!saveTeleport" then if (isPlayerPzLocked(cid)) then savePortPosition(cid, string.lower(param)) else doPlayerSendCancel(cid, "Voce so pode salvar em uma house ou em protection zone") end elseif words == "!teleport" then local modal = ModalWindow(1, "Lista de Teleportes", "Escolha seu destino:") playerGuid = player:getGuid() local ret = false for var = 1, teleport.maxPortPoints do local slot = db.storeQuery("SELECT `name` FROM `player_teleport` WHERE `player_id` = " .. playerGuid .." AND slot = ".. var .."") if slot ~= false then local portName = result.getDataString(slot, "name") modal:addChoice(var, "".. portName .."") result.free(slot) ret = true end end if ret then modal:addButton(0x00, "Teleportar") modal:setDefaultEnterButton(0x00) end modal:addButton(0x01, "Cancelar") modal:setDefaultEscapeButton(0x01) modal:sendToPlayer(player) elseif words == "!deleteTeleport" then local modal = ModalWindow(2, "Lista de Teleportes", "Escolha qual voce quer deletar:") playerGuid = player:getGuid() local ret = false for var = 1, teleport.maxPortPoints do local slot = db.storeQuery("SELECT `name` FROM `player_teleport` WHERE `player_id` = " .. playerGuid .." AND slot = ".. var .."") if slot ~= false then local portName = result.getDataString(slot, "name") modal:addChoice(var, "".. portName .."") result.free(slot) ret = true end end if ret then modal:addButton(0x00, "Deletar") modal:setDefaultEnterButton(0x00) end modal:addButton(0x01, "Cancelar") modal:setDefaultEscapeButton(0x01) modal:sendToPlayer(player) end return false end
-
Erro quando abro map Poketibia
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Suporte OTServ → Suporte de Mapping" Para: "OTServ → Suporte OTServ → Suporte de Servidores Derivados"
-
Ajuda [Spawn::addMonster] Cannot find "Grim Reaper Vip
O título do tópico for alterado de : "Ajuda por favor" para "Ajuda [spawn::addMonster] Cannot find "Grim Reaper Vip". Leia as regras do fórum : www.tibiaking.com/forum/forum/23-regras-do-forum/ O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Suporte OTServ → Suporte de WebSites" Para: "OTServ → Suporte OTServ → Suporte de Mapping"
-
erro quando vou subtituir ou adicionar sprites de pokemon no dat editor
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Suporte OTServ → Suporte de Scripts" Para: "OTServ → Suporte OTServ → Suporte de Programação"
-
(resolvido) Erro rep syst
@Maikao zika você reviveu um tópico de 2012 no intuito de resolver uma dúvida que não está relacionada ao assunto do tópico.Crie um tópico ao em vez de percorrer á um tópico antigo para comentar amigo ! Leia as regras do fórum : http://www.tibiaking.com/forum/topic/1281-regras-gerais/?p=7680#entry7680
-
TALKACTION DUPLICADA, NÃO CONSIGO ACHAR
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Suporte OTServ → Suporte de OTServ Geral" Para: "OTServ → Suporte OTServ → Suporte de Scripts"
-
PLAYERS NÃO DESLOGAM
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Suporte OTServ → Suporte de OTServ Geral" Para: "OTServ → Suporte OTServ → Suporte de Scripts"
-
Pedido Server Erondino V.9
O tópico foi movido para a área correta, preste mais atenção da próxima vez! Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680 Este tópico foi movido: De: "OTServ → Downloads → Servidores Derivados" Para: "OTServ → Suporte OTServ → Suporte de Servidores Derivados"
-
League of Legends - Tibia
@Vills cuidado com flood amigo,mensagens sem conteúdo, que não contribuem em nada ou que não estejam relacionadas ao assunto do tópico. Mensagens assim são chamadas de Floods e é proibído em nosso fórum brother ! Leia as regras do fórum : http://www.tibiaking.com/forum/topic/1281-regras-gerais/?p=7680#entry7680
-
[talkaction] Teleport System (somente para TFS 1.0)
Tenta agora amigo : function onSay(cid, words, param) local player = Player(cid) if teleport.premiumOnly and getPlayerPremiumDays(cid) < 1 and getPlayerGroupId(cid) < 4 then return doPlayerSendCancel(cid, "Voce precisar ser premium account para usar este comando.") end if words == "!saveTeleport" then if Tile(getThingPos(cid)):getHouse() and getTilePzInfo(getThingPos(cid)) then savePortPosition(cid, string.lower(param)) else doPlayerSendCancel(cid, "Voce so pode salvar em uma house ou em protection zone") end elseif words == "!teleport" then local modal = ModalWindow(1, "Lista de Teleportes", "Escolha seu destino:") playerGuid = player:getGuid() local ret = false for var = 1, teleport.maxPortPoints do local slot = db.storeQuery("SELECT `name` FROM `player_teleport` WHERE `player_id` = " .. playerGuid .." AND slot = ".. var .."") if slot ~= false then local portName = result.getDataString(slot, "name") modal:addChoice(var, "".. portName .."") result.free(slot) ret = true end end if ret then modal:addButton(0x00, "Teleportar") modal:setDefaultEnterButton(0x00) end modal:addButton(0x01, "Cancelar") modal:setDefaultEscapeButton(0x01) modal:sendToPlayer(player) elseif words == "!deleteTeleport" then local modal = ModalWindow(2, "Lista de Teleportes", "Escolha qual voce quer deletar:") playerGuid = player:getGuid() local ret = false for var = 1, teleport.maxPortPoints do local slot = db.storeQuery("SELECT `name` FROM `player_teleport` WHERE `player_id` = " .. playerGuid .." AND slot = ".. var .."") if slot ~= false then local portName = result.getDataString(slot, "name") modal:addChoice(var, "".. portName .."") result.free(slot) ret = true end end if ret then modal:addButton(0x00, "Deletar") modal:setDefaultEnterButton(0x00) end modal:addButton(0x01, "Cancelar") modal:setDefaultEscapeButton(0x01) modal:sendToPlayer(player) end return false end
- [Battlefield Event New!] Exclusivo e mais legal ;p
- Conheciam/conhecem o pbOT?