FelixBeta Posted August 22, 2023 Share Posted August 22, 2023 Those are default server and client files, suitable for learning RF Online game. As any retail file, it has some imperfections that you can adjust or change. From my side, I would recommend you to use Microsoft SQL Server 2014 (Please, don't use old stuff like 2008 that will cause you issues eventually). You can use later versions, but they have external Management tools, which are slow. Don't restore .bak files if you don't know their origin, always try to use database creation scripts from RF_User and RF_World folders, one by one. Server: https://www.mediafire.com/file/e19rrbx4gqvq01e/Default_2232_Server.7z/file RF_User creation sql script (Ready to use) https://www.mediafire.com/file/niatallpdbxjr1i/RF_User_clean_sql2014.sql/file RF_World creation sql script (Ready to use) https://www.mediafire.com/file/ja5t5kgiazs44oz/RF_World_clean_sql2014.sql/file BILLING creation sql script (Ready to use) https://www.mediafire.com/file/eb1p45ao5dzo4za/BILLING_clean_sql2014.sql/file Client: https://www.mediafire.com/file/2hxg0gzvlh9gdvn/Default_2232_Client.7z/file Small developer launcher: https://www.mediafire.com/file/7ag1pk4md503sbu/DevLauncher.7z/file Default R3Engine.ini for english client language: R3Engine.ini [Path] MapPath=.\Map\ SystemPath=.\System\ EntityPath=.\Map\Entity\ ScreenShotsPath=.\ScreenShots\ [RenderState] ScreenXSize=1600 ScreenYSize=900 bFullScreen=FALSE RenderBits=32 ZbufferBits=24 bStartCamera=FALSE Gamma=1.0 TextureDetail=3 DynamicLight=1 ShadowDetail=3 SeeDistance=6 bMouseAccelation=FALSE bDetailTexture=TRUE BboShasi=0 [Sound] Sound=TRUE Music=TRUE SoundVol=0.0 MusicVol=0.0 AmbVol=0.0 [Setup] ;;Language=Russia Language=Europe [Etc] AviPlayCodec=FALSE DayLightIgnore=0 [Launcher] LauncherVersion=1 [Use] ScaleformUI = TRUE You can create simple .bat file to register your db ODBC. Feel free to change SQL connection provider, names or other data. Start your server As Administrator. ODBC.bat code: @echo off set bil=BILLING set acc=RF_User set wld=RF_World %WINDIR%\System32\odbcconf.exe CONFIGDSN "SQL Server" "DSN=%bil%|Description=|SERVER=(local)|Trusted_Connection=Yes|Database=%bil%" %WINDIR%\System32\odbcconf.exe CONFIGDSN "SQL Server" "DSN=%acc%|Description=|SERVER=(local)|Trusted_Connection=Yes|Database=%acc%" %WINDIR%\System32\odbcconf.exe CONFIGDSN "SQL Server" "DSN=%wld%|Description=|SERVER=(local)|Trusted_Connection=Yes|Database=%wld%" Quote Link to comment Share on other sites More sharing options...
Reza Posted August 22, 2023 Share Posted August 22, 2023 nice Quote Link to comment Share on other sites More sharing options...
Rayan Posted August 28, 2023 Share Posted August 28, 2023 Thank you very much ! this helps a lot Quote Link to comment Share on other sites More sharing options...
jojo2739 Posted October 21, 2023 Share Posted October 21, 2023 RF_World has inconsistent line endings. Will not execute in SQL properly. How do I repair this issue? Quote Link to comment Share on other sites More sharing options...
FelixBeta Posted October 21, 2023 Author Share Posted October 21, 2023 6 minutes ago, jojo2739 said: RF_World has inconsistent line endings. Will not execute in SQL properly. How do I repair this issue? Works perfectly as long as you use it on SQL 2014 or newer (2014 recommended). Older version may have issues Quote Link to comment Share on other sites More sharing options...
jojo2739 Posted October 21, 2023 Share Posted October 21, 2023 I have SQL2014 specifically because I found the information on rfdev. Quote Link to comment Share on other sites More sharing options...
jojo2739 Posted October 21, 2023 Share Posted October 21, 2023 Moving on from that issue, when launching Zoneserver, I get a [ CashDbWorker::Instance()->Initialize() Fail! ] error. Can you offer any insight on this? Quote Link to comment Share on other sites More sharing options...
jojo2739 Posted October 21, 2023 Share Posted October 21, 2023 Just now, jojo2739 said: Moving on from that issue, when launching Zoneserver, I get a [ CashDbWorker::Instance()->Initialize() Fail! ] error. Can you offer any insight on this? Followed by CGameServerView::OnCreate(...) : g_Main.Init() Fail! and Failed To Create Empty Document errors Quote Link to comment Share on other sites More sharing options...
FelixBeta Posted October 21, 2023 Author Share Posted October 21, 2023 1 hour ago, jojo2739 said: Moving on from that issue, when launching Zoneserver, I get a [ CashDbWorker::Instance()->Initialize() Fail! ] error. Can you offer any insight on this? Consider following video guide Run apps as admin Quote Link to comment Share on other sites More sharing options...
DeltaTwoZero Posted October 26, 2023 Share Posted October 26, 2023 On 8/23/2023 at 2:09 AM, FelixBeta said: Microsoft SQL Server 2014 Hi, i followed you video tutorial and setup the server but everytime i try to login it keeps saying wrong login Quote Link to comment Share on other sites More sharing options...
FelixBeta Posted October 26, 2023 Author Share Posted October 26, 2023 14 minutes ago, DeltaTwoZero said: Hi, i followed you video tutorial and setup the server but everytime i try to login it keeps saying wrong login Login where and login how? Quote Link to comment Share on other sites More sharing options...
DeltaTwoZero Posted October 26, 2023 Share Posted October 26, 2023 (edited) When i use the minilauncher it always says wrong login even if i typed the right login details i entered in pInsert_Staff Edited October 26, 2023 by DeltaTwoZero Quote Link to comment Share on other sites More sharing options...
FelixBeta Posted October 26, 2023 Author Share Posted October 26, 2023 1 hour ago, DeltaTwoZero said: When i use the minilauncher it always says wrong login even if i typed the right login details i entered in pInsert_Staff Are you using login with ! prefix? Like !test Quote Link to comment Share on other sites More sharing options...
DeltaTwoZero Posted October 26, 2023 Share Posted October 26, 2023 21 minutes ago, FelixBeta said: Are you using login with ! prefix? Like !test No, I these are the username and password I tested myoko/myoko, test/test, asd/asd Somehow I managed to get rid of the wrong login by adding this USE [RF_USER] ALTER TABLE tbl_rfaccount ADD email varchar(255) Null which i got from a different site and making an account using this table, after i enter the username: test and password: test it doesn't give out any error and it also doesn't launch the game, tried looking at what it's doing in the SQL profiler but i have no idea what i'm looking at lol Quote Link to comment Share on other sites More sharing options...
FelixBeta Posted October 26, 2023 Author Share Posted October 26, 2023 Well you were talking about GM account, because you mentioned pInsert_Staff procedure. To login gm account you need add ! before login. As for normal account, you would need add BILLING entry of that account Quote Link to comment Share on other sites More sharing options...
DeltaTwoZero Posted October 26, 2023 Share Posted October 26, 2023 23 minutes ago, FelixBeta said: Well you were talking about GM account, because you mentioned pInsert_Staff procedure. To login gm account you need add ! before login. As for normal account, you would need add BILLING entry of that account Thanks so much i didn't see you had ! on the video lol Quote Link to comment Share on other sites More sharing options...
kevin Posted October 31, 2023 Share Posted October 31, 2023 On 2023/8/22 at PM7点09分, FelixBeta said: 这些是默认的服务器和客户端文件,适合学习 RF Online 游戏。与任何零售文件一样,它也有一些缺陷,您可以调整或更改。从我的角度来看,我建议您使用 Microsoft SQL Server 2014(请不要使用像 2008 这样的旧版本,这最终会给您带来问题)。您可以使用更高版本,但它们有外部管理工具,速度很慢。 如果您不知道 .bak 文件的来源,请不要恢复它们,始终尝试一一使用 RF_User 和 RF_World 文件夹中的数据库创建脚本。 服务器: https://www.mediafire.com/file/e19rrbx4gqvq01e/Default_2232_Server.7z/file RF_User 创建 sql 脚本(即可使用) https://www.mediafire.com/file/niatallpdbxjr1i/RF_User_clean_sql2014.sql/file RF_World 创建 sql 脚本(即可使用) https://www.mediafire.com/file/ja5t5kgiazs44oz/RF_World_clean_sql2014.sql/file BILLING 创建 sql 脚本(即可使用) https://www.mediafire.com/file/eb1p45ao5dzo4za/BILLING_clean_sql2014.sql/file 客户: https://www.mediafire.com/file/2hxg0gzvlh9gdvn/Default_2232_Client.7z/file 小型开发者启动器: https://www.mediafire.com/file/7ag1pk4md503sbu/DevLauncher.7z/file 英语客户端语言的默认 R3Engine.ini: R3Engine.ini [RenderState] ScreenXSize=1600 ScreenYSize=900 bFullScreen=FALSE RenderBits=32 ZbufferBits=24 bStartCamera=FALSE Gamma=1.0 TextureDetail=3 DynamicLight=1 ShadowDetail=3 SeeDistance=6 bMouseAccelation=FALSE bDetailTexture=TRUE BboShasi=0 [Sound] Sound=TRUE Music=TRUE SoundVol=0.0 MusicVol=0.0 AmbVol=0.0 [Setup] ;;Language=Russia Language=Europe [Etc] AviPlayCodec=FALSE DayLightIgnore=0 [Launcher] LauncherVersion=1 [Use] ScaleformUI = TRUE 您可以创建简单的 .bat 文件来注册您的数据库 ODBC。请随意更改 SQL 连接提供程序、名称或其他数据。 以管理员身份启动服务器。 Hello, can you send a copy of the source code of the small launcher? Quote Link to comment Share on other sites More sharing options...
FelixBeta Posted October 31, 2023 Author Share Posted October 31, 2023 17 minutes ago, kevin said: Hello, can you send a copy of the source code of the small launcher? Don't have Quote Link to comment Share on other sites More sharing options...
kevin Posted November 13, 2023 Share Posted November 13, 2023 The server is running normally, but the small login tool does not respond after waiting for a long time after entering the user and password and clicking Enter. What is the problem? Quote Link to comment Share on other sites More sharing options...
SkNzinho Posted November 24, 2023 Share Posted November 24, 2023 GM Commands %* and %show me the dalant not work? Quote Link to comment Share on other sites More sharing options...
FelixBeta Posted November 25, 2023 Author Share Posted November 25, 2023 15 hours ago, SkNzinho said: GM Commands %* and %show me the dalant not work? For that you would need hex zone with specific offsets or you some kind of game guard Quote Link to comment Share on other sites More sharing options...
SkNzinho Posted November 25, 2023 Share Posted November 25, 2023 9 hours ago, FelixBeta said: For that you would need hex zone with specific offsets or you some kind of game guard Tks Felix, Yorozuya GU fix this. Quote Link to comment Share on other sites More sharing options...
k1x Posted December 17, 2023 Share Posted December 17, 2023 Hello 7:37 in eur youtube video. use odbc.bat, where him take???? Quote Link to comment Share on other sites More sharing options...
FelixBeta Posted December 17, 2023 Author Share Posted December 17, 2023 17 hours ago, k1x said: Hello 7:37 in eur youtube video. use odbc.bat, where him take???? It's in first post o_o Quote Link to comment Share on other sites More sharing options...
AleDuke Posted December 22, 2023 Share Posted December 22, 2023 On 10/26/2023 at 3:15 PM, DeltaTwoZero said: No, I these are the username and password I tested myoko/myoko, test/test, asd/asd Somehow I managed to get rid of the wrong login by adding this USE [RF_USER] ALTER TABLE tbl_rfaccount ADD email varchar(255) Null which i got from a different site and making an account using this table, after i enter the username: test and password: test it doesn't give out any error and it also doesn't launch the game, tried looking at what it's doing in the SQL profiler but i have no idea what i'm looking at lol But where did you add that login, i cant enter in any way, i get the message server maintenance and other times incorrect password or id Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.