Home   Help Search Login Register  

Author Topic: Privet Messages  (Read 486 times)

0 Members and 3 Guests are viewing this topic.

netta1234

  • Guest
Privet Messages
« on: 19 Jul 2004, 17:22:56 »
how do i make privet messages on ofp ?

so when we play MP every one wont see theyr money?

_msg = format ["Good Jop Being At Work Your Boss Gave You 250$ %1$.", m8_counter]
? (m8 == player) : hint _msg

dosent seem to work on MP but only on SP can some one tell me the problem? :-\

DBR_ONIX

  • Guest
Re:Privet Messages
« Reply #1 on: 19 Jul 2004, 18:27:34 »
I think HINT will display on all the peoples screen..
Maybe if you say "Welldone player 8, you were at work etc"
:(
- Ben

netta1234

  • Guest
Re:Privet Messages
« Reply #2 on: 19 Jul 2004, 18:35:45 »
but the hint didint show anything somehow dosent work on MP

Offline Artak

  • The old beanbag shaker
  • Former Staff
  • ****
  • You want to talk about it, yes?
    • OFP Team Finlanders
Re:Privet Messages
« Reply #3 on: 19 Jul 2004, 18:50:01 »
The above should and shall display the hint only on the machine where the m8 unit is local. If your friend Bob is playing with the m8 unit, Bob is the only one who will see the hint. If nobody is playing with m8, nobody will see the hint.

Since AI units don't need hints (doh), you can try a line like this:

?local m8: hint format ["Good Jop Being At Work Your Boss Gave You 250$ %1$.", m8_counter]

Not all is lost.

rOk

  • Guest
Re:Privet Messages
« Reply #4 on: 19 Jul 2004, 19:56:24 »
Read artak's post again.