MagistratMay
New Member
- Joined
 - Dec 7, 2014
 
- Messages
 - 33
 
- Reaction score
 - 0
 
hello, I am new here and Try to understand the Scripting by using existing ones and look how they behave.
now I have the following problem I use the profile for umbral Rocks+Windshards from kagamihiiragi17.
the Umbral Rock part looks like that
	
	
	
		
and the windshards
	
	
	
		
where is the problem in using the skills
				
			now I have the following problem I use the profile for umbral Rocks+Windshards from kagamihiiragi17.
the Umbral Rock part looks like that
		Code:
	
	<If Condition="IsTimeBetween(6,7)">
            <If Condition="not IsOnMap(153)">
	        <TeleportTo Name="Camp Tranquil" AetheryteId="6" />
	    </If>
	    <Gather while="IsTimeBetween(6,7)">
             	<GatherObject>Unspoiled Rocky Outcrop</GatherObject>
         	<HotSpots>
         	   <HotSpot Radius="90" XYZ="-195.7283, -0.3201989, 492.07" />
         	</HotSpots>
         	<Slot>6</Slot>
		<GatheringSkillOrder>
		    <GatheringSkill SpellName="Unearth II" TimesToCast="1" />
		    <GatheringSkill SpellName="Solid Reason" TimesToCast="1" />
		    <GatheringSkill SpellName="Deep Vigor" TimesToCast="1" />
		</GatheringSkillOrder>
      	    </Gather>
	and the windshards
		Code:
	
	<If Condition="IsTimeBetween(7,24)">
            <If Condition="not IsOnMap(152)">
	        <TeleportTo Name="The Hawthorne Hut" AetheryteId="4" />
	    </If>
	    <Gather while="IsTimeBetween(7,24)">
                <GatherObject>Rocky Outcrop</GatherObject>
                <HotSpots>
        	    <HotSpot Radius="90" XYZ="-164.3448, -0.488205, 163.7332" />
                </HotSpots>
                <ItemNames>
                    Grade 2 Shroud Topsoil
                    Wind Crystal
                    <ItemName>Wind Shard</ItemName>
                </ItemNames>
	        <GatheringSkillOrder>
		    <GatheringSkill SpellName="Prospect" TimesToCast="2" />
	        </GatheringSkillOrder>
      	    </Gather>
	</If>
	where is the problem in using the skills






