Warcraft III resources & community, 2003–2006 · archived

Quest for one player

9 posts
#1

Quest for one player

Hi! I wonder how to make a quest for one player! Thx
#2
Use a player condition like

Example
Events
Unit - A unit enters Cirlce of Power <gen>
Conditions
(Owner of (Triggering unit)) == FunkyMonkey
Actions
Quest - Display to (All players) the Quest Update message: You finished the funkymonkeyquest...
#3
no i mean in the quest log
#4
you just said quest, well I suspose I don't know how.
#5
uh.. just do like a normal quest except you just trigger it on a player? i mean, like how you would make a quest for everyone, but this time, make it only trigger for one.
#6
Quest for one player? Well quests cant be viewed by only one player. To create a quest, simply do this.

Actions:
Quest-Create: create quest with title "" ...

That's simply basic.

-Rui
#7
you guys dont get it, he wants to have a quest show up for one player:
Quest Test
    Events
        Map initialization
    Conditions
    Actions
        Quest - Create a Required quest titled Quest for Player Red with the description Only Player 1 [Red] can see me!, using icon path ReplaceableTextures\CommandButtons\BTNAmbush.blp
        Quest - Disable (Last created quest)
        Custom script:   if GetLocalPlayer() == Player(0) then
        Quest - Enable (Last created quest)
        Custom script:   endif
#8
I don't under stand why on a map iniz?

And tell me more aboute thos custon script!
#9
u dont have to do it at map init, when ur player shud get the quest like when he talks to NPC.
the custom script uses the getlocalplayer function to hide the quest then show it for a specific player.
in ur map u prolly wanna replace Player(0) with GetTriggerPlayer(), or w/e player that shud get the quest.