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

Where to cut off rrix's Full Questing for Starter Edition botting

microtrol

New Member
Joined
Dec 19, 2012
Messages
33
Reaction score
0
Yeah I know, "why would you want to bot the starter edition ?". But that is not the question.

Anyone could give me a start, which questID is the fight with leoric ?
 
Actually, that's my question tho =x... As you can't trade any items or gold lol. Are you just practicing programming plugins or something?
 
Actually yes. Don't want to risk my remaining account while playing around with inapproriate calls to the banhammer god of doom :)

Code:
		<!-- Kill the Skeleton King -->
		<If condition="IsActiveQuest(72061) and IsActiveQuestStep(21) and ZetaDia.CurrentWorldId == 73261">
			<SafeMoveTo questId="72061" stepId="21" name="Kill the Skeleton King" pathPrecision="10" x="339" y="271" z="15" />
			<WaitTimer questId="72061" stepId="21" waitTime="265000" />
		</If>

closing if is line 653. so this would be the end and after that the "give me your money" popup would need to be closed.
any opinions ?
 
Sounds right. You can delete everything after than until you see </Order> at the bottom of the file.

If you want it to loop, add this, just before </Order>:

<LeaveGame reason="run is done" />
 
Okay I have it like that:

Code:
[...]
<!-- Kill the Skeleton King -->
		<If condition="IsActiveQuest(72061) and IsActiveQuestStep(21) and ZetaDia.CurrentWorldId == 73261">
			<SafeMoveTo questId="72061" stepId="21" name="Kill the Skeleton King" pathPrecision="10" x="339" y="271" z="15" />
			<WaitTimer questId="72061" stepId="21" waitTime="265000" />
		</If>
		
		<LogMessage message="Skeletal King is dead. Reload ! Yeha !!!" />
		
		<LeaveGame reason="Run is done" /> 
		
		<LoadProfile profile="starter_run.xml" />
		
		
	</Order>
</Profile>


Will give it a try today.
 
Back
Top