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

problem with quest.

acperin

New Member
Joined
Jan 31, 2010
Messages
106
Reaction score
0
Ok this is not working. Can anyone take a look at it. I am trying to create a rep quest. The quest is Planning for the future. The quest needs to collect 12 pups. The id of the pups on the ground is 26200. When the pup is in the inventory it becomes ID=35692.

In essence when item 26200 is right clicked it becomse 35692 in the inventory. 12 of the 35692 complete the quest. The problem is that the quest begins but the items are not collected.
 

Attachments

I might be wrong, but for Type: you put "Collect" isn't it "CollectItem"? Or does it matter?

So if my philosophy is correct this profile should work (See Attachment)
 

Attachments

I have not tried this yet but is there somewhere I can read the differences between collect and collectitem.
 
Once the Wiki has been edited then you will be able to, but yes Lt.Leon is correct you need to collect item.

<.QuestObjective QuestName="xxxxxxx" QuestId="12345" Type="CollectItem" ItemId="123456" Count="8" />


Remove the . when you cut and paste this into your profile.
 
Still having troubles

Ok i tried Leon's fix and it still not work. t just walks past the pups. Still having trouble getting this to work so if someone can look at this one .... I tried Roosters fix and it not workin either
 

Attachments

If you are collecting an item make sure you are using CollectCount and not just count. Also try to leave it in the format like this just incase it does have an effect.

Here is one that should work without the .

Or use the attachment

Code:
<.PickUp QuestName="Planning for the future" QuestId="11960" GiverId="26228" />
			<.Objective QuestName="Planning for the future" QuestId="11960" Type="CollectItem" ItemId="35692" CollectCount="8" />
			<.TurnIn QuestName="Planning for the future" QuestId="11960" TurnInId="26228" />
 

Attachments

Last edited:
If you are collecting an item make sure you are using CollectCount and not just count. Also try to leave it in the format like this just incase it does have an effect.

Here is one that should work without the .

Or use the attachment

Code:
<.PickUp QuestName="Planning for the future" QuestId="11960" GiverId="26228" />
			<.Objective QuestName="Planning for the future" QuestId="11960" Type="CollectItem" ItemId="35692" CollectCount="8" />
			<.TurnIn QuestName="Planning for the future" QuestId="11960" TurnInId="26228" />


Can't believe i missed that -_-
 
Last edited:
Also when do the NPC names you do not need to include their names the ID will do just fine. If that saves time for you.

Updated previous post also
 
does not work . quest start tag on line 19 does not match the end tag of objective. line 32 position 5


can somone take a look please
 
does not work . quest start tag on line 19 does not match the end tag of objective. line 32 position 5


can somone take a look please

Its Because in Natfoth put
Code:
<.QuestObjective instead of <.Objective. Change it at line 19.

Again, remove the period
 
Yea the dev forums dont like code to be pasted with in <> tags so all code needs a . in it to show up on this forum.

So always remove . from <.
 
This is how you do the override;

Code:
<.Quest Id="11960" Name="Planning for the future">
<.Objective Type="CollectItem" ItemId="26200" CollectCount="12" />
			<.Hotspots>
				<.Hotspot X="3214.98" Y="876.6855" Z="119.0841" />
				<.Hotspot X="3175.798" Y="969.2867" Z="113.9153" />
				<.Hotspot X="3192.143" Y="1085.85" Z="130.0134" />
				<.Hotspot X="3301.958" Y="1236.79" Z="137.7347" />
				<.Hotspot X="3356.083" Y="1186.346" Z="140.7681" />
				<.Hotspot X="3363.409" Y="1045.432" Z="141.5335" />
			<./Hotspots>
		<./Objective>
<./Quest>

Remove the . accordingly.
 
bump . ... cause i got knocked off the front page !!

Code:
<.Quest Id="11960" Name="Planning for the future">
<.Objective Type="CollectItem" ItemId="35692" CollectCount="12" />
			<.Hotspots>
				<.Hotspot X="3214.98" Y="876.6855" Z="119.0841" />
				<.Hotspot X="3175.798" Y="969.2867" Z="113.9153" />
				<.Hotspot X="3192.143" Y="1085.85" Z="130.0134" />
				<.Hotspot X="3301.958" Y="1236.79" Z="137.7347" />
				<.Hotspot X="3356.083" Y="1186.346" Z="140.7681" />
				<.Hotspot X="3363.409" Y="1045.432" Z="141.5335" />
			<./Hotspots>
		<./Objective>
<./Quest>

Remove the .'s as per usual.

The problem was that the ID was incorrect.
 
Ok so how about I leave the profile making to the pro. Thanks it works really well. Thank you all for a better answer to my question
 
Back
Top