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!

[SHARE] New Game Launcher (Customizable) v1.0.0

Junior Spellweaver
Joined
Apr 23, 2006
Messages
115
Reaction score
9
Hi guys!

I just want to share my application made in C#.
A good looking launcher that will suits your needs :)

lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums

lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


INSTRUCTIONS
First: Download File

Overwrite this file to your old one. Thank to sexual123 for this report.
Fixed:
Always load Game.exe (can now load base on your configuration).

Second: Understanding the archive contents
Understanding the files - extract all the files.. you will see Launcher and Web Content for Launcher folder inside this archive.

Third: Whats inside
Inside the Launcher Folder, theres a Textures where you can put your own PNG Background. just do not rename all the files inside that folder. Just overwrite it with the new one.

dfsecLib.dll - stands for Data File Security Library.. its a class library use to secure your configured launcher.cfg.

iconflib.dll - stands for INI config library.. its a class library use to read write ini files.

lconfig.cfg - used by launcher for version comparison.

launcher.cfg - Configuration file used by Launcher.exe

Fourth: launcher.cfg Instructions
Code:
[CONFIG]
TITLE=Ran Online [COLOR="#FF0000"][I]This is where the title of the launcher will set[/I][/COLOR]
WEBSITE=http://ExampleRanOnlineWebsite.com/ [COLOR="#FF0000"][I]Put your main website here including the / character at the end[/I][/COLOR]
CSS=http://ExampleRanOnlineWebsite.com/_news/style.css [COLOR="#FF0000"][I]Link to your css style[/I][/COLOR]
NEWS=http://ExampleRanOnlineWebsite.com/_news/index.php [COLOR="#FF0000"][I]URL of your news index.php[/I][/COLOR]
PATCH_URL=http://ExampleRanOnlineWebsite.com/_patch/ [COLOR="#FF0000"][I]URL for your website patch folder[/I][/COLOR]
VER_URL=http://ExampleRanOnlineWebsite.com/_version/nver.xml [COLOR="#FF0000"][I]URL for your new version[/I][/COLOR]
SOCKET_URL=_socket/ [COLOR="#FF0000"][I]URL to your socket server use to indicate if the servers are online or offline[/I][/COLOR]
APP_EXE=Game.exe [COLOR="#FF0000"][I]Your client's .exe filename here[/I][/COLOR]
APP_ARG=/app_run [COLOR="#FF0000"][I]Your client's .exe Arguments leave blank if don't have to use arguments [/I][/COLOR]
COPYRIGHT=Copyright © 2016 - Ran Online. All Rights Reserved. [COLOR="#FF0000"][I]Put your own copyright message here.[/I][/COLOR]
[SECURITY]
ADMINID=admin [COLOR="#FF0000"][I]This will use as your admin username to Decrypt your configuration[/I][/COLOR]
ADMINPASS=admin [COLOR="#FF0000"][I]This use as your admin password to Decrypt your configuration[/I][/COLOR]
HASHCONFIG=false [COLOR="#FF0000"][I](Defualt - false) If false, Text is Decrypted but IF TRUE... All text inside launcher.cfg will be Encrypted and will ask for admin USER AND PASS if you turned it back to false FROM true value.[/I][/COLOR]
PASSHASH=D3F4ULTP4$$H45H [COLOR="#FF0000"][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]
SALTKEY=S4LT&K3Y [COLOR="#FF0000"][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]
ALGOKEY=@1B2c3D4e5F6g7H8 [COLOR="#FF0000"][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]

[B]Fifth: Your Web Content for your Launcher[/B]
Put all the file of your [B]Web Content for Launcher[/B] to your website. And set the URL to your launcher.cfg.

[B]Sixth: Socket[/B]
This is your Online Offline server indicator. 
Inside your _socket folder.. edit the index.php and search the line
[B]$serverIP = '192.168.0.100';[/B] Change the local ip of your ran server.

In the Line
[CODE]
        if ($_GET['check'] == 'session'):
	
		// Set the Session Server's Port
		$serverPort = [COLOR="#FF0000"]4001[/COLOR];
		
	endif;

	if ($_GET['check'] == 'field'):
	
		// Set the Field Server's Port
		$serverPort = [COLOR="#FF0000"]4002[/COLOR];
		
	endif;
	
	if ($_GET['check'] == 'login'):
	
		// Set the Login Server's Port
		$serverPort = [COLOR="#FF0000"]4003[/COLOR];
		
	endif;
	
	if ($_GET['check'] == 'agent'):
	
		// Set the Agent Server's Port
		$serverPort = [COLOR="#FF0000"]4004[/COLOR];
		
	endif;
