First up, I wanted to make a starter.xml that went to an area based on level.
Code: Select all
if( player.Level < 15) then
load_paths("10-14_travel.xml");
end
Setting that problem aside; If I connect the starter waypoint with the 10-14 waypoint file it works fine, then runs the waypoints its suppose to, until it gets to this line
Code: Select all
if( player.Level > 13) then
load_paths("10-14_travel.xml");
end
I'm new to micromacro so this is my first actual "project", any help is appreciated.