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!

Creating LeveQuest TurnIn profile

Mrxshamsi

New Member
Joined
Nov 11, 2015
Messages
2
I wanted to know if I could make the profile do them all instead of wasting my time and changing the number on Fisher everytime.


Code:
<!DOCTYPE Profile [

	<!ENTITY Fisher "2">

 ]>
	
<Profile>
	<Name>Levequests</Name>
	<KillRadius>50</KillRadius>
	
	<Order>
	
		
		<If Condition="&Fisher; == 0">		
			<While condition="ItemCount(4986) &gt; 3">
				<LogMessage message="Fisher Levelquest)"/>	
				<ExPickupGuildLeve leveIds="783" leveType="Fieldcraft" npcId="1002384" npcLocation="227.5683, 222.0001, 341.5232" />
				<ExTurnInGuildLeve npcId="1007065" npcLocation="239.9642, 222.2306, 327.4357" />	
			</While>				
		</If>
		
		<If Condition="&Fisher; == 1">			
			<While condition="ItemCount(4976) &gt; 3">
				<LogMessage message="Fisher Levelquest)"/>
				<ExPickupGuildLeve leveIds="782" leveType="Fieldcraft" npcId="1002384" npcLocation="227.5683, 222.0001, 341.5232" />
				<ExTurnInGuildLeve npcId="1007065" npcLocation="239.9642, 222.2306, 327.4357" />	
			</While>				
		</If>	

		<If Condition="&Fisher; == 2">		
			<While condition="ItemCount(4981) &gt; 3">
				<LogMessage message="Fisher Levelquest)"/>	
				<ExPickupGuildLeve leveIds="784" leveType="Fieldcraft" npcId="1002384" npcLocation="227.5683, 222.0001, 341.5232" />
				<ExTurnInGuildLeve npcId="1007065" npcLocation="239.9642, 222.2306, 327.4357" />	
			</While>				
		</If>			
        	
		<If Condition="&Fisher; == 3">		
			<While condition="ItemCount(5544) &gt; 3">
				<LogMessage message="Fisher Levelquest)"/>	
				<ExPickupGuildLeve leveIds="785" leveType="Fieldcraft" npcId="1002384" npcLocation="227.5683, 222.0001, 341.5232" />
				<ExTurnInGuildLeve npcId="1007065" npcLocation="239.9642, 222.2306, 327.4357" />	
			</While>				
		</If>


		
	</Order>
	
	
</Profile>
 
Back
Top