How do you write a profile or the code when you want your character to resume the profile thread even after dying? I am using the attached profile. It makes my character farm at Upper La Noscea, and if he dies, he teleports to Aleport. Then, everything just cancels out. My character can't seem to find how to get back to Upper La Noscea. BUT, when I restart my profile, he is again able to travel from Aleport to Upper La Noscea. My question is, how do I automate this or make my character travel to Upper La Noscea after dying from grinding, and teleporting to Aleport? Log after dying: [20:00:07.576 N] Unable to find teleportation that will take us back to Zone:139 Position:<-392.5328, -1.95525, 169.0474> [20:00:08.593 V] [Poi.Clear] Reason: Huzzah! We are alive, clearing poi. [20:00:08.657 D] Requesting path on 138 from <254.7587, -22.75, 218.9794> to <-388.1311, 0, 155.2531> [20:00:08.942 D] No viable path from <254.7587, -22.75, 218.9794> to <-388.1311, 0, 155.2531> in 00:00:00.2845111 ms [20:00:09.816 D] Something went wrong couldnt find pet with object id 40084394 [20:27:16.003 N] Connection closed! 192.99.148.87:31214 [20:27:16.568 N] Connection to 192.99.148.87:31214 established. [20:56:48.842 N] Plugin Speedy has begun [20:56:48.842 N] Sprinting [20:56:48.842 D] DoAction Spell 3 0xE0000000 [20:56:48.842 N] Plugin Speedy is done [20:56:48.844 D] Requesting path on 138 from <254.7583, -22.75, 218.9877> to <-388.1311, 0, 155.2531> [20:56:49.543 D] No viable path from <254.7583, -22.75, 218.9877> to <-388.1311, 0, 155.2531> in 00:00:00.6983316 ms [20:56:49.545 D] Requesting path on 138 from <254.953, -22.75, 222.7141> to <-388.1311, 0, 155.2531> [20:56:49.830 D] No viable path from <254.953, -22.75, 222.7141> to <-388.1311, 0, 155.2531> in 00:00:00.2846557 ms [20:56:49.845 D] Requesting path on 138 from <254.9745, -22.75, 222.8168> to <-388.1311, 0, 155.2531> [20:56:50.124 D] No viable path from <254.9745, -22.75, 222.8168> to <-388.1311, 0, 155.2531> in 00:00:00.2795247 ms [21:02:05.446 N] Plugin Speedy has begun [21:02:05.446 N] Sprinting [21:02:05.446 D] DoAction Spell 3 0xE0000000 [21:02:05.446 N] Plugin Speedy is done [21:02:05.449 D] Requesting path on 138 from <254.9901, -22.75, 222.8361> to <-388.1311, 0, 155.2531> [21:02:05.728 D] No viable path from <254.9901, -22.75, 222.8361> to <-388.1311, 0, 155.2531> in 00:00:00.2800698 ms [21:02:05.749 D] Requesting path on 138 from <256.0452, -22.75, 223.7987> to <-388.1311, 0, 155.2531> [21:02:06.028 D] No viable path from <256.0452, -22.75, 223.7987> to <-388.1311, 0, 155.2531> in 00:00:00.2795600 ms [21:02:06.048 D] Requesting path on 138 from <257.7464, -22.75, 224.3582> to <-388.1311, 0, 155.2531> [21:02:06.331 D] No viable path from <257.7464, -22.75, 224.3582> to <-388.1311, 0, 155.2531> in 00:00:00.2828718 ms [21:02:06.346 D] Requesting path on 138 from <259.9375, -22.75, 224.8871> to <-388.1311, 0, 155.2531>
nvm iam stupid but try this View attachment Stoneshe999ll.xml Edit: Now its porting me to camp bronzelake after dead. i just wanted to help but now iam just confused.
I think orderbot tries to return you to the same zone you were at when you died with a teleport. That unfortunately breaks in upper la noscea because of the non-contiguous sections. Try this: Code: <Profile> <Name>Stoneshell</Name> <KillRadius>30</KillRadius> <GrindAreas> <GrindArea name="Stoneshell"> <Hotspots> <HotSpots Radius="30" X="-388.131073" Y="0" Z="155.253067" /> </Hotspots> <TargetMobs> <TargetMob Id="1520"/> <TargetMob Id="638"/> <TargetMob Id="296"/> <TargetMob Id="1180"/> </TargetMobs> <MinLevel>20</MinLevel> <MaxLevel>50</MaxLevel> </GrindArea> </GrindAreas> <Order> <While Condition="True"> <If Condition="not IsOnMap(139) or Core.Player.Location.X > 0.0"> <If Condition="not IsOnMap(138)"> <TeleportTo Name="Aleport" AetheryteId="14" /> </If> <MoveTo Name="Upper La Noscea Zone line" XYZ="407.8503, 34.78808, -19.6865" /> </If> <Grind grindref="Stoneshell" While="IsOnMap(139) and Core.Player.Location.X < 0.0"/> </While> </Order> </Profile>