Ir para conteúdo

Npc Que Da Clean Quando AlguÉm Pede!


Mimow

Posts Recomendados

Vai que algum player se sente encomodado com a sujeira de seu server e você não está presente, e só ele falar com o NPC Ottho e pronto!

 

Vá na pasta data/npc copie qualquer arquivo e renomeie para Clean.

Abra, apague tudo que tem dentro e adicione isso:

 

<?xml version="1.0"?>

<npc name="Ottho" script="data/npc/scripts/clean.lua" access="3" lookdir="2" autowalk="25">

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

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

<look type="266" head="78" body="113" legs="114" feet="0"/>

</npc>

 

Depois vá em data/npc/scripts copie qualquer arquivo e renomeie para clean.lua!

Abra, apague tudo que tem dentro e adicione isso:

 

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('Oi ' .. creatureGetName(cid) .. 'Eu fui programado para executar clean quando você pedir!')

focus = cid

talk_start = os.clock()

 

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

selfSay('Sorry, ' .. creatureGetName(cid) .. '! I talk to you in a minute.')

 

elseif focus == cid then

talk_start = os.clock()

 

if msgcontains(msg, 'clean') then

selfSay("/clean")

 

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

selfSay('Faloww, ' .. 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('Próximo por favor')

end

focus = 0

end

if focus ~= 0 then

if getDistanceToCreature(focus) > 5 then

selfSay('Faloowws.')

focus = 0

end

end

end

 

npcmemeip2.png

 

 

Editado por Mimow
Link para o comentário
Compartilhar em outros sites

  • 3 weeks later...

Cara eu achei mto bom esse post!!!!Ele é importante pros player parar de enche o saco dos gm pedindo

clean...

Mto bom msm c tá de parabéns

TESTADO e APROVADO.. :icon1:

Link para o comentário
Compartilhar em outros sites

Nao Gostei,

Você criou um npc que da cleaner, ou seja um player revoltado vai la e fica falando Clean,Clean,Clean e o server so no TOMA,TOMA,TOMA.

Aconselho renovar seu npc com auto cleaner -Solo- ,com tempo de x em x para dar o clean :)

no meu server é 30min em 30min

Nota : 4 ..

PELO ESFORÇO

 

Cya

Link para o comentário
Compartilhar em outros sites

  • 2 weeks later...

PO LEGALs

 

Mais o Ruim

 

O Player Vai Ficar fazendo Bagunça

 

po

 

Tipo um Cara COLOCA Arma Rara Encima DO DP o Outro Vai Nesse NPC e Da Clean

 

ou

 

Um CARA Vai E Fica DAndo Clean Arretando O serv!!!!

Link para o comentário
Compartilhar em outros sites

No meu OT Funciona assim:

Player chato ke fika dando clean por vingança = BAN

 

Isso é regra do ot...!

 

 

e o cara naum precisa colokar itens em cima do DP...

 

Coloka dentrO!

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...