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

Unable to buy Guile Materia X

AresDraco

New Member
Joined
Aug 29, 2023
Messages
4
Reaction score
0
When using this code for the profile:

<LogMessage Message="Total purple scripts: ItemCount(33914)."/>
<While Condition="ItemCount(33914) &gt; 500">
<!-- 33914 = Purple Gatheres' Scrip Scrip -->
<BuyInclusionShopItem ItemId="33936" Count="0"/>
<!-- 33936 = Gatherer's Guile Materia X -->
</While>

I get this error, that corresponds to the expected behaivor ( I knew it after research) to the LL library
(https://github.com/nt153133/__Llama...622ac0170d/Helpers/InclusionShopHelper.cs#L41)

[20:07:28.388 Q] [InclusionShopHelper] Found 5 vendors with 5
[20:07:28.604 Q] [InclusionShopHelper] Item Gatherer's Guile Materia X is in a hidden sub category
[20:07:28.669 V] [Poi.Clear] Reason: Current behavior changed to BuyInclusionShopItem: LineNumber: 19, ItemId: 33936, Count: 0, HighPriority: True, IsDone: False, InCombat: False, QuestId: 0, StepId: 0, PostCombatDelay: 0, QuestName: null, IsDoneCache: False, Behavior: TreeSharp.ActionRunCoroutine, .
[20:07:28.669 D] Replaced hook [HighPriorityProfileOrderBehavior_Hook] 2438e5a3-e3c3-4aa6-b37d-
b0c2a2aac3a3

Any Idea how to buy that materia or how to make it work?
 
Oh, I already unlocked it, but it keeps showing in the RB that it is hidden
it is so already done that I have already bouth manually

this is already working using lisbeth, but I wanted to have more control using the library, I still want to learn how to,
this script is so lisbeth farms the materia with spearfishing. also, if you could point me out to some documentation or something I will really appreciate it. :D



<While Condition="ItemCount(33914) &gt; 500">
<WaitTimer WaitTime="5"/>
<Lisbeth Json="[{'Group':1,'Item':33936,'Amount':1,'Enabled':true,'Type':'Exchange'}]"/>
</While>

<!-- ALWAYS -->
<If Condition="ClassName != ClassJobType.Fisher">
<ChangeClass Job="Fisher"/>
</If>

<If Condition="ClassName == ClassJobType.Fisher">
<AutoInventoryEquip/>
<WaitTimer WaitTime="5"/>
<Lisbeth Json="[{'Id':1,'Group':1,'Item':36580,'Amount':200,'Enabled':true,'Type':'Gather','Collectable':true, 'ConditionalJob':'Fisher','AmountMode':'Restock'}]"/>
</If>

<If Condition="ItemCount(33936) &lt; 100">
<WaitTimer WaitTime="5"/>
<LLoadProfile Path="Purple scripts.xml"/>
</If>
 
Then report this as a bug on the LL github
 
Back
Top