Hello, I created this very very basic grinding profile (used with orderbot), char goes to the location, targets mob and everything but doesnt switch job to GS number 4. Is there something wrong in the profile or a plugin that would not let this happen? Here is the profile <Profile> <Name>Plasmoid Grinding</Name> <KillRadius>80</KillRadius> <!--User Configuration--> <CodeChunks> <CodeChunk Name="Bard"> <![CDATA[ff14bot.Managers.ChatManager.SendChat("/gs change 4");]]> </CodeChunk> </CodeChunks> <!--End User Configuration--> <GrindAreas> <GrindArea name="Coerthas Central Highlands"> <Hotspots> <Hotspot Radius="80" X="-694.4224" Y="253.8849" Z="507.1119" name="Coerthas" /> </Hotspots> <TargetMobs> <TargetMob id="46" /> </TargetMobs> <MinLevel>0</MinLevel> <MaxLevel>50</MaxLevel> </GrindArea> </GrindAreas> <Order> <If Condition="not IsOnMap(155)"> <TeleportTo Name="Camp Dragonhead" AetheryteId="23" /> </If> <Grind grindRef="Coerthas Central Highlands" while="Core.Player.ClassLevel < 52" /> </Order> </Profile> Thank you very much for your precious time!
Try this: Code: <Profile> <Name>Plasmoid Grinding</Name> <KillRadius>80</KillRadius> <!--User Configuration--> <CodeChunks> <CodeChunk Name="Bard"> <![CDATA[ff14bot.Managers.ChatManager.SendChat("/gs change 4");]]> </CodeChunk> </CodeChunks> <!--End User Configuration--> <GrindAreas> <GrindArea name="Coerthas Central Highlands"> <Hotspots> <Hotspot Radius="80" X="-694.4224" Y="253.8849" Z="507.1119" name="Coerthas" /> </Hotspots> <TargetMobs> <TargetMob id="46" /> </TargetMobs> <MinLevel>0</MinLevel> <MaxLevel>50</MaxLevel> </GrindArea> </GrindAreas> <Order> [B][COLOR="#FF0000"]<RunCode Name="Bard" />[/COLOR][/B] <If Condition="not IsOnMap(155)"> <TeleportTo Name="Camp Dragonhead" AetheryteId="23" /> </If> <Grind grindRef="Coerthas Central Highlands" while="Core.Player.ClassLevel < 52" /> </Order> </Profile>
Hello y2krazy, Thank you for your help, I got a few errors with your profile which I could correct, apparently all the "=" were making errors in this line : <=!=[=C=D=A=T=A=[ff14bot.Managers.ChatManager.SendChat("/gs change 4");]=]=> Then I had to erase "<" on this line : while="Core.Player.ClassLevel < 52 and change it for "<" Then I added : <RunCode Name="Bard" /> as you suggested and it ran perfectly! Thank you for your precious help!
I didn't even notice that it made all those changes - I updated my post to correct the ones you found. Was up a bit later than usual. Glad you were able to fix all those blatant errors and get it running!