Ir para conteúdo

Npc Clean.....inovado.


trinib

Posts Recomendados

Cansado dos players do seu server ficarem enxendo seu saco para dar clean.Ai vai a solução.

 

 

 

Npc XML

<?xml version="1.0"?>

 

<npc name="clean" script="data/npc/scripts/clean.lua" access="1" lookdir="2">

<mana now="800" max="800"/>

<health now="200" max="200"/>

<look type="128" head="0" body="0" legs="0" feet="0" addons="3"/>

</npc>

 

NPC SCRIPT

 

local focus = 0

local talk_start = 0

local target = 0

local following = false

local attacking = false

 

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('Ola ' .. creatureGetName(cid) .. '.Eu faço clean.So falar clean.')

focus = cid

talk_start = os.clock()

 

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

selfSay(' ' .. creatureGetName(cid) .. 'Ja falo com você.')

 

elseif focus == cid then

talk_start = os.clock()

 

if msgcontains(msg, 'clean') then

selfSay("/clean")

end

end

end

 

 

function onCreatureChangeOutfit(creature)

 

end

 

 

if focus ~= 0 then

if getDistanceToCreature(focus) > 5 then

selfSay('Server limpo.')

focus = 0

end

end

 

No meu server esta assim: voce fala hi.ele vai falar para vooce falar clean intaum voce fala e pronto.

Espero q gostem.Se gostar dexa um up aki. :smile_positivo:

 

 

ALL LOVES ME

post-203050-1224966329.gif

 

 

 

post-203050-1224966361.png

Link para o comentário
Compartilhar em outros sites

  • 1 month later...
×
×
  • Criar Novo...