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

SceneFound Tag

fuly

New Member
Joined
Jun 11, 2014
Messages
23
Reaction score
0
This code doesnt work me. act3 Bastion's Keep
The bot runs back to beginning of map.

In QuestTools the Explore Tag showed that Stonefort have an Scene with name "Exit".
But the bot continues exploring. Am I doing something wrong?
Code:
<If condition="CurrentLevelAreaId==93173">
			<TrinityExploreDungeon questId="1" until="SceneFound"
				sceneName="Exit" boxSize="15" boxTolerance="0.55">
				<PriorityScenes>
					<PriorityScene sceneName="Exit"></PriorityScene>
				</PriorityScenes>
			</TrinityExploreDungeon>
		</If>
 
Last edited:
it works now
Code:
<If condition="CurrentLevelAreaId==93173">
			<TrinityExploreDungeon questId="1" until="SceneFound"
				sceneName="a3dun_rmpt_W_Load_01" boxSize="15" boxTolerance="0.55">
			</TrinityExploreDungeon>
		</If>

But with sceneId it doesnt work!? So I have to use sceneName.
Demonbuddy Beta 418
QuestTools 2.0.74
 
it works now
Code:
<If condition="CurrentLevelAreaId==93173">
            <TrinityExploreDungeon questId="1" until="SceneFound"
                sceneName="a3dun_rmpt_W_Load_01" boxSize="15" boxTolerance="0.55">
            </TrinityExploreDungeon>
        </If>

But with sceneId it doesnt work!? So I have to use sceneName.
Demonbuddy Beta 418
QuestTools 2.0.74

Yup, sceneId has never worked for me.
 
Back
Top