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

ACT 3 : Tremors in the stone. (Vermin Kill EXP) [Raith]

Raith

New Member
Joined
Jun 24, 2012
Messages
26
Reaction score
0
Hi i'm very new to all these but nevertheless trying out.

I'm trying to do a profile for Act 3 Quest Tremors in the stone just to kill vermin and repeat in the following steps :

1.Start quest
2.run to armory
3.skip cutscene
4.drop caltrops
5.run up stairs
6.shoot bola shot(low level)/elemental arrow(high level)
7.vermin completed and leave game

HOW TO GET IT GOING:

1. Go to ACT 3 QUEST 4 : Tremors in the stone (Begin quest)
2. Start game
3. Talk to the quest giver ( Lieutenant Lavail)
4. Start bot


Does not require plugins as it's meant to only kill vermin in the armory for fast exp then leaves.

Code:
<Profile>
<Name>Act 3 Tremors In The Stone Vermin [Raith]</Name>
<GameParams quest="203595" step="1" act="A3" difficulty="Normal" resumeFromSave="False" isPrivate="True" numGames="-1"/>
<Order>
<MoveTo questId="203595" x="345.7203" y="420.1865" z="0.3838232" stepId="1"/>
<MoveTo questId="203595" x="347.3438" y="461.4202" z="0.1249124" stepId="1"/>
<MoveTo questId="203595" x="310.2173" y="474.9878" z="-5.678424" stepId="1"/>
<UseObject questId="203595" stepId="1" x="319.5387" y="451.8316" z="-8.52308" isPortal="True" destinationWorldId="182875"/>
<WaitTimer questId="1" waitTime="3"/>
<SkipCutscene questId="203595" />
<MoveTo questId="203595" x="351.1448" y="278.9114" z="10.1" stepId="1"/>
<LeaveGame reason="Letz do it again" />
</Order>
<KillMonsters>True</KillMonsters>
<PickupLoot>False</PickupLoot>
</Profile>


Problems when I start the script :

ERROR: There was an error in the matchmaking service. The request was canceled. (Error 316609)

I tried manually resuming game and starting bot. Encountered problems are:

1. Stuck in front of armory doorway

Manually entered armory:

2. Does not skip cutscene
3. Leaves game immediately after cutscene ends.
 
first off.
<WaitTimer questId="1" waitTime="3"/>
is wrong, it will only wait 3 milliseconds, i recommend putting this value to 3000 (so it will be 3 seconds)

your initial step id is off, you have
<GameParams quest="203595" step="1" act="A3" difficulty="Normal" resumeFromSave="False" isPrivate="True" numGames="-1"/>
for step id you need to have
step="-1"
hopefully this solves all you issues
 
additionally you do not have a actorid for your armory portal.
For
<UseObject questId="203595" stepId="1" x="319.5387" y="451.8316" z="-8.52308" isPortal="True" destinationWorldId="182875"/>


Code:
<UseObject questId="203595" stepId="1" x="319.5387" y="451.8316" z="-8.52308" isPortal="True" [COLOR="#008000"]actorId="178293"[/COLOR] destinationWorldId="182875" />
 
Last edited:
Thank you so much! gonna try it out now!
 
any time, let me know if it still does not work, ill upload the code with the changes i think it needs
 
Hmmm i'm still getting this error the moment I start my script

ERROR: There was an error in the matchmaking service. The request was canceled. (Error 316609)
 
<Profile>
<Name>Act 3 Tremors In The Stone Vermin [Raith]</Name>
<GameParams quest="203595" step="-1" act="A3" difficulty="Normal" resumeFromSave="False" isPrivate="True" numGames="-1"/>
<Order>
<MoveTo questId="203595" x="345.7203" y="420.1865" z="0.3838232" stepId="1"/>
<MoveTo questId="203595" x="347.3438" y="461.4202" z="0.1249124" stepId="1"/>
<MoveTo questId="203595" x="310.2173" y="474.9878" z="-5.678424" stepId="1"/>
<UseObject questId="203595" stepId="1" x="319.5387" y="451.8316" z="-8.52308" isPortal="True" actorId="178293" destinationWorldId="182875" />
<WaitTimer questId="1" waitTime="3000"/>
<SkipCutscene questId="203595" />
<MoveTo questId="203595" x="351.1448" y="278.9114" z="10.1" stepId="1"/>
<LeaveGame reason="Letz do it again" />
</Order>
<KillMonsters>True</KillMonsters>
<PickupLoot>False</PickupLoot>
</Profile>

that should work... im not home so i cant test it... make sure you save the .xml file then hit reload to make sure it complies without errors
 
Nice! Bot joins game smoothly now.
Goes through portal to armory.

Errors:
Still doesn't skip cutscene.
leaves game immediately.
Does not pause to drop caltrops and move up stairs to fire at oncoming vermin.

Am i lacking commands to attack or such? Think it's better if i wait for you to get home! My explanations aren't too good maybe it's better if you see it run on your d3! :)
 
Try something like this for the skip cutscene
<While condition="IsActiveQuestStep(X)">
<UseObject questId="203595" stepId="X" x="319.5387" y="451.8316" z="-8.52308" isPortal="True" actorId="178293" destinationWorldId="182875" />
<WaitTimer questId="93396" stepId="X" waitTime="3500" />
<SkipCutscene questId="1" />
</While>

For X put in the step id of the quest at that time may work then.. lol
 
I would do If checks for the cutscene and when entering the room...
 
lol not sure what you mean by this, still wet behind the ears on a few of the profiling concepts XD
 
Everything runs alright now! Just wondering why the bot leaves game immediately after skipping the cutscene in the armory. Does not stay to attack. Am I lacking parts in the script?
What commands should I write to do a :

1. Drop caltrops
2. Run up stairs a little (currently in the script)
3. Shoot oncoming vermin bitches till finished
4. Leave game (currently in the script)


And as for

<KillMonsters>True</KillMonsters>

Is that outdated?
 
lol not sure what you mean by this, still wet behind the ears on a few of the profiling concepts XD

same here I'm new to this! :x would be great if you could explain more Radonic! :D
 
I got alot to do atm, i dont really have time to show you what i mean, but take a look at some of the Kulle profiles, they should show you how to handle different quest steps and cutscenes!
 
I got alot to do atm, i dont really have time to show you what i mean, but take a look at some of the Kulle profiles, they should show you how to handle different quest steps and cutscenes!

VOILA I'm done! :D runs perfect! Thank you so much for the advice and thanks teamxmod for helping out! Excited to post up the profile for people now! :D
 
Back
Top