Jump to content

Search the Community

Showing results for tags 'problem'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Site Related
    • News & Announcement
    • FAQ
    • Website support
  • Site mods & Modding Teams
    • Los Angeles Mod
  • Emergency 4
    • General Talk
    • Multiplayer
    • Technical Related Support
    • Mission Related Support
    • Modding Related Support
    • European Modding
    • Mods
    • Mod Development and Concepts
  • Emergency 2012, Emergency 2013 & Emergency 2014
    • General Talk
    • Technical Related Support
    • Multiplayer
  • Emergency 5
    • General Talk
    • Multiplayer
    • Technical Related Support
    • Mission Related Support
    • Modding Related Support
    • Mods
  • Into the Flames
    • General Talk
    • Modding
  • Firefighting Simulator - The Squad
    • General
    • Multiplayer
    • Technical Related Support
  • Other Emergency games
    • General Help
    • Mission Help
    • Technical Help
  • Real Life
    • Emergency and Rescue services
    • Picture forum
  • Off Topic
    • [EN] Off Topic

Categories

  • English
    • Emergency 4
  • Dutch
  • Walkthroughs

Categories

  • Demos
  • Emergency 1
  • Emergency 2
  • Emergency 3
    • Small mods
    • Big Mods
    • Patches
  • Emergency 4
    • Small Mods
    • Big Mods
    • Patches
  • Emergency 5
    • Patches
    • Alterations and small modifications
    • Full Modifications
  • Modding
    • 3D Models
    • Sounds
    • Textures
  • Other Files
    • Videos
    • Music
  • Tools
  • Need For Speed: High Stakes and Hot Pursuit 2 Files
    • NFS:HS Civilian Vehicles
    • NFS:HS Emergency Vehicles
    • NFS:HS Parts for Vehicles
    • NFS:HS Modding Tools/Utilities
    • NFS:HS Mod Files
    • NFS:Hot Pursuit 2 Vehicles

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


ICQ


Yahoo


Skype


Steam


Location


Interests

