Jump to content

Rob

Member
  • Content Count

    1470
  • Joined

  • Last visited

  • Medals

Posts posted by Rob


  1. i need a really detailed info on how to get a group to move to somewhere on the map like fj21.

    fj21 being the coordinates. If ur one of those people always saying "well y dont u look for it" dont bother, i have and they either don't explain it well or it don't work.

    Theres one i tried but didn't work which was supposed to move a group to me. i think it was "groupname move gotopos player" but wen i put in the player in the activation field it kept saying unknown operator. plz help otherwise my mission is incomplete.

    (Edited by Rob at 8:22 pm on Sep. 17, 2001)


  2. i got this script from someone and i don't understand where to put the stuff.

    ; A small script that will blowup a vehicle as soon as a specific unit gets into it

    ; Get the unit which will be affected

    _Unit = _this select 0

    ; Get the vehicle which will be affected

    _Vehicle = _this select 1

    ; Main loop

    #Update

    ; Check is the unit is in the vehicle

    ? (_Unit in _Vehicle) && (speed _Vehicle > 5) : goto "BlowUp"

    ; Wait 2 seconds

    ~2

    goto "Update"

    ; The unit must be in the vehicle

    #BlowUp

    ; Wait 5 seconds before blowing this up

    ~5

    ; Destroy the vehicle

    _Vehicle setdammage 1

    exit

    i understand how to use init boxes and everything but he didn't explain very well where to put them. if u understand can u jelp out plz.

×