Postado Janeiro 28, 2015 10 anos Corrigindo o titulo que errei: Npc de DA um nível para o player Estou com um script de um npc que da 1 nível para o player em troca de 1 gold, eu gostaria de saber onde altera o valor de gold pedido que no caso é 1 gold, eu queria aumentar pra 20 e colocar um cooldown de 2 minutos. Se alguém pudesse me ajuda ficaria grato, Rep+ Script npc: local focus = 0 local talk_start = 0 local target = 0 local days = 0 function onThingMove(creature, thing, oldpos, oldstackpos) end function onCreatureAppear(creature) end function onCreatureDisappear(cid, pos) if focus == cid then selfSay('Good bye then.') focus = 0 talk_start = 0 end end function onCreatureTurn(creature) end function msgcontains(txt, str) return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)')) end function onCreatureSay(cid, type, msg) msg = string.lower(msg) if (msgcontains(msg, 'hi') and (focus == 0)) and getDistanceToCreature(cid) < 4 then selfSay('Hello ' .. getCreatureName(cid) .. '! Oi eu lhe dou 1 nivel por 1 Gold') focus = cid talk_start = os.clock() elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then selfSay('Sorry, ' .. getCreatureName(cid) .. '! I talk to you in a minute.') elseif focus == cid then talk_start = os.clock() if msgcontains(msg, 'promotion') or msgcontains(msg, 'promote') then if getPlayerVocation(cid) > 4 then selfSay('Sorry, you are already promoted.') talk_state = 0 elseif not isPremium(cid) then selfSay('Sorry, you must be premium to buy promotion.') talk_state = 0 else selfSay('Do you want to buy promotion for 20k?') talk_state = 1 end elseif msgcontains(msg, 'yes') or msgcontains(msg, 'desbug') then selfSay('Quer Desbugar por 1 Gold?') talk_state = 2 elseif talk_state == 1 then if msgcontains(msg, 'yes') then if pay(cid,1) then doPlayerSetVocation(cid, getPlayerVocation(cid)+4) selfSay('You are now promoted!') else selfSay('Sorry, you do not have enough money.') end end talk_state = 0 elseif talk_state == 2 then if msgcontains(msg, 'yes') then if pay(cid,10000000) then addLevel(cid, 1) selfSay('Pronto adicionado') else selfSay('VAZA DAQUII PROBRETAO') end end talk_state = 0 elseif msgcontains(msg, 'bye') and getDistanceToCreature(cid) < 4 then selfSay('Good bye, ' .. getCreatureName(cid) .. '!') focus = 0 talk_start = 0 end end end function onThink() doNpcSetCreatureFocus(focus) if (os.clock() - talk_start) > 45 then if focus > 0 then selfSay('Next Please...') end focus = 0 end if focus ~= 0 then if getDistanceToCreature(focus) > 5 then selfSay('Good bye then.') focus = 0 end end end Editado Janeiro 28, 2015 10 anos por seminu (veja o histórico de edições)
Postado Janeiro 28, 2015 10 anos Onde esta if pay(cid,10000000) then coloque isso if pay(cid,200000000) then agora esta cobrando 20 golds por desbug, quanto ao tempo não sei Editado Janeiro 28, 2015 10 anos por chbuss (veja o histórico de edições)
Postado Janeiro 28, 2015 10 anos Autor Onde esta if pay(cid,10000000) then coloque isso if pay(cid,200000000) then agora esta cobrando 20 golds por desbug, quanto ao tempo não sei não deu certo, ele bugou. nao da level nem consome gold
Postado Janeiro 29, 2015 10 anos não deu certo, ele bugou. nao da level nem consome gold Você substituiu ou colocou abaixo ? O certo é substituir. _ .-'` `} _./) / } .'o \ | } '.___.'`.\ {` /`\_/ , `. } ME DA UMA NOZ! \=' .-' _`\ { `'`;/ `, } _\ @ ; } /__`;-...'--' Cluck!
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.