Jump to content

Mision nivel .. matar jefe


mamiferox

Recommended Posts

quest matarmob begin
state start begin
when login or levelup with pc.level >= 8 begin
say("texto")
end
when 101.kill begin
say("Se ha completado la misión!")
say("recibiras un premio")
pc.give_item2(19, 1)
set_state("__complete")
end
end
state __complete begin
end
end

 

 

No le puse la opcion de que aparesca el pergamino,ya que lo hice con pereza xd

Link to comment
Share on other sites

quest matarmob begin

state start begin

when login or levelup with pc.level >= 8 begin

say("texto")

end

when 101.kill begin

say("Se ha completado la misión!")

say("recibiras un premio")

pc.give_item2(19, 1)

set_state("__complete")

end

end

state __complete begin

end

end

 

 

No le puse la opcion de que aparesca el pergamino,ya que lo hice con pereza xd

Eres un perezoso :v

Link to comment
Share on other sites

quest matarmob begin

state start begin

when login or levelup with pc.level >= 8 begin

say("texto")

end

when 101.kill begin

say("Se ha completado la misión!")

say("recibiras un premio")

pc.give_item2(19, 1)

set_state("__complete")

end

end

state __complete begin

end

end

 

 

No le puse la opcion de que aparesca el pergamino,ya que lo hice con pereza xd

 

amigo ese quest puedes agregar cuantas muertes para que de el item ??

Link to comment
Share on other sites

Prueba asi

 

quest matarmob begin
state start begin
when login with pc.level >= 8 begin
set_state(information)
end
end
state information begin
when letter begin
send_letter("texto")
end
when info or button begin
say("texto")
pc.setqf("state", 5)
q.set_counter("mob", 5)
end
when 101.kill begin
local count = pc.getqf("state") - 1
if count <= 5 then
pc.setqf("state", count)
q.set_counter("mob", count)
end
if count == 0 then
say("Se ha completado la misión!")
say("recibiras un premio")
pc.give_item2(19, 1)
end
set_state("__complete")
end
end
state __complete begin
end
end

Link to comment
Share on other sites

  • Dilong locked this topic
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...