Soldier Front 1 Server files

Page 12 of 32 FirstFirst ... 2456789101112131415161718192022 ... LastLast
Results 166 to 180 of 480
  1. #166
    Developer DNC is offline
    DeveloperRank
    Oct 2011 Join Date
    2,493Posts

    Re: Soldier Front 1 Release

    Quote Originally Posted by arceli925 View Post


    Hi how to fix this?

    Screenshot by Lightshot

    - - - Updated - - -

    error 1053 the service did not respond to the start or control request in a timely fashion on my windows 7 32bit..
    As there is a reply already I'm quoting you and removing your post.
    Last edited by DNC; 19-07-15 at 11:03 AM.

  2. #167
    Novice arceli925 is offline
    MemberRank
    Mar 2015 Join Date
    2Posts

    Re: Soldier Front 1 Release

    Ok my special force is working fine now .

  3. #168
    Enthusiast supergoudvis is offline
    MemberRank
    Jan 2014 Join Date
    37Posts

    Re: Soldier Front 1 Release

    You mean like you can connect and play or just the services are running

  4. #169
    Enthusiast davevanoerle is offline
    MemberRank
    May 2014 Join Date
    27Posts

    Re: Soldier Front 1 Release

    Quote Originally Posted by arceli925 View Post
    Ok my special force is working fine now .
    Quote Originally Posted by supergoudvis View Post
    You mean like you can connect and play or just the services are running
    I wanna know too
    Last edited by davevanoerle; 03-05-15 at 06:44 AM.

  5. #170
    Novice arceli925 is offline
    MemberRank
    Mar 2015 Join Date
    2Posts

    Re: Soldier Front 1 Release

    Yes i'm using 2012 client..

    - - - Updated - - -

    and server files.

  6. #171
    Enthusiast davevanoerle is offline
    MemberRank
    May 2014 Join Date
    27Posts

    Re: Soldier Front 1 Release

    Quote Originally Posted by arceli925 View Post
    Yes i'm using 2012 client..

    - - - Updated - - -

    and server files.
    Alright thanks, gonna try this out.

    Edit:
    Tried every patch from 2012 and so.. still can't get it to work.
    Last edited by davevanoerle; 04-05-15 at 02:45 PM.

  7. #172
    Novice Khenchi XD is offline
    MemberRank
    May 2015 Join Date
    1Posts

    Re: Soldier Front 1 Release

    Server files is compatible only on 64bit Window's and Client Version 2013-07-17, and figureout the setting's of server files. to fix the paket's error ..

  8. #173
    Enthusiast davevanoerle is offline
    MemberRank
    May 2014 Join Date
    27Posts

    Re: Soldier Front 1 Release

    Quote Originally Posted by Khenchi XD View Post
    Server files is compatible only on 64bit Window's and Client Version 2013-07-17, and figureout the setting's of server files. to fix the paket's error ..
    Would you mind sharing what you did exactly to fix the packet error? I've tried ALOT of things.

  9. #174
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: Soldier Front 1 Release

    Ok. My two issues are as follows. I've done everything that's been posted and installed anything that anyone has said could help.
    1)
    I could not get the ServiceInstaller thing working. I did install the MSVC++ 2005 x84 and x64 Redistributables. And still can't get it to accept the exe files. It'll tell me Service file path not specified or Service Not Installed.

    2)
    So I created my own services using the command line. I can't get the SF_AdminServer or SF_MessengerServer services to start at all. Then the SF_LauncherServer service likes to stop and I have to start it again.

  10. #175
    Apprentice Modex is offline
    MemberRank
    Dec 2013 Join Date
    UnknownLocation
    15Posts

    Re: Soldier Front 1 Release

    Quote Originally Posted by wesman2232 View Post
    Disabled UAC?

  11. #176
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: Soldier Front 1 Release

    Quote Originally Posted by Modex View Post
    Disabled UAC?
    Ok, that worked for the application, but it still doesn't fix my two services not starting.
    Besides, the ServiceInstaller is doing the same thing you would do if you did it through the command line. So you don't have to use it and disable UAC and all that painful mess.

    For those who have the SF_ServerConfig file on your C:\ Drive here's the code for installing the services without disabling UAC.

    Throw it in a notepad file, save it as SF.bat and run it as Administrator.

    Code:
    sc create SF_AdminServer binPath= "C:\SF_ServerConfig\SpecialForce\AdminServer\SF_AdminServer.exe" DisplayName= "SF_AdminServer" start= demand
    sc create SF_CheckOverlapServer binPath=  "C:\SF_ServerConfig\SpecialForce\CheckoverlapServer\SF_CheckOverlapServer.exe"  DisplayName= "SF_CheckOverlapServer" start= demand
    sc create SF_ClanChatServer binPath=  "C:\SF_ServerConfig\SpecialForce\ClanchatServer\SF_ClanChatServer.exe"  DisplayName= "SF_ClanChatServer" start= demand
    sc create SF_GameServer binPath=  "C:\SF_ServerConfig\SpecialForce\GameServer\SF_GameServer.exe"  DisplayName= "SF_GameServer" start= demand
    sc create SF_LauncherServer binPath=  "C:\SF_ServerConfig\SpecialForce\LauncherServer\LauncherServer.exe"  DisplayName= "SF_LauncherServer" start= demand
    sc create SF_LoginServer binPath=  "C:\SF_ServerConfig\SpecialForce\LoginServer\SF_LoginServer.exe"  DisplayName= "SF_LoginServer" start= demand
    sc create SF_MessengerServer binPath=  "C:\SF_ServerConfig\SpecialForce\MessengerServer\SF_MessengerServer.exe"  DisplayName= "SF_MessengerServer" start= demand
    sc create SF_SessionServer binPath=  "C:\SF_ServerConfig\SpecialForce\SessionServer\SF_SessionServer.exe"  DisplayName= "SF_SessionServer" start= demand
    
    sc start SF_AdminServer
    sc start SF_CheckOverlapServer
    sc start SF_ClanChatServer
    sc start SF_GameServer
    sc start SF_LauncherServer
    sc start SF_LoginServer
    sc start SF_MessengerServer
    sc start SF_SessionServer
    If you want it to auto start on startup I think you change start= to auto
    I wasn't sure if DM_Server had to be installed as a service, but I did it anyway.

    Code:
    sc create DM_Server binPath=  "C:\DMSystem\DMServer\DM_Server.exe"  DisplayName= "DM_Server" start= demand
    sc start DM_Server
    Last edited by wesman2232; 11-05-15 at 01:21 AM.

  12. #177
    Enthusiast das11501 is offline
    MemberRank
    Oct 2012 Join Date
    LocalHostLocation
    26Posts

    Re: Soldier Front 1 Release

    help CloseMsg: Please Try Again... for game ver 20130717 and error picket

  13. #178
    Enthusiast davevanoerle is offline
    MemberRank
    May 2014 Join Date
    27Posts

    Re: Soldier Front 1 Release

    Quote Originally Posted by das11501 View Post
    help CloseMsg: Please Try Again... for game ver 20130717 and error picket
    Just like the rest.. I'm still waiting for a response from Khenchi XD...

  14. #179
    Enthusiast das11501 is offline
    MemberRank
    Oct 2012 Join Date
    LocalHostLocation
    26Posts

    Re: Soldier Front 1 Release

    I know of what game want update and ALPHA me wait update hahaha
    You need to use the latest game login game to parameter and user work

  15. #180
    Enthusiast supergoudvis is offline
    MemberRank
    Jan 2014 Join Date
    37Posts

    Re: Soldier Front 1 Release

    Still waiting for someone to fix the packet errors :$



Advertisement