forked from deonfoxfangs/Resplendent-Profiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Resplendent Start.xml
75 lines (74 loc) · 2.84 KB
/
Resplendent Start.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<!--
Author: Deon
Required: LLamaLibrary BotBase
Lisbeth BotBase
Exbuddy Plugin
ALL currently obtained Resplendent weapons in inventory or Armory.
-->
<!DOCTYPE Profile [
<!-- Profile Settings -->
<!ENTITY alc "1">
<!ENTITY arm "1">
<!ENTITY bsm "1">
<!ENTITY crp "1"><!-- If you don't want to collect a certain weapon change "1" to "0" -->
<!ENTITY cul "1">
<!ENTITY gsm "1">
<!ENTITY ltw "1">
<!ENTITY wvr "1">
]>
<Profile>
<Name>Resplendent Start</Name>
<Order>
<If Condition="&crp; == 1">
<If Condition="Core.Me.Levels[ClassJobType.Carpenter] > 79 and not HasItem(33154)">
<LLoadProfile Path="Profiles/Resplendent CRP Weapon.xml"/>
</If>
</If>
<If Condition="&bsm; == 1">
<If Condition="Core.Me.Levels[ClassJobType.Blacksmith] > 79 and not HasItem(33155)">
<LLoadProfile Path="Profiles/Resplendent BSM Weapon.xml"/>
</If>
</If>
<If Condition="&arm; == 1">
<If Condition="Core.Me.Levels[ClassJobType.Armorer] > 79 and not HasItem(33156)">
<LLoadProfile Path="Profiles/Resplendent ARM Weapon.xml"/>
</If>
</If>
<If Condition="&gsm; == 1">
<If Condition="Core.Me.Levels[ClassJobType.Goldsmith] > 79 and not HasItem(33157)">
<LLoadProfile Path="Profiles/Resplendent GSM Weapon.xml"/>
</If>
</If>
<If Condition="<w; == 1">
<If Condition="Core.Me.Levels[ClassJobType.Leatherworker] > 79 and not HasItem(33158)">
<LLoadProfile Path="Profiles/Resplendent LTW Weapon.xml"/>
</If>
</If>
<If Condition="&wvr; == 1">
<If Condition="Core.Me.Levels[ClassJobType.Weaver] > 79 and not HasItem(33159)">
<LLoadProfile Path="Profiles/Resplendent WVR Weapon.xml"/>
</If>
</If>
<If Condition="&alc; == 1">
<If Condition="Core.Me.Levels[ClassJobType.Alchemist] > 79 and not HasItem(33160)">
<LLoadProfile Path="Profiles/Resplendent ALC Weapon.xml"/>
</If>
</If>
<If Condition="&cul; == 1">
<If Condition="Core.Me.Levels[ClassJobType.Culinarian] > 79 and not HasItem(33161)">
<LLoadProfile Path="Profiles/Resplendent CUL Weapon.xml"/>
</If>
</If>
<LogMessage Message="All requested Resplendent weapons complete. Congrats!"/>
<RunCode Name="finish"/>
</Order>
<CodeChunks>
<CodeChunk Name="finish">
<![CDATA[
Core.OverlayManager.AddToast(() => "All requested Resplendent weapons complete. Congrats!\n:)", TimeSpan.FromMilliseconds(25000), System.Windows.Media.Color.FromRgb(29,213,226), System.Windows.Media.Color.FromRgb(13,106,175), new System.Windows.Media.FontFamily("Gautami"));
await Coroutine.Sleep(40000);
]]>
</CodeChunk>
</CodeChunks>
</Profile>