What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[Request] Allagan Chimera farm profile

LuckyKiller

New Member
Joined
Jun 6, 2015
Messages
11
Hello,

I need a Allagan chimera (Azys Lla) farm profile, if someone can make it ? please

I tried to create the profile but it don't work, I maked Hotspots, using the "add curent target" for the Allagan Chimera but my character don't move and only attack the mob if it's really close to me and only kill this chimera :'(

If someone have a tutorial can help me too^^
 
Last edited:
There is my profile and now i have a new problem, when i start the bot, he load the previous profile & go farm for this proflie.

View attachment Chimera2.Xml

the log :

[10:23:10.123 D] Loading profile from C:\Users\Luc\Desktop\Rebornbuddy 1.0.287.0\profiles\Chimera2.Xml
[10:23:10.150 N] Loaded profile
[10:23:14.521 D] Loading last profile
[10:23:14.703 N] Loaded profile Deepeye Tears Farm
[10:23:14.704 N] Bot Thread Started.
[10:23:15.304 N] Connection to 192.99.148.87:31214 established.
[10:23:15.417 N] Clearing all hooks.
[10:23:15.417 D] Replaced hook [PreCombatBuff] 870c53a5-c246-42f1-ab04-9534be218788
 
There is my profile and now i have a new problem, when i start the bot, he load the previous profile & go farm for this proflie.

the log :
I'm not sure if the Profile Creator is up-to-date on the current tag usage. Feel free to open up one of the grinding profiles in my signature and use it as a template if you'd like, replacing the relevant details to fit your needs.

If one of my profiles still has this in it, make sure you remove it, as it's basically for equpping gear while leveling:

Code:
<BotSettings AutoEquip="1" />
 
I'm not sure if the Profile Creator is up-to-date on the current tag usage. Feel free to open up one of the grinding profiles in my signature and use it as a template if you'd like, replacing the relevant details to fit your needs

I Modify your profile : "[O] Hippogryph Skin - Hippogryphs" like this:

View attachment ChimeraTest.Xml

And The bot crash, I really don't know how to do a profile^^ help me please.
 
I Modify your profile : "[O] Hippogryph Skin - Hippogryphs" like this:

And The bot crash, I really don't know how to do a profile^^ help me please.
Try this:

Code:
<Profile>
	<Name>[O] Chimera Farm</Name>
	<KillRadius>130</KillRadius>
	<GrindAreas>
		<GrindArea name="Allagan_Chimera">
			<Hotspots>
				<Hotspot Radius="130" XYZ="412.4578, -54.11706, -773.5139" name="Allagan Chimera" />
			</Hotspots>
			<TargetMobs>
				<TargetMob Id="3540" />
			</TargetMobs>
			<MinLevel>1</MinLevel>
			<MaxLevel>61</MaxLevel>
		</GrindArea>
	</GrindAreas>
	<Order>
		<Grind grindRef="Allagan_Chimera" while="Core.Player.ClassLevel &lt; 61" />
	</Order>
</Profile>
 
Try this:

Code:
<Profile>
	<Name>[O] Chimera Farm</Name>
	<KillRadius>130</KillRadius>
	<GrindAreas>
		<GrindArea name="Allagan_Chimera">
			<Hotspots>
				<Hotspot Radius="130" XYZ="412.4578, -54.11706, -773.5139" name="Allagan Chimera" />
			</Hotspots>
			<TargetMobs>
				<TargetMob Id="3540" />
			</TargetMobs>
			<MinLevel>1</MinLevel>
			<MaxLevel>61</MaxLevel>
		</GrindArea>
	</GrindAreas>
	<Order>
		<Grind grindRef="Allagan_Chimera" while="Core.Player.ClassLevel &lt; 61" />
	</Order>
</Profile>

How do I get the Mob Id?
 
Oh thank you for that! Also, would you happen to know where I can get the aetheryte IDs for heavensward?

thank you
Run this in the Console:

Code:
ClearLog();
foreach(var item in DataManager.AetheryteCache)
{
Log("ID: {0} | Location: {1}",item.Key,item.Value);
}
 
Run this in the Console:

Code:
ClearLog();
foreach(var item in DataManager.AetheryteCache)
{
Log("ID: {0} | Location: {1}",item.Key,item.Value);
}

Oh Very nice! thank you for that. So lastly, how do i get the map number to fill in IsOnMap(____).

Thank for all your help and sorry for all the noob questions =)
 
Oh Very nice! thank you for that. So lastly, how do i get the map number to fill in IsOnMap(____).

Thank for all your help and sorry for all the noob questions =)
What I use:

Code:
ClearLog();
Log("Zone Id: {0} | Raw Zone Id: {1} | Subzone Id: {2}",WorldManager.ZoneId,WorldManager.RawZoneId,WorldManager.SubZoneId);
 
Back
Top