Jump to content

stefanvp

Members
  • Posts

    65
  • Joined

  • Last visited

Everything posted by stefanvp

  1. i got 2 others, i think... 3 when the bombrobot is blowed up and dragged away by the pick-up truck, then has the bomb men their usual commands. (like get in car, go to) after a while a bombrobot appears but I can't put it back in the van 4 in the fourth mission (formula 1). under the red car back is a dead man, but i can't treat him don't now if the last 2 are only from 2.0 (restarting doesn't work)
  2. now you're doing it again! i got 2 bugs or strange things: 1 in the mission with the fire on the oil-thing, the diver dropped from the helicopter walks on the water. 2 if the k-9 officer is using the halt people command, and then calls the dog, he scared the dog away. sorry for my bad english
  3. not yet, but if I play em4 now the screen goes white and thats stupid and especially now becaus i'm watching a movie, but thats an other story
  4. in 1.9 are the missions missing by me in the list, even after installing patch 3. and in 2.0 got I the same problem sorry for my bad english
  5. when you play em4 without the mod, do you still get the problem? my english isn't good either
  6. I still do not understand you or something like that my english is bad
  7. do you mean that you want to replace the siren with your siren?
  8. i think so, i don't use it, but that's what they sad to me click
  9. you have to set up, or logg in to a network in hamachi (if you don't know how, read the manual from hamachi). then someone must host a game; go to MP; internet; and it has to work that's what i know, i don't play MP, the other people are stupid...
  10. did you use the installer from em4 or from the la mod?
  11. there isn't a supervisor for EM4, only for EM3. but you can send a battalion chief or a paramedic captain to sent other vehicles to a spot. officers can sent an ambulance, a patrol car and a police helicopter. if you are a good modeler and scripter, then you can add a supervisor. or if someone else got a superviser and sent it to you
  12. are you reading the topic?! I try! but it doesn't work or if someone else has the solution.... they will say it! so EDIT: it works!!! but how can we get all the persons get a fence?
  13. the problem is over, but I still can't get a fence. Btw., is it normal that I can get trafficcones from the engineer vehicle?
  14. that is what i did.... i think i checked it twice and i can't upload the script: Upload failed. You are not permitted to upload this type of file EDIT: stupid me... const char CMD_GETBARRICADE[] = "PcmdBarricadeGet"; const char CMD_REMOVEBARRICADE[] = "PcmdBarricadeRemove"; const char CMD_PLACEBARRICADE[] = "PcmdBarricadePlace"; const char CMD_GETCONE[] = "PcmdTrafficConeGet"; const char CMD_ROTATECW[] = "VcmdRotateBarricadeClockwise"; const char CMD_ROTATECCW[] = "VcmdRotateBarricadeCounterClockwise"; const char CMD_DOORS[] = "OpenCloseDoor"; const char OBJ_BARRICADEGROUND[] = "mod:Prototypes/Vehicles/06 Objects/police_barricade.e4p"; const char NAME_BARRICADE[] = "Barricade"; const char OBJ_BARRICADE[] = "01 LA Equipment/police_barricade.V3O"; const char DUMMY_BARRICADE[] = "DummyPoliceBarricade"; const char NAME_HALT[] = "pHalt"; const char OBJ_HALT[] = "mod:Prototypes/Objects/01 LA Equipment/invisible.e4p"; int DummyGroup = 17; object PcmdBarricadeGet : CommandScript { PcmdBarricadeGet() { SetIcon("policebarricade"); SetCursor("policebarricade"); SetPriority(180); SetValidTargets(ACTOR_VEHICLE | ACTOR_OBJECT); SetGroupID(CGROUP_GETEQUIPMENT); SetRestrictions(RESTRICT_NOTDESTROYED | RESTRICT_NOTBURNING | RESTRICT_HASROADBLOCK); SetPossibleCallers(ACTOR_PERSON); SetNeedsCarWithFlagSet(OF_HAS_ROADBLOCK); } /*bool CheckPossible(GameObject *Caller) { if(!Caller->IsValid() || Caller->GetType() != ACTOR_PERSON) return false; Person p(Caller); if (p.IsCarryingPerson()||p.IsLinkedWithPerson()|| p.GetFirehoseID()!=0 || p.IsPulling()) return false; if (p.IsCurrentAction("EActionTreatPerson")) return false; if (!Game::ExistsNormalObjectWithFlagSet(OF_HAS_ROADBLOCK)) return false; return true; }*/ bool CheckTarget(GameObject *Caller, Actor *Target, int childID) { if(!Caller->IsValid() || !Target || !Target->IsValid() || Target->GetType()!=ACTOR_VEHICLE) return false; if(Caller->GetObjectType()==TYPE_PERSON) { Person p(Caller); Vehicle v(Target); if (v.IsDestroyed()) return false; if(p.IsValid() && (p.IsLinkedWithPerson() || p.IsCarryingPerson() || p.IsEquipped() || p.IsPulling() || p.GetFirehoseID()!=0 || p.GetEnteredCarID() != -1)) return false; Vehicle v(Target); if ((v.HasCommand("FlyTo") || v.HasCommand("VcmdDeInstallRope")) && !v.IsOnGround()) return false; if (v.IsValid() && !v.IsDestroyed() && StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/suv_lapd.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/hummerh2_lasd.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/rescue_truck01_lapd.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/rescue_truck02_lapd.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/swat_armoured_vehicle.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 LA Police/swat_truck.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/03 US Army/hmmwv.e4p") == 0 || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/05 US Army/us_army_truck.e4p") == 0) || StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/04 LA Tec/engineer_vehicle.e4p") == 0) return true; return false; } } void PushActions(GameObject *Caller, Actor *Target, int childID) { Vector TargetPos = Target->GetTargetPoint(Caller, TARGET_EQUIPMENTDOOR); Caller->PushActionMove(ACTION_NEWLIST, TargetPos); Caller->PushActionTurnTo(ACTION_APPEND, Target); Caller->PushActionGetEquipment(ACTION_APPEND, Target, EQUIP_NONE); Caller->PushActionExecuteCommand(ACTION_APPEND, DUMMY_BARRICADE, Target, 1, false); } };
  15. stefanvp

    Barricades

    it's the same as a officer that you set at the middle of the road with the halt person command on. same effect! sorry for my bad english
  16. and i'm back i got the problems foto's probleem click the picture to zoom in i get them multiple times what did i wrong? plz help my
  17. I tried to add a barricade to the technical van but i get a message from the game saying that there is a line is that he didn't expected. I don't remember it but when I play EM4 again I will write it down and add a new reply
  18. maby you can use the google translator? (sorry for my bad english!! )
  19. NL: hoi iedereen, ik had een vraagje; Zal ik een nederlandse vertaling maken voor de LA mod (versie 1.9)? wanneer de poll van de eerste pagina verdween werden de stemmen geteld (-1 voor nee) EN: Hi everyone, I had a question, Shall I make a Dutch translation of the LA mod (version 1.9)? when the poll dissappeard from the first page, then did I counted the votes(-1 for no) stefanvp well, any other votes are useless 'cause i counted the votes: oke, andere stemmen zijn zinloos, ik heb ze geteld: ja / yes :8 nee / no :7 topic may be closed (sorry for my bad english)
  20. how do you make animations?
×
×
  • Create New...