Change the Port according to your Server Setup

Seventh: Patch List
under the _patch folder.. Put a list of file name (patch file).. Note: do not include .exe only the filename.

For Example: You have patch001.exe, patch002.exe, patch_3.exe must be made with WinRaR.
The patchList.txt will have this list:
patch001
patch002
patch_3

Eight: Version Comparison with nver.xml and lconfig.xml
Version of nver.xml must be greater than the version of lconfig.xml.
The Patch will start if the nver.xml is higher than lconfig.xml version.
Will Enable the Start Game button if the version of nver.xml and lconfig.xml are the same.

For Example:
nver.xml - 1.0.20 | lconfig.xml - 1.0.19 New patch
nver.xml - 1.0.20 | lconfig.xml - 1.0.20 No Patch - can start the game

LAST PART: How to make SFX on WinRAR?!
Please follow the instructions from the images below.

STEP 1
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 2
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 3
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 4
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 5
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 6
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


I hope my works will help you on your projects or lets say your future projects :)
Good Luck Guys! More Power!

Next Project to Share - Website CP (3rd Screenshot)

lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Experienced Elementalist
Joined
Jul 28, 2015
Messages
205
Reaction score
40
Hi guys!

I just want to share my application made in C#.
A good looking launcher that will suits your needs :)

See ScreenShots in Attachments

INSTRUCTIONS
First: Download File


Second: Understanding the archive contents
Understanding the files - extract all the files.. you will see Launcher and Web Content for Launcher folder inside this archive.

Third: Whats inside
Inside the Launcher Folder, theres a Textures where you can put your own PNG Background. just do not rename all the files inside that folder. Just overwrite it with the new one.

dfsecLib.dll - stands for Data File Security Library.. its a class library use to secure your configured launcher.cfg.

iconflib.dll - stands for INI config library.. its a class library use to read write ini files.

lconfig.cfg - used by launcher for version comparison.

launcher.cfg - Configuration file used by Launcher.exe

