-
Total de itens
1213 -
Registro em
-
Última visita
-
Dias Ganhos
8
Tipo de Conteúdo
Perfis
Fóruns
Calendário
Publique
Tudo que Snowsz postou
-
(Resolvido)como tira opção de troca de idioma do OTclient?
Snowsz respondeu ao tópico de Coul em Suporte OTServer Derivados (Resolvidos)
No seu otclient em \modules\client_options no arquivo game.otui remova isso e salve: Button id: changeLocale !text: tr('Change language') @onClick: modules.client_locales.createWindow() anchors.top: prev.bottom anchors.left: prev.left margin-top: 5 width: 120 -
No da CipSoft dá sim, só que por DLLs, no Otclient, já é fácil
-
Programação [C++] Malformed File
Snowsz respondeu ao tópico de runeraserver em Scripts tfs 0.4 (OLD)
Dependendo do servidor pode demorar para ligar, ou seja, isso é para adiantar o ligamento do servidor, acelerar. -
Eu curti bastante, hehe, que tal seções? Tipo "Geral, Items para addon, Items para quest, Ofertas via MENSAGEM!, etc..." ?
-
(Resolvido)Ajuda com porta automática
Snowsz respondeu ao tópico de Developer Berg em Suporte Tibia OTServer (Resolvidos)
meu deus Você não editou o arquivo.lua ? Reveja o que fez errado. -
O meu ou o dele ? Por precaução, vou passar os dois kk My: adelsojunior1 Summ: flavio.mdt
-
VC QUE INVENTOU ISSO INFELIZ, AGORA AGUENTE! KKKKKKKKKKKKKK SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO... SPAM BRANCO...
-
PEDIDO Segunda promotion VIP e NPC [TFS 1.0]
Snowsz respondeu ao tópico de Andreselos1988 em Suporte Tibia OTServer
Sim, eu acho... -
Hoje sim infeliz! kkk
-
Quem quotar por último vence!
-
(Resolvido)[Pedido] Npcs Guild Points
Snowsz respondeu ao tópico de QuebradaZN em Suporte Tibia OTServer (Resolvidos)
Qual sistema de guild points você usa ? -
(Resolvido)Ajuda calculo de mana gasta spell
Snowsz respondeu ao tópico de gmstrikker em Suporte Tibia OTServer (Resolvidos)
local manaporlevel = 3 local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HITAREA) setCombatParam(combat, COMBAT_PARAM_USECHARGES, true) local area = createCombatArea(AREA_SQUARE1X1) setCombatArea(combat, area) function onGetFormulaValues(cid, level, maglevel) min = ( (maglevel * 30) * 0.5 ) * -1 max = ( (maglevel * 30) * 1.0 ) * -1 return min, max end setCombatCallback(combat, CALLBACK_PARAM_LEVELMAGICVALUE, "onGetFormulaValues") function onCastSpell(cid, var) if getPlaye -
e a tag dele no xml <action uniqueid="Id unique que sera colocado no item x que ira teleportar" event="script" value="Nome do Arquivo criado.lua"/> bom se alguém conseguir arrumar o erro eu agradeço xD Qual o erro, você nem coloca isso
-
PEDIDO Segunda promotion VIP e NPC [TFS 1.0]
Snowsz respondeu ao tópico de Andreselos1988 em Suporte Tibia OTServer
Testa lá... -
(Resolvido)Ajuda com porta automática
Snowsz respondeu ao tópico de Developer Berg em Suporte Tibia OTServer (Resolvidos)
Você está confundindo tudo, explique tudo melhor por favor. -
PEDIDO Segunda promotion VIP e NPC [TFS 1.0]
Snowsz respondeu ao tópico de Andreselos1988 em Suporte Tibia OTServer
Não queria fazer tabela, mas... Tenta assim então: local money = xxxx -- Quanto vai custar local storage = 14542 -- Não mexer local promotions = { --[id da vocação atual] = id da vocação ganha, [1] = 1, [2] = 1, [3] = 1, [4] = 1, } 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, typ -
(Resolvido)Comando !stamina
Snowsz respondeu ao tópico de .HuRRiKaNe em Suporte Tibia OTServer (Resolvidos)
Tag: <talkaction words="!stamina" event="script" value="staminarefil.lua"/> Crie um arquivo com o nome staminarefil.lua em data/talkactions/scripts e troque tudo que tem dentro por isso: local money = 5000 function onSay(cid, words, param) if getPlayerMoney(cid) >= money then doPlayerRemoveMoney(cid, money) setPlayerStamina(cid, 2880) else doPlayerSendCancel(cid, "You don't have money to refil your stamina.") end return true end -
PEDIDO Segunda promotion VIP e NPC [TFS 1.0]
Snowsz respondeu ao tópico de Andreselos1988 em Suporte Tibia OTServer
A sim, faltou uma função, tenta agora: local money = xxxx -- Quanto vai custar local storage = 14542 -- Não mexer 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 creatureSayCallback(cid, type, msg) if -
(Resolvido)[Pedido] Efeitos texto animado ao upar skill,level,etc.
Snowsz respondeu ao tópico de Coul em Suporte Tibia OTServer (Resolvidos)
Em creaturescripts.xml adicione essa tag: <event type="advance" name="SkillUpText" event="script" value="skilluptext.lua"/> Em creaturescripts/scripts crie um arquivo com o nome "skilluptext.lua" e troque tudo que tem dentro por isso: local config = { [0] = {msg = "Fist UP!", textcolor = 0}, [1] = {msg = "Club UP!", textcolor = 0}, [2] = {msg = "Sword UP!", textcolor = 0}, [3] = {msg = "Axe UP!", textcolor = 0}, [4] = {msg = "Dist UP!", textcolor = 0}, [5] = {msg = "Shield UP!", textcolor = 0}, [6] = {msg = "Fish UP!", textcolor = 0}, [7] = {msg = "Magic UP!", textcolor = 0}, -
(Resolvido)[PEDIDO] Criar NPC com função de teletransportar [TFS 1.0]
Snowsz respondeu ao tópico de Boush em Suporte Tibia OTServer (Resolvidos)
No arquivo xml que você quer seu npc coloque isso: <?xml version="1.0" encoding="UTF-8"?> <npc name="Questeiro" script="questeiro.lua" walkinterval="0" speechbubble="1" floorchange="0"> <health now="100" max="100" /> <look typeex="9242" head="98" body="95" legs="115" feet="114" addons="0"/> <parameters> <parameter key="message_greet" value="Ola jogador voce deseja me ajudar? Diga {quest}" /> </parameters> </npc> No arquivo .lua que você vai utilizar no seu npc, coloque isso: local keywordHandler = KeywordHandler:new() local npc -
PEDIDO Segunda promotion VIP e NPC [TFS 1.0]
Snowsz respondeu ao tópico de Andreselos1988 em Suporte Tibia OTServer
Tenta dessa vez assim kk: local money = xxxx -- Quanto vai custar local storage = 14542 -- Não mexer 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 creatureSayCallback(cid, type, msg) if not npcHandler -
(Resolvido)(AJUDA) Começando com addons full
Snowsz respondeu ao tópico de luuisbarbosa em Suporte Tibia OTServer (Resolvidos)
Tenta isso: Crie um arquivo chamado "loginaddon" em data/creaturescripts/scripts com a extensão ".lua", ficando: "loginaddon.lua" e troque tudo que tem dentro por isso: local storage = 15984 function onLogin(cid) if getPlayerStorageValue(cid, storage) <= 0 then doPlayerAddAddons(cid, 1) doPlayerAddAddons(cid, 2) setPlayerStorageValue(cid, storage, 1) end return true end Em creaturescripts.xml adicione essa tag: <event type="login" name="AddonLogin" event="script" value="loginaddon.lua"/>
TibiaKing
Open Tibia Server
Quer aprender a criar seu próprio servidor de Tibia? Então está no lugar certo, aqui você encontrará milhares de tutorias, scripts, códigos, mapas e utilitários para que você possa fazer o seu próprio servidor de Tibia começando do zero.
Anuncie no TibiaKing
Precisa de mais visibilidade em seus projetos? Quer fazer um plano publicitário para o seu servidor? Anuncie no OTKing e faça sua divulgação, possuímos centenas de acessos simultâneos e milhares diários, com certeza será a sua solução!