Hello there,
I'm attempting to get into profile and custom behavior coding. I'm currently stuck with a limited amount of information about
available profile tags. Is there any resource I can consult to gain more knowledge about them? If so where would I find them?
I downloaded a few profiles (for farming / leveling) and looked through it, but I can't seem to find anything else which would
provide me with a decent amount of tags and their functionality.
Example (taken from Botany_leveling_1-50.xml):
Where's IsOnMap, GatheringSkill, GatheringskillOrder, etc. defined?
I hope you guys can help me out.
Edit:
It seems I didn't do enough research on my question. The tags seem to come from the ff14bot.NeoProfiles Namespace
I'm attempting to get into profile and custom behavior coding. I'm currently stuck with a limited amount of information about
available profile tags. Is there any resource I can consult to gain more knowledge about them? If so where would I find them?
I downloaded a few profiles (for farming / leveling) and looked through it, but I can't seem to find anything else which would
provide me with a decent amount of tags and their functionality.
Example (taken from Botany_leveling_1-50.xml):
Code:
<If Condition="Core.Player.ClassLevel < 11">
<If Condition="not IsOnMap(148)">
<TeleportTo Name="Bentbranch Meadows" AetheryteId="3" />
</If>
<Gather while="Core.Player.ClassLevel < 11">
<GatherObject>Mature Tree</GatherObject>
<HotSpots>
<HotSpot Radius="95" XYZ="243.2079, -12.19825, -55.7188" />
</HotSpots>
<ItemNames>
<ItemName>Tinolqa Mistletoe</ItemName>
</ItemNames>
<GatheringSkillOrder>
<GatheringSkill SpellName="Field Mastery" TimesToCast="1" />
</GatheringSkillOrder>
</Gather>
</If>
Where's IsOnMap, GatheringSkill, GatheringskillOrder, etc. defined?
I hope you guys can help me out.
Edit:
It seems I didn't do enough research on my question. The tags seem to come from the ff14bot.NeoProfiles Namespace