Fourth: launcher.cfg Instructions
Code:
[CONFIG]
TITLE=Ran Online [COLOR=#FF0000][I]This is where the title of the launcher will set[/I][/COLOR]
WEBSITE=http://ExampleRanOnlineWebsite.com/ [COLOR=#FF0000][I]Put your main website here including the / character at the end[/I][/COLOR]
CSS=http://ExampleRanOnlineWebsite.com/_news/style.css [COLOR=#FF0000][I]Link to your css style[/I][/COLOR]
NEWS=http://ExampleRanOnlineWebsite.com/_news/index.php [COLOR=#FF0000][I]URL of your news index.php[/I][/COLOR]
PATCH_URL=http://ExampleRanOnlineWebsite.com/_patch/ [COLOR=#FF0000][I]URL for your website patch folder[/I][/COLOR]
VER_URL=http://ExampleRanOnlineWebsite.com/_version/nver.xml [COLOR=#FF0000][I]URL for your new version[/I][/COLOR]
SOCKET_URL=_socket/ [COLOR=#FF0000][I]URL to your socket server use to indicate if the servers are online or offline[/I][/COLOR]
APP_EXE=Game.exe [COLOR=#FF0000][I]Your client's .exe filename here[/I][/COLOR]
APP_ARG=/app_run [COLOR=#FF0000][I]Your client's .exe Arguments leave blank if don't have to use arguments [/I][/COLOR]
COPYRIGHT=Copyright © 2016 - Ran Online. All Rights Reserved. [COLOR=#FF0000][I]Put your own copyright message here.[/I][/COLOR]
[SECURITY]
ADMINID=admin [COLOR=#FF0000][I]This will use as your admin username to Decrypt your configuration[/I][/COLOR]
ADMINPASS=admin [COLOR=#FF0000][I]This use as your admin password to Decrypt your configuration[/I][/COLOR]
HASHCONFIG=false [COLOR=#FF0000][I](Defualt - false) If false, Text is Decrypted but IF TRUE... All text inside launcher.cfg will be Encrypted and will ask for admin USER AND PASS if your turned it back to false FROM true value.[/I][/COLOR]
PASSHASH=D3F4ULTP4$$H45H [COLOR=#FF0000][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]
SALTKEY=S4LT&K3Y [COLOR=#FF0000][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]
ALGOKEY=@1B2c3D4e5F6g7H8 [COLOR=#FF0000][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]

[B]Fifth: Your Web Content for your Launcher[/B]
Put all the file of your [B]Web Content for Launcher[/B] to your website. And set the URL to your launcher.cfg.

[B]Sixth: Socket[/B]
This is your Online Offline server indicator. 
Inside your _socket folder.. edit the index.php and search the line
[B]$serverIP = '192.168.0.100';[/B] Change the local ip of your web server.

In the Line
[CODE]
        if ($_GET['check'] == 'session'):
    
        // Set the Session Server's Port
        $serverPort = [COLOR=#FF0000]4001[/COLOR];
        
    endif;

    if ($_GET['check'] == 'field'):
    
        // Set the Field Server's Port
        $serverPort = [COLOR=#FF0000]4002[/COLOR];
        
    endif;
    
    if ($_GET['check'] == 'login'):
    
        // Set the Login Server's Port
        $serverPort = [COLOR=#FF0000]4003[/COLOR];
        
    endif;
    
    if ($_GET['check'] == 'agent'):
    
        // Set the Agent Server's Port
        $serverPort = [COLOR=#FF0000]4004[/COLOR];
        
    endif;
Change the Port according to your Server Setup

Seventh: Patch List
under the _patch folder.. Put a list of file name (patch file).. Note: do not include .exe only the filename.

For Example: You have patch001.exe, patch002.exe, patch_3.exe must be made with WinRaR.
The patchList.txt will have this list:
patch001
patch002
patch_3

Eight: Version Comparison with nver.xml and lconfig.xml
Version of nver.xml must be greater than the version of lconfig.xml.
The Patch will start if the nver.xml is higher than lconfig.xml version.
Will Enable the Start Game button if the version of nver.xml and lconfig.xml are the same.

For Example:
nver.xml - 1.0.20 | lconfig.xml - 1.0.19 New patch
nver.xml - 1.0.20 | lconfig.xml - 1.0.20 No Patch - can start the game

Next Project to Share - Website CP (3rd Screenshot)


wow nice release thank you.
 
Newbie Spellweaver
Joined
Nov 15, 2016
Messages
48
Reaction score
1
Hi guys!

I just want to share my application made in C#.
A good looking launcher that will suits your needs :)

lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums

lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


INSTRUCTIONS
First: Download File


Second: Understanding the archive contents
Understanding the files - extract all the files.. you will see Launcher and Web Content for Launcher folder inside this archive.

Third: Whats inside
Inside the Launcher Folder, theres a Textures where you can put your own PNG Background. just do not rename all the files inside that folder. Just overwrite it with the new one.

dfsecLib.dll - stands for Data File Security Library.. its a class library use to secure your configured launcher.cfg.

iconflib.dll - stands for INI config library.. its a class library use to read write ini files.

lconfig.cfg - used by launcher for version comparison.

launcher.cfg - Configuration file used by Launcher.exe

Fourth: launcher.cfg Instructions
Code:
[CONFIG]
TITLE=Ran Online [COLOR=#FF0000][I]This is where the title of the launcher will set[/I][/COLOR]
WEBSITE=http://ExampleRanOnlineWebsite.com/ [COLOR=#FF0000][I]Put your main website here including the / character at the end[/I][/COLOR]
CSS=http://ExampleRanOnlineWebsite.com/_news/style.css [COLOR=#FF0000][I]Link to your css style[/I][/COLOR]
NEWS=http://ExampleRanOnlineWebsite.com/_news/index.php [COLOR=#FF0000][I]URL of your news index.php[/I][/COLOR]
PATCH_URL=http://ExampleRanOnlineWebsite.com/_patch/ [COLOR=#FF0000][I]URL for your website patch folder[/I][/COLOR]
VER_URL=http://ExampleRanOnlineWebsite.com/_version/nver.xml [COLOR=#FF0000][I]URL for your new version[/I][/COLOR]
SOCKET_URL=_socket/ [COLOR=#FF0000][I]URL to your socket server use to indicate if the servers are online or offline[/I][/COLOR]
APP_EXE=Game.exe [COLOR=#FF0000][I]Your client's .exe filename here[/I][/COLOR]
APP_ARG=/app_run [COLOR=#FF0000][I]Your client's .exe Arguments leave blank if don't have to use arguments [/I][/COLOR]
COPYRIGHT=Copyright © 2016 - Ran Online. All Rights Reserved. [COLOR=#FF0000][I]Put your own copyright message here.[/I][/COLOR]
[SECURITY]
ADMINID=admin [COLOR=#FF0000][I]This will use as your admin username to Decrypt your configuration[/I][/COLOR]
ADMINPASS=admin [COLOR=#FF0000][I]This use as your admin password to Decrypt your configuration[/I][/COLOR]
HASHCONFIG=false [COLOR=#FF0000][I](Defualt - false) If false, Text is Decrypted but IF TRUE... All text inside launcher.cfg will be Encrypted and will ask for admin USER AND PASS if you turned it back to false FROM true value.[/I][/COLOR]
PASSHASH=D3F4ULTP4$$H45H [COLOR=#FF0000][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]
SALTKEY=S4LT&K3Y [COLOR=#FF0000][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]
ALGOKEY=@1B2c3D4e5F6g7H8 [COLOR=#FF0000][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]

[B]Fifth: Your Web Content for your Launcher[/B]
Put all the file of your [B]Web Content for Launcher[/B] to your website. And set the URL to your launcher.cfg.

[B]Sixth: Socket[/B]
This is your Online Offline server indicator. 
Inside your _socket folder.. edit the index.php and search the line
[B]$serverIP = '192.168.0.100';[/B] Change the local ip of your ran server.

In the Line
[CODE]
        if ($_GET['check'] == 'session'):
    
        // Set the Session Server's Port
        $serverPort = [COLOR=#FF0000]4001[/COLOR];
        
    endif;

    if ($_GET['check'] == 'field'):
    
        // Set the Field Server's Port
        $serverPort = [COLOR=#FF0000]4002[/COLOR];
        
    endif;
    
    if ($_GET['check'] == 'login'):
    
        // Set the Login Server's Port
        $serverPort = [COLOR=#FF0000]4003[/COLOR];
        
    endif;
    
    if ($_GET['check'] == 'agent'):
    
        // Set the Agent Server's Port
        $serverPort = [COLOR=#FF0000]4004[/COLOR];
        
    endif;
Change the Port according to your Server Setup

Seventh: Patch List
under the _patch folder.. Put a list of file name (patch file).. Note: do not include .exe only the filename.

For Example: You have patch001.exe, patch002.exe, patch_3.exe must be made with WinRaR.
The patchList.txt will have this list:
patch001
patch002
patch_3

Eight: Version Comparison with nver.xml and lconfig.xml
Version of nver.xml must be greater than the version of lconfig.xml.
The Patch will start if the nver.xml is higher than lconfig.xml version.
Will Enable the Start Game button if the version of nver.xml and lconfig.xml are the same.

For Example:
nver.xml - 1.0.20 | lconfig.xml - 1.0.19 New patch
nver.xml - 1.0.20 | lconfig.xml - 1.0.20 No Patch - can start the game

LAST PART: How to make SFX on WinRAR?!
Please follow the instructions from the images below.

STEP 1
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 2
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 3
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 4
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 5
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 6
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


I hope my works will help you on your projects or lets say your future projects :)
Good Luck Guys! More Power!

Next Project to Share - Website CP (3rd Screenshot)

lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums

Thanks so much for this wonderful share :)
More power ^_^
 
Skilled Illusionist
Joined
Dec 29, 2009
Messages
351
Reaction score
25
Thanks man! Do you have any private account or social media? i would like to talk to you in private. :)
 
Experienced Elementalist
Joined
Aug 19, 2011
Messages
219
Reaction score
17
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums




how about this sir ? he always find game.exe but im using miniA.exe i change it in config game.exe to miniA.exe


BUT THANK FOR THIS SIR NICE RELEASE
 
Last edited:
Newbie Spellweaver
Joined
Jul 5, 2017
Messages
54
Reaction score
1
Hi guys!

I just want to share my application made in C#.
A good looking launcher that will suits your needs :)

lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums

lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


INSTRUCTIONS
First: Download File

Overwrite this file to your old one. Thank to sexual123 for this report.
Fixed:
Always load Game.exe (can now load base on your configuration).

Second: Understanding the archive contents
Understanding the files - extract all the files.. you will see Launcher and Web Content for Launcher folder inside this archive.

Third: Whats inside
Inside the Launcher Folder, theres a Textures where you can put your own PNG Background. just do not rename all the files inside that folder. Just overwrite it with the new one.

dfsecLib.dll - stands for Data File Security Library.. its a class library use to secure your configured launcher.cfg.

iconflib.dll - stands for INI config library.. its a class library use to read write ini files.

lconfig.cfg - used by launcher for version comparison.

launcher.cfg - Configuration file used by Launcher.exe

Fourth: launcher.cfg Instructions
Code:
[CONFIG]
TITLE=Ran Online [COLOR=#FF0000][I]This is where the title of the launcher will set[/I][/COLOR]
WEBSITE=http://ExampleRanOnlineWebsite.com/ [COLOR=#FF0000][I]Put your main website here including the / character at the end[/I][/COLOR]
CSS=http://ExampleRanOnlineWebsite.com/_news/style.css [COLOR=#FF0000][I]Link to your css style[/I][/COLOR]
NEWS=http://ExampleRanOnlineWebsite.com/_news/index.php [COLOR=#FF0000][I]URL of your news index.php[/I][/COLOR]
PATCH_URL=http://ExampleRanOnlineWebsite.com/_patch/ [COLOR=#FF0000][I]URL for your website patch folder[/I][/COLOR]
VER_URL=http://ExampleRanOnlineWebsite.com/_version/nver.xml [COLOR=#FF0000][I]URL for your new version[/I][/COLOR]
SOCKET_URL=_socket/ [COLOR=#FF0000][I]URL to your socket server use to indicate if the servers are online or offline[/I][/COLOR]
APP_EXE=Game.exe [COLOR=#FF0000][I]Your client's .exe filename here[/I][/COLOR]
APP_ARG=/app_run [COLOR=#FF0000][I]Your client's .exe Arguments leave blank if don't have to use arguments [/I][/COLOR]
COPYRIGHT=Copyright © 2016 - Ran Online. All Rights Reserved. [COLOR=#FF0000][I]Put your own copyright message here.[/I][/COLOR]
[SECURITY]
ADMINID=admin [COLOR=#FF0000][I]This will use as your admin username to Decrypt your configuration[/I][/COLOR]
ADMINPASS=admin [COLOR=#FF0000][I]This use as your admin password to Decrypt your configuration[/I][/COLOR]
HASHCONFIG=false [COLOR=#FF0000][I](Defualt - false) If false, Text is Decrypted but IF TRUE... All text inside launcher.cfg will be Encrypted and will ask for admin USER AND PASS if you turned it back to false FROM true value.[/I][/COLOR]
PASSHASH=D3F4ULTP4$$H45H [COLOR=#FF0000][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]
SALTKEY=S4LT&K3Y [COLOR=#FF0000][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]
ALGOKEY=@1B2c3D4e5F6g7H8 [COLOR=#FF0000][I]Optional - Use for encrypting and decrypting... you can change it if you want[/I][/COLOR]

[B]Fifth: Your Web Content for your Launcher[/B]
Put all the file of your [B]Web Content for Launcher[/B] to your website. And set the URL to your launcher.cfg.

[B]Sixth: Socket[/B]
This is your Online Offline server indicator. 
Inside your _socket folder.. edit the index.php and search the line
[B]$serverIP = '192.168.0.100';[/B] Change the local ip of your ran server.

In the Line
[CODE]
        if ($_GET['check'] == 'session'):
    
        // Set the Session Server's Port
        $serverPort = [COLOR=#FF0000]4001[/COLOR];
        
    endif;

    if ($_GET['check'] == 'field'):
    
        // Set the Field Server's Port
        $serverPort = [COLOR=#FF0000]4002[/COLOR];
        
    endif;
    
    if ($_GET['check'] == 'login'):
    
        // Set the Login Server's Port
        $serverPort = [COLOR=#FF0000]4003[/COLOR];
        
    endif;
    
    if ($_GET['check'] == 'agent'):
    
        // Set the Agent Server's Port
        $serverPort = [COLOR=#FF0000]4004[/COLOR];
        
    endif;
Change the Port according to your Server Setup

Seventh: Patch List
under the _patch folder.. Put a list of file name (patch file).. Note: do not include .exe only the filename.

For Example: You have patch001.exe, patch002.exe, patch_3.exe must be made with WinRaR.
The patchList.txt will have this list:
patch001
patch002
patch_3

Eight: Version Comparison with nver.xml and lconfig.xml
Version of nver.xml must be greater than the version of lconfig.xml.
The Patch will start if the nver.xml is higher than lconfig.xml version.
Will Enable the Start Game button if the version of nver.xml and lconfig.xml are the same.

For Example:
nver.xml - 1.0.20 | lconfig.xml - 1.0.19 New patch
nver.xml - 1.0.20 | lconfig.xml - 1.0.20 No Patch - can start the game

LAST PART: How to make SFX on WinRAR?!
Please follow the instructions from the images below.

STEP 1
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 2
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 3
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 4
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 5
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


STEP 6
lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums


I hope my works will help you on your projects or lets say your future projects :)
Good Luck Guys! More Power!

Next Project to Share - Website CP (3rd Screenshot)

lucian0127 - [SHARE] New Game Launcher (Customizable) v1.0.0 - RaGEZONE Forums

GUD day There's an update about sa CP?
 
Back
Top