Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Soldier Front 1 Server files

Newbie Spellweaver
Joined
Oct 1, 2012
Messages
25
Reaction score
0
Re: Soldier Front 1 Release

you add me to facebook



Maybe to help making it easier to understand:
Edit the file 'DMSystem\DMServer\DM_Server.ini' (notepad or npp).
In there search for 'AdminID-1 =' and 'AdminPW-1 ='. There already should be values after the '='. You can change them to whatever you want. Make sure you restart the DM Server after editing the ini file.

yes :lol: :lol::lol::lol::lol::lol::lol:
 
Newbie Spellweaver
Joined
Apr 5, 2014
Messages
5
Reaction score
0
Re: Soldier Front 1 Release

Maybe to help making it easier to understand:
Edit the file 'DMSystem\DMServer\DM_Server.ini' (notepad or npp).
In there search for 'AdminID-1 =' and 'AdminPW-1 ='. There already should be values after the '='. You can change them to whatever you want. Make sure you restart the DM Server after editing the ini file.
Sir Dont have DM_Server.ini on my file.
 
MentaL flexed harder!
Joined
Apr 26, 2014
Messages
75
Reaction score
27
Re: Soldier Front 1 Release

Maybe to help making it easier to understand:
Edit the file 'DMSystem\DMServer\DM_Server.ini' (notepad or npp).
In there search for 'AdminID-1 =' and 'AdminPW-1 ='. There already should be values after the '='. You can change them to whatever you want. Make sure you restart the DM Server after editing the ini file.
hey i already fix the side by side error and why i cant start all exe file
 
Banned
Banned
Joined
Apr 22, 2013
Messages
172
Reaction score
3
Re: Soldier Front 1 Release

even you fix everything you cant connect ingame
 
MentaL flexed harder!
Joined
Apr 26, 2014
Messages
75
Reaction score
27
Re: Soldier Front 1 Release

dude do you have an facebook acc?
 
Newbie Spellweaver
Joined
Apr 5, 2014
Messages
5
Reaction score
0
Re: Soldier Front 1 Release

help me .exe open file error side-by-side help me





i can edit you can make login vb.net to sf ?





i can edit you can make login vb.net to sf ?



chat me now me online now
what is you facebook link?
 
MentaL flexed harder!
Joined
Apr 26, 2014
Messages
75
Reaction score
27
Re: Soldier Front 1 Release

i already run the server but ineed accounts
 
Newbie Spellweaver
Joined
Jan 6, 2014
Messages
28
Reaction score
1
Re: Soldier Front 1 Release

i already run the server but ineed accounts




make a working registerform and let it generate some passwords, replace them with one you created and voila. You can login!
 
Newbie Spellweaver
Joined
Aug 22, 2012
Messages
18
Reaction score
4
Re: Soldier Front 1 Release



make a working registerform and let it generate some passwords, replace them with one you created and voila. You can login!

really need this.. but how can we make account manually on database.. dbo.account_login seems weird.
 
DRGunZ 2 Creator
Loyal Member
Joined
Jan 21, 2007
Messages
4,493
Reaction score
161
Re: Soldier Front 1 Release

Hmm. Going to bump this. Been watching it forever.
 
Newbie Spellweaver
Joined
May 23, 2014
Messages
27
Reaction score
2
Re: Soldier Front 1 Release

Hmm. Going to bump this. Been watching it forever.

Same here

Edit:
Did someone manage to come futher with fixing the server? I'm stuck at the 'Please try again' error, which most people are stuck, I think.

At the logs in '\Log\SpecialForce\USA\SF_SessionServerLog_FATAL' I can see this error;
Code:
[FATAL] [SYSTEM] [1] LoginServer(IP: 127.0.0.1) Packet(ID: 11) Error!!

It think the client is sending a packet which the server can't handle, maybe a wrong value or so, which is weird, since the client is updated to the latest patches that were included.

Shall I make a thread with all the info we have in the help section? We need to figure this out :p
 
Last edited:
Newbie Spellweaver
Joined
Mar 10, 2014
Messages
97
Reaction score
12
Re: Soldier Front 1 Release

well Showing us a 100% is telling us that you gonna keep it as a secret?.:/:



well Showing us a 100% is telling us that you gonna keep it as a secret?.:/:
 
Newbie Spellweaver
Joined
May 23, 2014
Messages
27
Reaction score
2
Re: Soldier Front 1 Release

Server Files = 100% done
Client Files = 35% done
Register File = 70% done

Did you manage to fix the 'Please try again' error?

Also, for creating an account use this sql query:
Code:
INSERT INTO [age_account].[dbo].[accounts]
           ([uid]
           ,[name]
           ,[pass]
           ,[created]
           ,[updated])
     VALUES
           ([I]userid[/I]
           ,'[I]username[/I]'
           ,'[I]hashedpass[/I]'
           ,'[I]creationtime[/I]'
           ,NULL)
GO

Example:
Code:
INSERT INTO [age_account].[dbo].[accounts]
           ([uid]
           ,[name]
           ,[pass]
           ,[created]
           ,[updated])
     VALUES
           (50000
           ,'testerdave1337'
           ,'$2a$10$6a64a60418f63acd895aeuC0MVfsH0TwA3CFSPFESLtWX.Znz76Ha'
           ,'2015-04-12 16:18:49.540'
           ,NULL)
GO

user: testerdave1337
pass: test

Use this to hash the password:
Credits for supergoudvis for the great find.
 
Back
Top