Ir para conteúdo

Criando E Administrando Sua Cadeia 100%


Rafix

Posts Recomendados

  • 2 weeks later...
  • 3 weeks later...
  • 1 month later...

exceeeelente tutorial...bem organizado e tudo mais ^^

achei mais "eficiente" o Alert System (by Colex)! já ta rodando com ctz no meu serv!xD

continue assim! :smile_positivo:

Link para o comentário
Compartilhar em outros sites

  • 1 month later...
  • 2 weeks later...
  • 3 weeks later...
  • 5 months later...
  • 3 months later...

nao consigo add o npc no mapa...

tentei i na pasta data>word>npc mais nao existe ;/

ajudem plx

 

nao consigo add o npc no mapa...

tentei i na pasta data>word>npc mais nao existe ;/

ajudem plx

Link para o comentário
Compartilhar em outros sites

  • 4 weeks later...

Deu certinhho ...

Ei Galera, para falar com o Policial, vc precisa Falar " Hello " não " Hi " nem " Oi " é apenas "Hello" (Sem as áspas claro)

 

se quiserr colocar para você falar Hi e ele responder mude o script dele para isso:

 

focus = 0

talk_start = 0

target = 0

following = false

attacking = false

 

function onThingMove(creature, thing, oldpos, oldstackpos)

 

end

 

 

function onCreatureAppear(creature)

 

end

 

 

function onCreatureDisappear(cid, pos)

if focus == cid then

selfSay('Bem feito por estar preso seu mal educado.')

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) < 3 then

if isPremium(cid) then

selfSay('O Que foi, ' .. creatureGetName(cid) .. '! Voce pode sair se me pagar 10k. Voce quer??')

focus = cid

talk_start = os.clock()

else

selfSay('Desculpe, Voce não tem dinheiro suficiente.')

focus = 0

talk_start = 0

end

 

elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then

selfSay('Espera, ' .. creatureGetName(cid) .. '!')

 

elseif focus == cid then

talk_start = os.clock()

 

if msgcontains(msg, 'yes') then

if pay(cid,10000) then

selfSay('Espero que não volte mais!')

selfSay('/send ' .. creatureGetName(cid) .. ', 160 54 7')

focus = 0

talk_start = 0

else

selfSay('Desculpe, voce não tem grana.')

end

 

elseif msgcontains(msg, 'ciieeeeeeeey') then

if pay(cid,20) then

selfSay('Let\'s go!')

selfSay('/send ' .. creatureGetName(cid) .. ', 171 65 7')

focus = 0

talk_start = 0

else

selfSay('Sorry, you don\'t have enough money.')

end

 

elseif msgcontains(msg, 'bye') and getDistanceToCreature(cid) < 4 then

selfSay('Good bye, ' .. creatureGetName(cid) .. '!')

focus = 0

talk_start = 0

end

end

end

 

 

function onCreatureChangeOutfit(creature)

 

end

 

 

function onThink()

if (os.clock() - talk_start) > 30 then

if focus > 0 then

selfSay('Que fale o próximo se tiver...')

end

focus = 0

end

if focus ~= 0 then

if getDistanceToCreature(focus) > 5 then

selfSay('Tá Tá agora suma.')

focus = 0

end

end

end

 

 

 

flwz

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...