OFPEC Forum

Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting Multiplayer => Topic started by: desper8 on 06 Mar 2004, 12:58:59

Title: hint specific player
Post by: desper8 on 06 Mar 2004, 12:58:59
i have spent 25min searching for "hint and trigger"
no luck

soo

i wanna know
how do u send a player a hint if he walks into trigger zone

so far closest i found was
if (side player == EAST) then {hint "hello east!"}

but i want only 1 to see the hint
not the team
Title: Re:hint specific player
Post by: Chris Death on 06 Mar 2004, 13:44:50
In a script:

?(player in list trigger_name): hint "hello you single person you"

In a trigger:

activation: anybody/present

condition: this AND player in thislist

onActivation: hint "welcome to the trigger"

~S~ CD
Title: Re:hint specific player
Post by: desper8 on 06 Mar 2004, 15:19:52
n1ce 1