Home   Help Search Login Register  

Author Topic: Decting whos in cargo  (Read 621 times)

0 Members and 2 Guests are viewing this topic.

StonedSoldier

  • Guest
Decting whos in cargo
« on: 03 Sep 2004, 13:47:37 »
theres two men in a plane (plane);  1 pilot and 1 incargo, how would i get the man who is in the cargo position to send a radio message, for the pilot i used;

(driver plane) sidechat "Isnt it lovely in this crappy plane"

Offline LCD

  • Former Staff
  • ****
    • Everon Cartel
Re:Decting whos in cargo
« Reply #1 on: 03 Sep 2004, 13:56:15 »
((cargo place) select 0) sidechat "Watever"

i think ::)

LCD OUT
"guess being the community has downsides .." - cheetah
Help Perfecting Da Next Best Thing - O-Team Beta

Offline Blanco

  • Former Staff
  • ****
Re:Decting whos in cargo
« Reply #2 on: 03 Sep 2004, 17:20:33 »
I don't think there is a cargo command...

Maybe you can get an array of the units in cargo with this:

Code: [Select]
_cr = crew car1

_cr = (_cr - ((driver car1) - (gunner car1) - (commander car1))

_cr should return an array with only the units in cargo.

Then pick one guy with the select command...

Code: [Select]
(_cr select 0) vehiclechat "whatever"

Syntax not garantued!
 

Search or search or search before you ask.

Offline The-Architect

  • Former Staff
  • ****
  • Bite my shiny metal...
    • Bob's Un-official Flashpoint Page
Re:Decting whos in cargo
« Reply #3 on: 03 Sep 2004, 17:36:04 »
Give the guy who's in cargo a name and then do a radio message like that.

Example:

cargodude sidechat "I can see my house from here!"
James Andrew Wilkinson 1977 - 2005 R.I.P.
"If it ain't the friggin' incoming it's the friggin' outgoing. Only difference is who gets the friggin' grease, and that ain't no friggin' difference at all."

Offline LCD

  • Former Staff
  • ****
    • Everon Cartel
Re:Decting whos in cargo
« Reply #4 on: 03 Sep 2004, 17:52:42 »
ok ma wrong lol ;D

use the crew command i mean ;)

(crew planname select 1) (if there only 2 it shud work)

so its  

((crew planename) select !) sidechat "watever"

LCD OUT
"guess being the community has downsides .." - cheetah
Help Perfecting Da Next Best Thing - O-Team Beta

StonedSoldier

  • Guest
Re:Decting whos in cargo
« Reply #5 on: 03 Sep 2004, 19:24:37 »
thankx guys, LCD i'll try tht now