Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Quest Scenarios

Newbie Spellweaver
Joined
Sep 21, 2008
Messages
27
Reaction score
14
Im trying to find out where (or what) the quest scenarios are, like when it says to run Scenario 16, Scenario 17 after you make your selection

Code:
say 56902 npc
say 56903 me
say 56904 npc

if result == 1 goto mark1
if result == 2 goto mark2
end


:mark1
say 56905 npc
if result == 2 goto mark3
say 56907 npc
say 56908 me
say 56909 npc
get_player_empty_inventory var1
if var1 < 1 goto mark100

accept
done
scenario 16
end


:mark2
say 56906 npc
if result == 2 goto mark3
say 56907 npc
say 56908 me
say 56909 npc
get_player_empty_inventory var1
if var1 < 1 goto mark100

accept
done
scenario 17
end

:mark100
say 106 npc
end

:mark3
end

EDIT: Forgot to add that I'm using Odin files
 
Last edited:
Back
Top