LHNX Posted October 22, 2011 Share Posted October 22, 2011 (edited) Hi everyone, I just started playing around with the GECK. I'm trying to make a simple quest in which the PC has to collect several objects in a level, and am able to create quest targets for each object, but now I want to make the player see only 1 target at the same time. They all have the same quest stage and objective (e.g. "Find all objects"), the first quest target points to the first object, when the player finds it, a new quest target appears, pointing to the second object and so on. When the player has found all objects, that quest stage is finished and the next starts, or the quest ends altogether. Can somebody explain how to do this? Does it have something to do with the quest conditions, and how do you use those? Thanks in advance! Edited October 23, 2011 by LHNX Link to comment Share on other sites More sharing options...
SomeoneIknow Posted October 23, 2011 Share Posted October 23, 2011 Hi everyone, I just started playing around with the GECK. I'm trying to make a simple quest in which the PC has to collect several objects in a level, and am able to create quest targets for each object, but now I want to make the player see only 1 target at the same time. So he first has to find the first object, when he finds it, the target for the 1st object disappears and the one for the 2nd object appears and so on. Can somebody explain how to do this? Does it have something to do with the quest conditions, and how do you use those? Thanks in advance! Sounds like to me what you'd want to do is have somewhere an OnActivatePlayer blocktype script either attached to the activated object(s) or in your quest and in that blocktype I think you'd do a plus one to the counter variable you're using for your quest script to indicate how many the player has activated so far. And in that same blocktype you'd use your enable or disable command pointed to whichever reference variable objects then voila! I'm sorry in advance if I misunderstood your request in my answer. Link to comment Share on other sites More sharing options...
LHNX Posted October 23, 2011 Author Share Posted October 23, 2011 Thanks for the answer. I edited my first post a bit, to explain the problem a little better. I'll check out what you suggested :) Link to comment Share on other sites More sharing options...
LordGawaine Posted October 23, 2011 Share Posted October 23, 2011 I'm pretty sure it's as simple as having a quest with a Start (10), Object1 (20), Object2 (30), Object3 (40), End (100). Each Object to find has it's own value in the quest, and thus each has it's own target. When Object1 is found, go on to the 2nd object (value of 30). Link to comment Share on other sites More sharing options...
Recommended Posts