Acest quest va felicita ca cand ati facut un anumit level ( 75, 100, 110, 127 ).
Se salveaza levelup.quest .
- Cod:
quest levelup begin
state start begin
when levelup begin
if pc.get_level() == 75 then
notice_all(“”.. pc.get_name() ..” a facut level 75!”)
notice_all(“Quest nume.”)
elseif pc.get_level() == 100 then
notice_all(“”.. pc.get_name() ..” a facut level 100!”)
notice_all(“Quest nume.”)
elseif pc.get_level() == 110 then
notice_all(“”.. pc.get_name() ..” a facut level 110!”)
notice_all(“Quest nume.”)
elseif pc.get_level() == 127 then
notice_all(“”.. pc.get_name() ..”a facut level 127!”)
notice_all(“Quest nume.”)
notice_all(“Quest nume.”)
end
end
end
end