Found 9 results

  1. Hello everyone. Im'm new on the forums and I'm from Argentina. I recently installed Emergency 4 and when I try to start the game, after the presentation videos, a black screen appears and turns me back to desktop. I had the same problem with EM3 but when I eliminate all videos the game works fine. I tried this with EM4 but the problem still. I saw that there's a lot of people with the same problem, and I tried a lot of possible solutions: Reinstall drivers[ I don't know if I installed them by the correct way]; change screen resolution, start as Admin, runs in compatibility mode, without firewall... but nothing works! My PC System is: AMD Semprom 2400+ (1,7Ghz) 768 MB Ram Windows XP 2002 Service Pack 3 GeForce 6200 Yes, I know that my PC is not the best, but I can play ProEvolutionSoccer 2010 without problems! I don't think that it's a Grahpics trouble, because the Editor works fine! PLease, I hope you can help me! I waited a lot for this game! Greetings from Argentina. PS.: About the Em4.cfg, when I try to attach it says that I'm not permitted to upload that kind of files, so I uploaded it as a *.txt file. logfile.txt Copia de em4.txt DxDiag.txt
  2. Good Morning, I have a problem when playing multiplayer and command a unit starts the problem because I have no control over it sometimes in certain units I have a command or two looked everywhere and can not find anything related. my friend if you can play well and can control their units, however I do not. I can not even move units once sent any solution to this? sorry if not understood correctly Use the translator and not very reliable to say, Greetings
  3. Hello guys, today i've downloaded a new map from the german forum (file .tga). Now i want to put it in the game, but i cannot make it, because i'm not very expert... Someone can help me??????? Thank
  4. Hello guys, I recently discovered that my PC doesn't open some types of .DDS files. For open them I usally use xnView and it always work well... Someone can help me? This is one of the files i cannot open... (from Wuppertal Mod)file.zip
  5. Hey Emergency Planet. I am trying to make a submod for Hoppah's Los Angeles Mod 2.1. I have very little experience with scripting in Emergency 4 (although I do know some C++). I am trying to add a new command to soldiers: Get Grenade. I pretty much want to make a copy of the flashbang but make it explosive, and make a secondary command to retrieve and use it. This is for a military submod I am making... I'm not a trigger-happy maniac. Any ideas? As I am a complete newbie, I really need all the help I can get. My code so far is: object ThrowMolotov : CommandScript { ThrowMolotov() { SetValidTargets(ACTOR_FLOOR | ACTOR_OBJECT | ACTOR_VIRTUAL | ACTOR_HOUSE | ACTOR_OPEN_HOUSE); SetPossibleCallers(ACTOR_PERSON); SetIcon("throwmolotov"); SetCursor("throwmolotov"); } bool CheckPossible(GameObject *Caller) { if(!Caller->IsValid() || Caller->GetType() != ACTOR_PERSON || Caller->GetEquipment()!=EQUIP_BOTTLE) return false; return true; } bool CheckTarget(GameObject *Caller, Actor *Target, int childID) { if(!Caller->IsValid() || Caller->GetEquipment()!=EQUIP_BOTTLE || Caller->GetID() == Target->GetID()) return false; if (Caller->GetType() != ACTOR_PERSON) return false; Person p(Caller); if(p.GetEnteredCarID() != -1) return false; return true; } void PushActions(GameObject *Caller, Actor *Target, int childID) { Vector CmdPos, TargetPos; CmdPos = Game::GetCommandPos(); TargetPos = CmdPos; Person p(Caller); if(!p.IsValid()) return; if (p.GetThrowPosition(TargetPos)) { Caller->PushActionmove(ACTION_NEWLIST, TargetPos); Caller->PushActionTurnTo(ACTION_APPEND, CmdPos); } else { Caller->PushActionTurnTo(ACTION_NEWLIST, CmdPos); } Caller->PushActionThrowMolotov(ACTION_APPEND, CmdPos, 150000.f); Caller->PushActionRemoveEquipment(ACTION_APPEND); } }; object GetMolotov : CommandScript { GetMolotov() { SetValidTargets(ACTOR_FLOOR | ACTOR_OBJECT | ACTOR_VIRTUAL | ACTOR_HOUSE | ACTOR_OPEN_HOUSE); SetGroupID(CGROUP_GETEQUIPMENT); SetPossibleCallers(ACTOR_PERSON); SetNeedsCarWithFlagSet(OF_HAS_FLASHGRENADE); SetIcon("getmolotov"); SetCursor("getmolotov"); } bool CheckTarget(GameObject *Caller, Actor *Target, int childID) { if (!Caller->IsValid() || !Target->IsValid() || (Caller->GetID()==Target->GetID())) return false; if (Target->GetType()==ACTOR_VEHICLE) { Vehicle v(Target); if ((v.HasCommand("FlyTo") || v.HasCommand("VcmdDeInstallRope")) && !v.IsOnGround()) return false; } Person p(Caller); if(p.IsValid() && (p.IsCarryingPerson()||p.IsLinkedWithPerson()|| p.IsPulling() || p.GetEnteredCarID() != -1)) return false; GameObject obj(Target); if (Caller->GetObjectType()==TYPE_PERSON && Caller->GetEquipment()!=EQUIP_FLASHGRENADE && obj.IsValid() && obj.IsFlagSet(OF_HAS_FLASHGRENADE)) { return true; } return true; } 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_BOTTLE); } };
  6. Hi everyone, I'm new in the forum and I have a problem.. I have Em 4 Deluxe with Los Angeles Mod v2.0 by Hoppah installed, the game works fine clean, but the mod crashes when I try to load it, please help! Note: I played the game with the mod before and it works with any problem, but right now I don't have idea why he doesn't works anymore... Note 2: sorry for bad english, I'm from Argentina
  7. What happens is I try to create a car in sketchup but when I imported the car in ZModeler is very small. but wanted to know how to do it bigger?. to insert the texture well. And also another thing, I want a tutorial on how to create a car in ZModeler and well detailed so that it can do for emergency 4. and is a Ford F-150 Super Crew 2011. as I want to create a mod called "Monterrey city mod". I need help!. I hope answers!. Greetings!.
  8. First of all hi Guys , I have a serious problem in my PC . A few days ago I have installed "GTA San Andreas" While I was playing, I saw triangle thing on the screen. (I mean in the game). This thing happened again and again. So uninstalled it. And started to play "PES 2012". While I was playing, I saw these damn triangle things again in grandstands. Today I installed "Operation Flashpoint Red River". And these things happened again. I need help guys. I uploaded a picture and my system. :(
  9. First of all hi Guys , I have a serious problem in my PC . A few days ago I have installed "GTA San Andreas" While I was playing, I saw triangle things on the screen. (I mean in the game). This thing happened again and again. So uninstalled it. And started to play "PES 2012". While I was playing, I saw these damn triangle things again in grandstands. Today I installed "Operation Flashpoint Red River". And these things happened again. I need help guys. I uploaded a picture and my system. :(
×
×
  • Create New...