Jump to content

[Peticiòn]Quest Para un mapa


Riochu™ no es

Recommended Posts

quest aaa begin

state start begin

when levelup or login in pc.get_map_index == 73 begin

say("hola ")

say("quieres que te lleve a ....")

local s = select ( "si " , "no")

if s == 1 then

pc.warp(xxxx , yyyy)

 

end

end

end

end

Link to comment
Share on other sites


quest lvl_73_gruta begin

state start begin

when login or levelup with pc.get_level() == 75 begin

set_state( gotoinfomation )

end

end

state gotoinfomation begin

when letter begin

send_letter("Ir a la Gruta")

end

when button or info begin

say_title("Bienvenido:")

say("Conmigo irás a la Gruta")

say("TEXTO")

say("TEXTO")

say_reward("Quieres ir?")

local gruta = select("Si" , "No")

if gruta == 1 then

pc.warp(xxxx, xxxx) ---Coordenadas del warp del mapa

chat("Serás llevado a la gruta")

set_state(__COMPLETE__)

end

end

state __COMPLETE__ begin

end

end

end

Link to comment
Share on other sites

Buenas chicos alguien tiene .

El quest cuando llegas al 75

 

 

Que tenga un mision que te lleva siempre que quieras .

 

Es este mapa

http-~~-//www.youtube.com/watch?v=UUEEE3PQZno

 

quest aaa begin

state start begin

when levelup or login in pc.get_map_index == 73 begin

say("hola ")

say("quieres que te lleve a ....")

local s = select ( "si " , "no")

if s == 1 then

pc.warp(xxxx , yyyy)

 

end

end

end

end

 

 

No me funcciona

Link to comment
Share on other sites


quest go_to_map begin

state start begin

when login or levelup with pc.get_level() >= 75 begin

set_state(_PERGAMINO_)

end

end

state __PERGAMINO_ begin

when letter begin

send_letter("Gruta del Exhilio")

end

when info or button begin

local x, y = xxxx, yyyy --Aca se le asigna las coordenadas del mapa

say("Deseas ir a la gruta del exhilio?")

local k = select("Si", "No")

if k == 1 then

pc.warp(x, y)

end

end

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...