- Joined
- Apr 18, 2009
- Messages
- 171
- Reaction score
- 4
Have you all ever read/made a stupid thread?
Afterwords, when its solved, didn't you think, "Man, that was easy!" or "Man, I am DUMB!"
Here is a collection of some common bugs and fixes.
You cant login? The key "sticks"?
You cant select your character, it just "runs" there?
Want to SVN Checkout?
Oh, you don't know how? awww SUCKS FOR YOU.
Just kidding. Here is something I whipped up just now:
Ohh, so your Hex Editing you localhost..Wait, what... you get some C++ error? HA! Follow this!
You just bought a vPS or a x64 computer.
You set up your server...its the moment..you run the bats.
You get a "Java not recognized" error... Your screwed, basically..unless you read the fix xD
So you have a "Java not recognized" error, aka "Undefined Java Error"
You just obtained the "Official BMS Server Files" What do you do? (MUST SEE!)
So you want to add a online/offline check on your website.
What else to add?
Comment and suggest what to add xD
Afterwords, when its solved, didn't you think, "Man, that was easy!" or "Man, I am DUMB!"
Here is a collection of some common bugs and fixes.
You cant login? The key "sticks"?
You cant select your character, it just "runs" there?
Want to SVN Checkout?
Oh, you don't know how? awww SUCKS FOR YOU.
Just kidding. Here is something I whipped up just now:
Step 1: Go to
Step 2: Run and install the setup
Step 3: Make a folder, name it whatever you want.
Step 4: Right click the folder, and select "SVN Checkout"
Step 5: Type in the repository(url of the checkout)
Step 6: Let it "extract" or "checkout"
Step 7: Press "OK" when its done...HORRAY!
To view the content, you need to sign in or register
Step 2: Run and install the setup
Step 3: Make a folder, name it whatever you want.
Step 4: Right click the folder, and select "SVN Checkout"
Step 5: Type in the repository(url of the checkout)
Step 6: Let it "extract" or "checkout"
Step 7: Press "OK" when its done...HORRAY!
Ohh, so your Hex Editing you localhost..Wait, what... you get some C++ error? HA! Follow this!
When inserting the IP, DO NOT "find and replace"
Instead, just find the text string of the IP(default 127.0.0.1)
when you find it, go to the right side, where you see it.
Put the cursor BEFORE the first 127.0.0.1....127.0.0.1....
Just type your IP over it and replace all of the 127.0.0.1's
Save, should be fine.
Instead, just find the text string of the IP(default 127.0.0.1)
when you find it, go to the right side, where you see it.
Put the cursor BEFORE the first 127.0.0.1....127.0.0.1....
Just type your IP over it and replace all of the 127.0.0.1's
Save, should be fine.
You just bought a vPS or a x64 computer.
You set up your server...its the moment..you run the bats.
You get a "Java not recognized" error... Your screwed, basically..unless you read the fix xD
So you have a "Java not recognized" error, aka "Undefined Java Error"
You're MOST LIKELY on a x64 (probably vPS.)
Go to your JAVA folder and there should be a program called java.exe
copy the java.exe and paste it in your folder with the .bats
re-run your bats, FIXED
Go to your JAVA folder and there should be a program called java.exe
copy the java.exe and paste it in your folder with the .bats
re-run your bats, FIXED
You just obtained the "Official BMS Server Files" What do you do? (MUST SEE!)
DELETE IT.
or say you did
anyways, I never downloaded it, so yeah
or say you did
anyways, I never downloaded it, so yeah
So you want to add a online/offline check on your website.
adding this will show if the port is used/unused.
PHP:
<?php
$ip = "5.145.32.102"; // Your private server IP address
$port = "7575"; // Port used for your private server
if (! $sock = @fsockopen($ip, $port, $num, $error, 5))
echo '<B> Server Name:<FONT COLOR=red> Offline</b></FONT>';
else{
echo '<B> Server Name:<FONT COLOR=green> Online</b></FONT>';
fclose($sock);
}
?>
NOT MINE, I DO NOT TAKE CREDITS. I FOUND IT IN MY FOLDER, GOT IT SOMEWHERE, FORGOT.
What else to add?
Comment and suggest what to add xD
Last edited by a moderator: