Jump to content

53rd_Stevie

Member
  • Content Count

    4
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About 53rd_Stevie

  • Rank
    Rookie
  1. 53rd_Stevie

    CreateVehicle - Can't get in.

    I have done nothing with civilians. Removing the setFriend doesn't seem to fix it. I'm not putting any units on the map editor besides friendlies. Maybe this is the issue? Any empty vehicle placed in the editor allows my player to hop in. strange..
  2. 53rd_Stevie

    CreateVehicle - Can't get in.

    Well, i am really I have this for my enemy NPC spawning: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> ... _Center = createCenter east; _Center setFriend[west,0]; ... _Group = createGroup _Center; _Loc = markerPos _sSpawnMarkerName; _Unit = _Group createUnit [_sNPCName, _Loc, [], -1, "NONE"]; ... i'm new to scripting for ARMA so i could be using the wrong methods. I use it because if i don't use the setFriend EAST won't attack me. Or is this wrong.. seemed to work ! regards, stevie
  3. 53rd_Stevie

    CreateVehicle - Can't get in.

    hey guys, thanks for the replies, however it still doesn't solve my problem. If i use <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">VehicleName = "HMMWV" createVehicle getmarkerpos "hmmv" it still won't allow the player to hop in. It's for a multiplayer map which doesn't involve leaders. Anymore ideas? Placing an empty vehicle using the editor works, but i want them to spawn after a certain trigger criteria has been met. regards, stevie
  4. Hi Guys, i'm using the following to create a vehicle thru scripting. However i can't get in (no actions for it). Can somebody explain what i'm missing? <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> _Loc = markerPos "hmmv"; _HMMWV1 = "HMMWV" createVehicle(_loc) ; Below doesn't seem to do anything at all.. _HMMWV1 setVehicleLock "UNLOCKED"; Tnx, Stevie
×