Compare commits

...

7 Commits

Author SHA1 Message Date
Bitl b8a3b0a520
Fixed readme more 2020-09-26 10:47:06 -07:00
Bitl dd8fdd24ab
Update README.md 2020-09-26 10:46:38 -07:00
Bitl 828d4431e8
Create LICENSE 2020-09-26 10:44:08 -07:00
Bitl 8ed9ad9273 v1.1.2 2016-10-09 16:12:51 -07:00
Bitl 3c8fa75978 Updated README 2016-10-09 00:41:54 -07:00
Bitl c25a2d3d14 Merge remote-tracking branch 'origin/master'
# Conflicts:
#	README.TXT
2016-10-09 00:39:54 -07:00
Bitl 35718f8b34 v1.1.1 2016-10-09 00:38:33 -07:00
17 changed files with 159 additions and 133 deletions

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2020 Bitl
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -50,6 +50,8 @@ namespace RBXLegacyLauncher
this.label1 = new System.Windows.Forms.Label();
this.listBox1 = new System.Windows.Forms.ListBox();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
@ -90,6 +92,7 @@ namespace RBXLegacyLauncher
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(398, 252);
this.tabControl1.TabIndex = 1;
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
//
// tabPage1
//
@ -105,7 +108,6 @@ namespace RBXLegacyLauncher
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "JOIN SERVER";
this.tabPage1.UseVisualStyleBackColor = true;
this.tabPage1.Enter += new System.EventHandler(this.tabPage1_Enter);
//
// label4
//
@ -168,8 +170,6 @@ namespace RBXLegacyLauncher
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "START SERVER";
this.tabPage2.UseVisualStyleBackColor = true;
this.tabPage2.Enter += new System.EventHandler(this.tabPage2_Enter);
this.tabPage2.Leave += new System.EventHandler(this.tabPage2_Leave);
//
// label2
//
@ -220,6 +220,8 @@ namespace RBXLegacyLauncher
//
// tabPage4
//
this.tabPage4.Controls.Add(this.label11);
this.tabPage4.Controls.Add(this.label10);
this.tabPage4.Controls.Add(this.label9);
this.tabPage4.Controls.Add(this.label8);
this.tabPage4.Controls.Add(this.label7);
@ -233,6 +235,24 @@ namespace RBXLegacyLauncher
this.tabPage4.Text = "ABOUT";
this.tabPage4.UseVisualStyleBackColor = true;
//
// label11
//
this.label11.Location = new System.Drawing.Point(206, 73);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(80, 23);
this.label11.TabIndex = 6;
this.label11.Text = "label11";
this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label10
//
this.label10.Location = new System.Drawing.Point(206, 57);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(80, 16);
this.label10.TabIndex = 5;
this.label10.Text = "Client Version:";
this.label10.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label9
//
this.label9.Location = new System.Drawing.Point(6, 92);
@ -244,16 +264,16 @@ namespace RBXLegacyLauncher
//
// label8
//
this.label8.Location = new System.Drawing.Point(6, 73);
this.label8.Location = new System.Drawing.Point(88, 73);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(378, 26);
this.label8.Size = new System.Drawing.Size(100, 19);
this.label8.TabIndex = 3;
this.label8.Text = "label8";
this.label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label7
//
this.label7.Location = new System.Drawing.Point(143, 57);
this.label7.Location = new System.Drawing.Point(88, 57);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(100, 16);
this.label7.TabIndex = 2;
@ -328,6 +348,8 @@ namespace RBXLegacyLauncher
this.tabPage4.ResumeLayout(false);
this.ResumeLayout(false);
}
private System.Windows.Forms.Label label10;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.Label label2;

View File

@ -30,25 +30,24 @@ namespace RBXLegacyLauncher
// TODO: Add constructor code after the InitializeComponent() call.
//
}
void tabPage1_Enter(object sender, EventArgs e)
void tabControl1_SelectedIndexChanged(object sender, EventArgs e)
{
if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage2"])//your specific tabname
{
string mapdir = GlobalVars.ClientDir + @"\\content\\Maps";
DirectoryInfo dinfo = new DirectoryInfo(mapdir);
FileInfo[] Files = dinfo.GetFiles("*.rbxl");
foreach( FileInfo file in Files )
{
this.listBox1.Items.Add(file.Name);
}
this.listBox1.SelectedIndex = 0;
}
else
{
this.listBox1.Items.Clear();
}
}
void tabPage2_Enter(object sender, EventArgs e)
{
string mapdir = GlobalVars.ClientDir + @"\\content\\Maps";
DirectoryInfo dinfo = new DirectoryInfo(mapdir);
FileInfo[] Files = dinfo.GetFiles("*.rbxl");
foreach( FileInfo file in Files )
{
this.listBox1.Items.Add(file.Name);
}
this.listBox1.SelectedIndex = 0;
}
void tabPage2_Leave(object sender, EventArgs e)
{
this.listBox1.Items.Clear();
}
void Button1Click(object sender, EventArgs e)
{
string luafile = GlobalVars.ClientDir + @"\\content\\Scripts\\CSMPFunctions.lua";
@ -85,6 +84,9 @@ namespace RBXLegacyLauncher
GlobalVars.IP = "localhost";
GlobalVars.Map = "Baseplate.rbxl";
GlobalVars.CloseOnLaunch = true;
string[] lines = File.ReadAllLines("version.txt"); //File is in System.IO
string version = lines[0];
label11.Text = version;
}
void TextBox1TextChanged(object sender, EventArgs e)

