Ir para conteúdo

vankk

Membro
  • Registro em

  • Última visita

Tudo que vankk postou

  1. vankk postou uma resposta no tópico em Playground (Off-topic)
    Um brother meu tattou um Druid Full na panturrilha, HAHAHAHA.
  2. Ele chama todo dia, mas sou difícil .-.
  3. O que é mew? LOL! Não sei se é isso que você queria, mas enfim.. edita a linha 5: function onUse(cid, item, frompos, item2, topos) if item.uid == 124 then if getPlayerStorageValue(cid, 157) == -1 then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You found 5kk and a mew.") doPlayerAddItem(cid, IDITEM, COUNT) setPlayerStorageValue(cid, 157, 1) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "The chest is empty.") end end end
  4. Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: OTServ > Notícias e OTServ Geral Para: Suporte OTServ > OTServ > Suporte de OTServ Geral
  5. Atualiza as sources, ou coloca apenas para invitar guild/aceitar guild/criar guild/aceitar guild/ etc pelo site, sem ter comandos in-game.
  6. versão do TFS? O player possui a storage? O item id do tumulo está certo?
  7. vankk postou uma resposta no tópico em Suporte Tibia OTServer
    CREATE TABLE `z_ots_comunication` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `type` varchar(255) NOT NULL, `action` varchar(255) NOT NULL, `param1` varchar(255) NOT NULL, `param2` varchar(255) NOT NULL, `param3` varchar(255) NOT NULL, `param4` varchar(255) NOT NULL, `param5` varchar(255) NOT NULL, `param6` varchar(255) NOT NULL, `param7` varchar(255) NOT NULL, `delete_it` int(2) NOT NULL default '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  8. Compilar é o de menos, questão é atualizar para funcionar na versão 10.8x
  9. vankk postou uma resposta no tópico em Suporte Tibia OTServer
    Esta é uma mensagem automática, este tópico foi movido para a área correta. Regras do fórum: http://www.tibiaking.com/forum/topic/1281-regras-gerais/#comment-7680 Este tópico foi movido: De: Scripting OTServ > OTServ > CreatureScripts, GlobalEvents e MoveMents Para: Suporte OTServ > OTServ > Suporte de Scripts
  10. vankk postou uma resposta no tópico em Suporte Tibia OTServer
    Compilar?!
  11. vankk postou uma resposta no tópico em Playground (Off-topic)
    @Matk Eu tava pensando em escrever algo no ante braco, porém, não sei o que.
  12. item.itemid = ID do item que for usado - Exemplo: if item.itemid == 2160 then -- algo acontece end item.uid não lembro direito, mas provavelmente será algo envolvendo UniqueID.
  13. vankk postou uma resposta no tópico em Playground (Off-topic)
    Acredito em Deus, porém sem religião.
  14. vankk postou uma resposta no tópico em Playground (Off-topic)
    Eu vou fazer as duas que eu postei, quero opinião de uma terceira que posso fazer no antebraco direito, to sem ideia .-. Eu tenho só uma no peito por enquanto .-.
  15. vankk postou uma resposta no tópico em Playground (Off-topic)
    To querendo fazer umas tattoos em dezembro. Estou querendo fazer as seguintes: No ombro direito: No braco esquerdo: O que acham? E PLXXX da ideias de o que fazer no ante braco direito, alguma frase.
  16. @Absolute Eu quis dizer do Sharp Map Tracker. Está utilizando 10.77 ou 10.82?
  17. Como que eu impediria para soltar pokemon? Isso é uma storage, uma condition? O que? Como faco para soltar o pokemon?
  18. vankk postou uma resposta no tópico em Suporte Tibia OTServer
    Como é Windows não posso ajudar, se fosse Linux, até que poderia.
  19. Não fica citando o code, só me marca usando (@) local function BikeSpeedOn(cid, t) setPlayerStorageValue(cid, t.s, t.speed) doChangeSpeed(cid, -getCreatureSpeed(cid)) doChangeSpeed(cid, t.speed) end local function BikeSpeedOff(cid, t) setPlayerStorageValue(cid, t.s, -1) doRegainSpeed(cid) end local t = {text='Mount, Motobike!', dtext='Demount, Motobike!', s=5701, speed = 1000} function onUse(cid, item, fromPosition, itemEx, toPosition) if isPremium(cid) then if #getCreatureSummons(cid) >= 1 then return doPlayerSendCancel(cid, "Return your pokemon.") end if getPlayerStorageValue(cid, 17002) >= 1 or getPlayerStorageValue(cid, 63216) >= 1 or getPlayerStorageValue(cid, 17001) >= 1 or getPlayerStorageValue(cid, 75847) >= 1 or getPlayerStorageValue(cid, 6598755) >= 1 or getPlayerStorageValue(cid, 6598756) >= 1 then --alterado v1.9 return doPlayerSendCancel(cid, "You can't do that right now.") end local pos = getThingPos(cid) if getPlayerStorageValue(cid, t.s) <= 0 then doSendMagicEffect(pos, 177) doCreatureSay(cid, t.text, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You have mounted in a motobike.') BikeSpeedOn(cid, t) if getPlayerSex(cid) == 1 then doSetCreatureOutfit(cid, {lookType = 2212}, -1) else doSetCreatureOutfit(cid, {lookType = 2212}, -1) end else doSendMagicEffect(pos, 177) doCreatureSay(cid, t.dtext, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You haven demouted of a motobike.') BikeSpeedOff(cid, t) doRemoveCondition(cid, CONDITION_OUTFIT) end else doPlayerSendTextMessage(cid,22,"Este item so pode ser usado por jogadores vip!") end return true end
  20. ? local function BikSpeedOn(cid, t) setPlayerStorageValue(cid, t.s, t.speed) doChangeSpeed(cid, -getCreatureSpeed(cid)) doChangeSpeed(cid, t.speed) end local function BikeSpeedOff(cid, t) setPlayerStorageValue(cid, t.s, -1) doRegainSpeed(cid) end local t = {text='Mount, Motobike!', dtext='Demount, Motobike!', s=5701, speed = 1000} function onUse(cid, item, fromPosition, itemEx, toPosition) if isPremium(cid) then if #getCreatureSummons(cid) >= 1 then return doPlayerSendCancel(cid, "Return your pokemon.") end if getPlayerStorageValue(cid, 17002) >= 1 or getPlayerStorageValue(cid, 63216) >= 1 or getPlayerStorageValue(cid, 17001) >= 1 or getPlayerStorageValue(cid, 75847) >= 1 or getPlayerStorageValue(cid, 6598755) >= 1 or getPlayerStorageValue(cid, 6598756) >= 1 then --alterado v1.9 return doPlayerSendCancel(cid, "You can't do that right now.") end local pos = getThingPos(cid) if getPlayerStorageValue(cid, t.s) <= 0 then doSendMagicEffect(pos, 177) doCreatureSay(cid, t.text, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You have mounted in a motobike.') BikeSpeedOn(cid, t) if getPlayerSex(cid) == 1 then doSetCreatureOutfit(cid, {lookType = 2212}, -1) else doSetCreatureOutfit(cid, {lookType = 2212}, -1) end else doSendMagicEffect(pos, 177) doCreatureSay(cid, t.dtext, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You haven demouted of a motobike.') BikeSpeedOff(cid, t) doRemoveCondition(cid, CONDITION_OUTFIT) end else doPlayerSendTextMessage(cid,22,"Este item so pode ser usado por jogadores vip!") end return true end
  21. Só removi o negócio de ser VIP, porque o resto eu não entendi porra nenhuma porque não sei nada de pokemon, e nem quero aprender local function BikSpeedOn(cid, t) setPlayerStorageValue(cid, t.s, t.speed) doChangeSpeed(cid, -getCreatureSpeed(cid)) doChangeSpeed(cid, t.speed) end local function BikeSpeedOff(cid, t) setPlayerStorageValue(cid, t.s, -1) doRegainSpeed(cid) end local t = {text='Mount, Motobike!', dtext='Demount, Motobike!', s=5701, speed = 1000} function onUse(cid, item, fromPosition, itemEx, toPosition) local pos = getThingPos(cid) if #getCreatureSummons(cid) >= 1 then return doPlayerSendCancel(cid, "Return your pokemon.") end if getPlayerStorageValue(cid, 17002) >= 1 or getPlayerStorageValue(cid, 63216) >= 1 or getPlayerStorageValue(cid, 17001) >= 1 or getPlayerStorageValue(cid, 75847) >= 1 or getPlayerStorageValue(cid, 6598755) >= 1 or getPlayerStorageValue(cid, 6598756) >= 1 then --alterado v1.9 return doPlayerSendCancel(cid, "You can't do that right now.") end if getPlayerStorageValue(cid, t.s) <= 0 then doSendMagicEffect(pos, 177) doCreatureSay(cid, t.text, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You have mounted in a motobike.') BikeSpeedOn(cid, t) if getPlayerSex(cid) == 1 then doSetCreatureOutfit(cid, {lookType = 2212}, -1) else doSetCreatureOutfit(cid, {lookType = 2212}, -1) end else doSendMagicEffect(pos, 177) doCreatureSay(cid, t.dtext, 19) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You haven demouted of a motobike.') BikeSpeedOff(cid, t) doRemoveCondition(cid, CONDITION_OUTFIT) end return true end Mas provavel que você faca o que você quer na linha 20 do script, boa sorte.
  22. >>You need to rebuild the project source. getBuildArch was recently added. >>> https://otland.net/threads/hi-thx.170012/#post-1645694
  23. @p e o p l e Faz nada, você só fala..
  24. Só assiste.

Informação Importante

Confirmação de Termo