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

Invading the Citadel

cici

Member
Joined
Jun 12, 2010
Messages
431
Reaction score
7
So, while im trying to complete the Hellfire quests i got stuck around 70 quests, figured wth ill give it a try with some dungeon quests aswel, now problem is it wont really move after it picks up the quest

Invading the Citadel

here is what ive been trying to do, if any1 could help it would be awsome :)
PHP:
<PickUp QuestName="Invading the Citadel" QuestId="29543" GiverName="Sergeant Altumus" GiverId="19309" />

<If Condition="((HasQuest(29543)) &amp;&amp; (!IsQuestCompleted(29543)))" ><CustomBehavior File="FlyTo" X="-361.8571" Y="3071.422" Z="-15.09522" />			<CustomBehavior File="ForcedDismount" />			<CustomBehavior File="MyCTM" X="-367.2358" Y="3078.148" Z="-15.00617" /></If>
<TurnIn QuestName="Invading the Citadel" QuestId="29543" TurnInName="Advance Scout Chadwick" TurnInId="54603" />
 
Last edited:
<turnin questname="Invading the Citadel" questid="29543" turninname="Advance Scout Chadwick" turninid="54603">
Code:
</turnin>[LEFT][COLOR=#007700][FONT=monospace]<if <="" span=""></if>[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]Condition[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"((HasQuest(29543)) && (!IsQuestCompleted(29543)))" [/FONT][/COLOR][COLOR=#007700][FONT=monospace]>
[/FONT][/COLOR][/LEFT]

The brackets don't match up! You've got an extra bracket close on IsQuestCompleted()
 
i see 5 open and 5 close, cant see how theres more close then Open

and takeing away 1 makes it go nuts in debug telling me its wrong about the isquestcompleted...
 
Last edited:
<turnin questname="Invading the Citadel" questid="29543" turninname="Advance Scout Chadwick" turninid="54603">
Code:
</turnin>[LEFT][COLOR=#007700][FONT=monospace]<if <="" span=""></if>[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]Condition[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"((HasQuest(29543)) && (!IsQuestCompleted(29543)))" [/FONT][/COLOR][COLOR=#007700][FONT=monospace]>
[/FONT][/COLOR][/LEFT]

The brackets don't match up! You've got an extra bracket close on IsQuestCompleted()

wrong, actually

the brackets are fine

(
(
HasQuest
(
29543
)
)
&&
(
!IsQuestCompleted
(
29543
)
)
)
 
@OP - some quests are already considered completed... or 'objective completed'

so take out the ! from ICQ
 
<turnin questname="Invading the Citadel" questid="29543" turninname="Advance Scout Chadwick" turninid="54603">
PHP:
<PickUp QuestName="Invading the Citadel" QuestId="29543" GiverName="Sergeant Altumus" GiverId="19309" />

<If Condition="(HasQuest(29543))" ><CustomBehavior File="FlyTo" X="-361.8571" Y="3071.422" Z="-15.09522" />			<CustomBehavior File="ForcedDismount" />			<CustomBehavior File="MyCTM" X="-367.2358" Y="3078.148" Z="-15.00617" /></If>
<TurnIn QuestName="Invading the Citadel" QuestId="29543" TurnInName="Advance Scout Chadwick" TurnInId="54603" />
this how u mean? with only

PHP:
<If Condition="(HasQuest(29543))" >

still just wants to pick it up -.-'</if></turnin></pickup>
 
funny thing is even if i change it completely like this:



<turnin questname="Invading the Citadel" questid="29543" turninname="Advance Scout Chadwick" turninid="54603">
PHP:
<PickUp QuestName="Invading the Citadel" QuestId="29543" GiverName="Sergeant Altumus" GiverId="19309" />

<While Condition="Me.MapId == 530" ><CustomBehavior File="FlyTo" X="-361.8571" Y="3071.422" Z="-15.09522" />			<CustomBehavior File="ForcedDismount" />			<CustomBehavior File="MyCTM" X="-367.2358" Y="3078.148" Z="-15.00617" /></While><TurnIn QuestName="Invading the Citadel" QuestId="29543" TurnInName="Advance Scout Chadwick" TurnInId="54603" />

it still dont stop trying to pick up the quest, its like the quest isnt even there in the log, but it really is.

Bot bug?</turnin></pickup>
 
My bad on the brackets! Looked like it on mobile browser :P
Sent from my 7 Trophy using Board Express
 
hehe :P but guess this quest is impossible, 2 bad no 75/75 in Hellfire then i guess..
 
ok, ive come to the conclusion that the bot dont even know it has picked up the quest because even if i only do the Pickup quest line, it still keep trying to pick it up...
 
Back
Top