View File

@ -1,15 +0,0 @@
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\bin\Debug\RBXLegacyLauncher.exe
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\bin\Debug\RBXLegacyLauncher.pdb
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.csprojResolveAssemblyReference.cache
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.MainForm.resources
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.csproj.GenerateResource.Cache
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.exe
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.pdb
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\bin\Debug\RBXLegacyLauncher.exe.config
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\bin\Debug\RBXLegacyLauncher.exe
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\bin\Debug\RBXLegacyLauncher.pdb
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.csprojResolveAssemblyReference.cache
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.MainForm.resources
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.csproj.GenerateResource.Cache
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.exe
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Debug\RBXLegacyLauncher.pdb

View File

@ -1,11 +0,0 @@
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\bin\Release\RBXLegacyLauncher.exe
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csprojResolveAssemblyReference.cache
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.MainForm.resources
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csproj.GenerateResource.Cache
C:\Users\BITL\Desktop\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.exe
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\bin\Release\RBXLegacyLauncher.exe.config
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\bin\Release\RBXLegacyLauncher.exe
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csprojResolveAssemblyReference.cache
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.MainForm.resources
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csproj.GenerateResource.Cache
C:\Users\BITL\Documents\GitHub\RBXLegacy\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.exe

View File

@ -1,7 +1,7 @@
; Script generated by the Inno Script Studio Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define AppVer "1.1.0"
#define AppVer "1.1.2"
[Setup]
; NOTE: The value of AppId uniquely identifies this application.

View File

@ -1,4 +1,4 @@
-------------------------------
-------------------------------
========= INFORMATION =========
-------------------------------
@ -9,6 +9,14 @@ RBXLegacy is a version of a late-2008 ROBLOX client, built to allow the user to
========= CHANGELOG =========
-----------------------------
v1.1.2:
- Fixed the skybox on Sword Fights on the Heights, Rocket Arena, and Yorick's Resting Place.
- Fixed a bug where the Launcher would duplicate names of maps in the map list.
- The Launcher will now list the current version of RBXLegacy.
v1.1.1:
- Fixed Sword Fights on the Heights, Happy Home in Robloxia, and Crossroads.
- Fixed a bug where the entire map list would disappear if you selected the options on top on the launcher.
- Removed Winter Rocket Arena as it is a non-ROBLOX-made level.
v1.1:
- Added a new launcher.
- Added a CHANGLOG section to the README.
@ -25,8 +33,8 @@ v1.0:
WARNING:
If Hamachi is on, you won't be able to join "localhost" or any other local or private IP address! In order to use RBXLegacy on LAN or Play Solo,
you must either turn off Hamachi by pressing the "Turn Off" button, or by turning one of your Hamachi networks online if you own a network.
you must either turn off Hamachi by pressing the "Turn Off" button, or by turning one of your Hamachi networks online if you own a network.
NOTE:
@ -40,84 +48,84 @@ NOTE: If you get an error trying to open the launcher, install this: https://www
=== HOSTING ===
How to host a server:
1. Port forward 53640 as TCP/UCP. If you do not know how to port forward, there are plenty of tutorials on the internet for this.
2. Open the RBXLegacy Launcher.
3. Select the "START SERVER" tab.
4. Select the name of the map you want to play, then press the "START SERVER" button. The ROBLOX Studio window should load with the map you chose.
5. To share your server with friends, send them your public/external IP address (Google ip).
How to host a LAN server:
1. First, you must know your LAN IPv4 address from ipconfig. If you don't know your LAN IPv4 address, there are plenty of tutorials on the internet for this.
2. Open the RBXLegacy Launcher.
3. Select the "START SERVER" tab.
4. Select the name of the map you want to play, then press the "START SERVER" button. The ROBLOX Studio window should load with the map you chose.
5. To share your server with friends, tell them your LAN IPv4 address.
How to host a Hamachi server:
1. Make sure you have Hamachi installed and you made a network already. If you do not know how, there are plenty of tutorials on the internet for this.
2. Open the RBXLegacy Launcher.
3. Select the "START SERVER" tab.
4. Select the name of the map you want to play, then press the "START SERVER" button. The ROBLOX Studio window should load with the map you chose.
5. To share your server with friends, send them your Hamachi IPv4 address located above your computer's name on the Hamachi window.
You must also share the network ID and password to your Hamachi network.
You must also share the network ID and password to your Hamachi network.
=== CONNECTING ===
How to connect via IP (LAN/Online):
1. Open the RBXLegacy Launcher.
2. Select the "JOIN SERVER" tab.
3. Type in the IP address that is shared to you into the "IP Address" box, and then press the "JOIN SERVER" button.
4. You should be able to join the server.
4. You should be able to join the server.
How to connect via Hamachi:
1. Open the RBXLegacy Launcher.
2. Select the "JOIN SERVER" tab.
3. Type in the IPv4 Address that is in the title of the Hamachi network you are in into the "IP Address" box, and then press press the "JOIN SERVER" button.
4. You should be able to join the server.
4. You should be able to join the server.
=== PLAY SOLO ===
How to Play Solo:
How to Play Solo:
1. Open the RBXLegacy Launcher.
3. Select the "START SERVER" tab.
4. Select the name of the map you want to play, then press the "START SERVER" button. The ROBLOX Studio window should load with the map you chose.
4. Then, launch the RBXLegacy Launcher again and then select the "JOIN SERVER" tab.
5. On the "JOIN SERVER" screen, press the "JOIN SERVER" button. ROBLOX will then load.
@ -128,85 +136,85 @@ WARNING: DO NOT PUT A SPACE IN THE FOLDER THAT THIS IS IN OR MOVE THIS TO A FOLD
=== HOSTING ===
How to host a server:
1. Port forward 53640 as TCP/UCP. If you do not know how to port forward, there are plenty of tutorials on the internet for this.
2. Open the RBXLegacy.bat.
3. Select the "START SERVER" option by typing 2 and then pressing Enter or Return.
4. Type in the name of the map you want to play, then press Enter or Return. The ROBLOX Studio window should load with the map you chose.
5. To share your server with friends, send them your public/external IP address (Google ip).
How to host a LAN server:
1. First, you must know your LAN IPv4 address from ipconfig. If you don't know your LAN IPv4 address, there are plenty of tutorials on the internet for this.
2. Open the RBXLegacy.bat.
3. Select the "START SERVER" option by typing 2 and then pressing Enter or Return.
4. Type in the name of the map you want to play, then press Enter or Return. The ROBLOX Studio window should load with the map you chose.
4. Type in the name of the map you want to play, then press Enter or Return. The ROBLOX Studio window should load with the map you chose.
5. To share your server with friends, tell them your LAN IPv4 address.
How to host a Hamachi server:
1. Make sure you have Hamachi installed and you made a network already. If you do not know how, there are plenty of tutorials on the internet for this.
2. Open the RBXLegacy.bat.
3. Select the "START SERVER" option by typing 2 and then pressing Enter or Return.
4. Type in the name of the map you want to play, then press Enter or Return. The ROBLOX Studio window should load with the map you chose.
5. To share your server with friends, send them your Hamachi IPv4 address located above your computer's name on the Hamachi window.
You must also share the network ID and password to your Hamachi network.
You must also share the network ID and password to your Hamachi network.
=== CONNECTING ===
How to connect via IP (LAN/Online):
1. Open the RBXLegacy.bat.
2. Select the "JOIN SERVER" option by typing 1 and then pressing Enter or Return.
3. Type in the IP address that is shared to you, and then press Enter or Return.
4. You should be able to join the server.
4. You should be able to join the server.
How to connect via Hamachi:
1. Open the RBXLegacy.bat.
1. Open the RBXLegacy.bat.
2. Select the "JOIN SERVER" option by typing 1 and then pressing Enter or Return.
3. Type in the IPv4 Address that is in the title of the Hamachi network you are in, and then press Enter or Return.
4. You should be able to join the server.
=== PLAY SOLO ===
How to Play Solo:
How to Play Solo:
1. Open the RBXLegacy.bat.
2. Select the "START SERVER" option by typing 2 and then pressing Enter or Return.
3. Type in the name of the map you want to play, then press Enter or Return. The ROBLOX Studio window should load with the map you chose.
4. Then, launch the RBXLegacy.bat again and then select "JOIN SERVER" by typing 1 and then pressing Enter or Return.
4. Then, launch the RBXLegacy.bat again and then select "JOIN SERVER" by typing 1 and then pressing Enter or Return.
5. On the "JOIN SERVER" screen, press Enter or Return. ROBLOX will then load.
@ -220,4 +228,4 @@ Bitl is not affiliated with the ROBLOX Corporation or its subsidiaries.
Bitl does not own any of the content included with RBXLegacy.
The client itself was not modified in any way.
LUA scripts were used to build a client that can connect to LAN and the Internet.
The LUA scripts used was borrowed from the RBXPri client and merged into 1 single script.
The LUA scripts used was borrowed from the RBXPri client and merged into 1 single script.

View File

@ -1,7 +1,6 @@
#RBXLegacy
----------------------------------
========= CREATOR'S NOTE =========
----------------------------------
## RBXLegacy
## CREATOR'S NOTE
NOTE: This is only the source code. Click the link below to download the latest version of the client.
@ -9,7 +8,7 @@ NOTE: This is only the source code. Click the link below to download the latest
Made this little thing to mess around with Lua and RBXPri stuff. Instructions and legal info are in the README.txt in the client itself.
Download the actual client at https://github.com/Bitl/RBXLegacy/releases or http://gamejolt.com/games/rbxlegacy/195327
Download the actual client at http://gamejolt.com/games/rbxlegacy/195327
Have fun!