• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!
  • ✅ The POLL for Hive's Texturing Contest #34 is OPEN! Vote for the TOP 3 SKINS! 🔗Click here to cast your vote!
  • ✅ The POLL for Hive's Techtree Contest #20 is OPEN! Vote for the TOP 3 FACTIONS! 🔗Click here to cast your vote!

Quest for one player

Status
Not open for further replies.
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...
 
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.
 
you guys dont get it, he wants to have a quest show up for one player:
Code:
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
 
I don't under stand why on a map iniz?

And tell me more aboute thos custon script!
 
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.
 
Status
Not open for further replies.
Back
Top