Ir para conteúdo
  • Cadastre-se

gabrielzika

Membro
  • Total de itens

    482
  • Registro em

  • Última visita

  • Dias Ganhos

    9

Tudo que gabrielzika postou

  1. @leolovee69 cara eu já te expliquei, não pode exceder o limite de carácteres e nem ter menos...
  2. @Fabio Leandro function getPlayersInRange(position, radiusx, radiusy) local creaturesList = {} for x = -radiusx, radiusx do for y = -radiusy, radiusy do if not (x == 0 and y == 0) then local creature = getTopCreature({x = position.x+x, y = position.y+y, z = position.z}) if creature.type == 1 then table.insert(creaturesList, creature.uid) end end end end local creature = getTopCreature(position) if creature.type == 1 then if not(table.find(creaturesList, creature.uid)) then table.insert(creaturesList, creature.uid) end end return creaturesList end function isPositionInArray(haystack,
  3. @leozincorsair em vname = "Sasuke Akatsuki" você tem que colocar o nome certinho da vocação, caso contrário não vai ir.... aqui de todas a maneiras q mandei até agora, funcinou 100% Tenta assim: local vocs = { [1] = {outfit = 400, effect = 35, cd = 1, vname = "Sakura"}, [2] = {outfit = 93, effect = 14, cd = 1, vname = "Sasuke Akatsuki"}, [3] = {outfit = 402, effect = 35, cd = 1, vname = "Naruto"}, } local storage = 4444 -- storage para nao poder ficar usando toda hora.. function onSay(cid, words, param) if (param == '') then local str = "" str = str ..
  4. @leozincorsair acho que já sei, testa ai... local vocs = { [1] = {outfit = 400, effect = 35, cd = 1, vname = "Sakura", id = 1}, [2] = {outfit = 93, effect = 14, cd = 1, vname = "Sasuke Akatsuki", id = 502}, [3] = {outfit = 402, effect = 35, cd = 1, vname = "Naruto", id = 3}, } local storage = 4444 -- storage para nao poder ficar usando toda hora.. function onSay(cid, words, param) if (param == '') then local str = "" str = str .. "Vocations:\n\n" for a = 1, #vocs do str = str..""..vocs[a].vname.."\n" end doShowTextDialog(ci
  5. @leozincorsair Seguinte... tira um print e manda aqui... eu coloquei pra aparecer essa mensagem só quando exemplo, uma vocação tentasse usar a outfit de outra.... ex: um naruto falando /out sasuke
  6. @leozincorsair Tenta assim: local vocs = { [1] = {outfit = 400, effect = 35, cd = 1, vname = "Sakura", id = 1}, [2] = {outfit = 93, effect = 14, cd = 1, vname = "Sasuke", id = 502}, [3] = {outfit = 402, effect = 35, cd = 1, vname = "Naruto", id = 3}, } local storage = 4444 -- storage para nao poder ficar usando toda hora.. function onSay(cid, words, param) if (param == '') then local str = "" str = str .. "Vocations:\n\n" for a = 1, #vocs do str = str..""..vocs[a].vname.."\n" end doShowTextDialog(cid, 7416, str)
  7. @mostjf veja se o seu funciona assim: local rnd = {"VIP"} function onLogin(cid) if isPremium(cid) == true then sendEffect(cid) end return true end function sendEffect(cid) if isPlayer(cid) then local w = math.random (1,#rnd) doSendAnimatedText(getCreaturePosition(cid), ""..rnd[w].."", 251) addEvent(sendEffect, 2000,cid) end return true end Ps: Não testei!
  8. @mostjf local tempo = 10 --tempo em segundos function onLogin(cid) if isPremium(cid) == true then TopEffect(cid) end return true end function TopEffect(cid) if isPlayer(cid) then doSendAnimatedText(getCreaturePosition(cid), "[VIP]", TEXTCOLOR_LIGHTBLUE) addEvent(TopEffect, tempo*1000, cid) end return true end
  9. @leozincorsair local vocs = { [1] = {outfit = 400, effect = 35, cd = 1, vname = "Sakura", id = 1, msg = "Você ganhou temporariamente um outfit da Sakura!"}, [2] = {outfit = 93, effect = 14, cd = 1, vname = "Sasuke", id = 502, msg = "Você ganhou temporariamente um outfit da Sasuke!"}, [3] = {outfit = 402, effect = 35, cd = 1, vname = "Naruto", id = 3, msg = "Você ganhou temporariamente um outfit da Naruto!"}, } local storage = 4444 -- storage para nao poder ficar usando toda hora.. function onSay(cid, words, param) if (param == '') then local str = "" str = str ..
  10. @leozincorsair manda o script com as alterações que você fez...
  11. @joaopedrodepaiva fala o ip que você tá querendo por, vou tentar colocar pra você! ou ao menos a quantidade de caracteres...
  12. @leozincorsair veja se é isso que você quer testei aqui e está 100%... se quiser que perca quando desloga , eu posso fazer tambem Abraço! Neste Script quando o Player Digitar somente; /out -- o comando pode ser trocado na tag do .xml abrirá uma janela com o nome de todas as vocações que tem esse comando... local vocs = { [1] = {outfit = 400, effect = 35, cd = 1, vname = "Sakura", id = 1, msg = "Você ganhou temporariamente um outfit da Sakura!"}, [2] = {outfit = 401, effect = 35, cd = 1, vname = "Sasuke", id = 2, msg = "Você ganhou temporariamen
  13. @leozincorsair local level = 200 local premio = 2160 local storage = 444445 function onUse(cid, item, frompos, item2, topos) if item.uid == 7181 then queststatus = getPlayerStorageValue(cid,storage) if queststatus == -1 then if getPlayerLevel(cid) >= level then doPlayerSendTextMessage(cid,25,"Parabens...") doPlayerAddItem(cid,premio,1) setPlayerStorageValue(cid,storage,1) else doPlayerSendTextMessage(cid,25,"Voce Precisa de LEVEL "..level..".") end else doPlayerSendTextMessage(cid, 22, "Vázio") end return 0 en
  14. @FelipeMeyrelles veja se o Meu Funciona ai... function onThink(interval, lastExecution, thinkInterval) local result = db.getResult("SELECT * FROM shop_history WHERE `processed` = 0;") if(result:getID() ~= -1) then while(true) do cid = getCreatureByName(tostring(result:getDataString("player"))) product = tonumber(result:getDataInt("product")) itemr = db.getResult("SELECT * FROM shop_offer WHERE `id` = "..product..";") if isPlayer(cid) then local id = tonumber(itemr:getDataInt("item")) local tid = tonumber(result:getDataInt("id")) local count = tonumber(itemr:getDataInt("count"))
  15. @leolovee69 veja ai onde você errou! editei o client aqui e está funcionando. Tibia.exe
  16. @leolovee69 depende de quantos digitos tiver o ip, o client necessita ler 19 caracteres... você coloca o seu ip + o NULL pra interar 19.. exemplo quando vc for trocar de ip terá que apagar o 127.0.0.1 + os 10 NULL que você colocou!
  17. @leolovee69 Beleza, faz o seguinte! Abre seu NotePad++ vai em editar ai lá embaixo vai ter Painel de Caracteres... clique lá no canto direito vai aparecer todos os caracteres vai onde você colocou o 127.0.0.1 na frente do 1 Aperta 10x no NULL.. parecido com isso: tem que ser 10x se for menos irá bugar, se for mais tbm!
  18. @leolovee69 Qual Ip estava Lá antes?? e quantos digitos tem o ip q você tá querendo colocar?
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo