![[Image: logo.png]](https://limitlesshost.net/img/logo.png)
Limitless Hosting has been providing services since 2015
We provide quality web hosting, Virtual Private Servers(VPS) and domain registration services to customers at very affordable prices.
We provide quality web hosting, Virtual Private Servers(VPS) and domain registration services to customers at very affordable prices.
About Free Shared Hosting
Limitless Hosting has now got a Free Shared Hosting Package, you can check out the Free Shared Hosting details below:
- 10 GB Disk Space
- 100 GB Bandwidth
- 1 Addon Domain
- 5 MySQL Database
- cPanel
- Softaculous
How to get Free Shared Hosting?
You have to order here: https://limitlesshost.net/billing/order/...ed-hosting
However after ordering the Free Shared Hosting you must create a ticket here: https://limitlesshost.net/billing/support/contact-us
In your ticket, you must ask us to activate your Free Shared Hosting.
For how long?
You will have the Free Shared Hosting until you do not go inactive, and you must follow the service ToS to keep your Free Shared Hosting.
Free domains are allowed, however your website must not contain any kind of content which is against ToS.
[font=serif]ToS:[/font]
[font=serif]http://limitlesshost.net/billing/index.php?_url=/tos[/font]
[font=serif]Privacy Policy:[/font]
[font=serif]http://limitlesshost.net/billing/index.php?_url=/privacy-policy[/font]
[font=serif]Privacy Policy:[/font]
[font=serif]http://limitlesshost.net/billing/index.php?_url=/privacy-policy[/font]
Contact us
-
Email: [email protected]
Twitter: https://twitter.com/LimitlessHosts
Submit a ticket: https://limitlesshost.net/billing/support/contact-us
Hello all. i got another tutorial that i want to share in this forum. long time ago i made a minecraft server. i dont remember much
but i still remember how to set up the server.well lets start. first of all you have to download the server files.
https://minecraft.net/en-us/download/server
run the file minecraft_server.jar. and wait a little bit that it will download and create your server files
after the server will crash if you run him again. you need to accept EULA USER LICENSE AGREEMENT
https://account.mojang.com/documents/minecraft_eula
after you done reading the user lincense. enter Eula.txt and set eula = false to eula = true.
If you get an error such as "Can't save server.properties" and your screen fills with useless, gibberish text, then run the Minecraft Server as administrator by right-mouse clicking on it and choosing 'Run as administrator'. (You may need the administrator password to do this.)
How to create .bat file to store the commands?
To start the configured Minecraft server, without having to enter all commands every time, you can create a .bat file in the server folder. You can include the
command to tell the window to stay open after the /stop command is issued. Useful if you want to read what happened as it shut down.
Here is an example of a bat file:
java -Xms1024M -Xmx2048M -jar minecraft_server.jar nogui
pause
Double click the file to start your server. You may get a "Class_Not_Found" and ServerGuiConcole error, just ignore these errors and you should see your "Server Thread/INFO" dialog start the server.
How to config From The Command Line?
Both the Java and the executable version can be run from the Windows command prompt/line with extra parameters to configure, for example, memory usage. As we currently know there is no command prompt for java on the Windows platform that will run these commands correctly. That however is subject to change.
To start the server, change to the Minecraft server folder (find the file path to which your server's jar file is) and open the windows command prompt (in Start, just type cmd and it should have a file name of cmd.exe), then enter the following command:
Replace
with the server application file name, for example
.
If you prefer not to use the server's Graphical User Interface (GUI) to enter administration commands, simply add the option
to the end of the command:
Some people have reported that this requires (significantly) less memory and CPU resources.
You can also replace the
command with
. Javaw.exe is identical to Java.exe but there is no associated console window. This may be preferable when using a .bat file. (See the next section.) Note however that Javaw also doesn't show any error messages in the command window if anything is wrong.
Using the
and
parameters, the initial and maximum memory size for Java can be specified. By default, your server runs with about 100 MB of RAM, which is very little. Most people will change their server to run with more, for example:
if your server is on a 64-bit computer using 64-bit Java.
Add
to tell the server to run in online mode so only authenticated users can join.
If you have less than 1024MB RAM, the above line may cause problems with swapping and out of memory conditions, which makes the game hard to play.
Thats All As Far As I Remember... Hope I Helped You In Some Way. Any Suggestions to topic accepted in replys.
if you got issue Post Here. I Took Some Of The Lines Here From http://minecraft.gamepedia.com/Tutorials...p_a_server
you can take a look there for full explaination! good luck to your minecraft server! hope it will grow like this community!
Regards -OldMeister
but i still remember how to set up the server.well lets start. first of all you have to download the server files.
https://minecraft.net/en-us/download/server
run the file minecraft_server.jar. and wait a little bit that it will download and create your server files
after the server will crash if you run him again. you need to accept EULA USER LICENSE AGREEMENT
https://account.mojang.com/documents/minecraft_eula
after you done reading the user lincense. enter Eula.txt and set eula = false to eula = true.
If you get an error such as "Can't save server.properties" and your screen fills with useless, gibberish text, then run the Minecraft Server as administrator by right-mouse clicking on it and choosing 'Run as administrator'. (You may need the administrator password to do this.)
How to create .bat file to store the commands?
To start the configured Minecraft server, without having to enter all commands every time, you can create a .bat file in the server folder. You can include the
Code:
pausecommand to tell the window to stay open after the /stop command is issued. Useful if you want to read what happened as it shut down.
Here is an example of a bat file:
java -Xms1024M -Xmx2048M -jar minecraft_server.jar nogui
pause
Double click the file to start your server. You may get a "Class_Not_Found" and ServerGuiConcole error, just ignore these errors and you should see your "Server Thread/INFO" dialog start the server.
How to config From The Command Line?
Both the Java and the executable version can be run from the Windows command prompt/line with extra parameters to configure, for example, memory usage. As we currently know there is no command prompt for java on the Windows platform that will run these commands correctly. That however is subject to change.
To start the server, change to the Minecraft server folder (find the file path to which your server's jar file is) and open the windows command prompt (in Start, just type cmd and it should have a file name of cmd.exe), then enter the following command:
Code:
java -jar <server-file>Replace
Code:
<server-file>with the server application file name, for example
Code:
minecraft_server.1.9.4.jar.
If you prefer not to use the server's Graphical User Interface (GUI) to enter administration commands, simply add the option
Code:
noguito the end of the command:
Code:
java -jar minecraft_server.jar noguiSome people have reported that this requires (significantly) less memory and CPU resources.
You can also replace the
Code:
javacommand with
Code:
javaw. Javaw.exe is identical to Java.exe but there is no associated console window. This may be preferable when using a .bat file. (See the next section.) Note however that Javaw also doesn't show any error messages in the command window if anything is wrong.
Using the
Code:
Xmsand
Code:
Xmxparameters, the initial and maximum memory size for Java can be specified. By default, your server runs with about 100 MB of RAM, which is very little. Most people will change their server to run with more, for example:
- java -Xms512M -Xmx1G ...java -Xms1024M -Xmx1024M ...java -Xms1G -Xmx2G ...
Code:
-d64if your server is on a 64-bit computer using 64-bit Java.
Add
Code:
-o trueto tell the server to run in online mode so only authenticated users can join.
If you have less than 1024MB RAM, the above line may cause problems with swapping and out of memory conditions, which makes the game hard to play.
Thats All As Far As I Remember... Hope I Helped You In Some Way. Any Suggestions to topic accepted in replys.
if you got issue Post Here. I Took Some Of The Lines Here From http://minecraft.gamepedia.com/Tutorials...p_a_server
you can take a look there for full explaination! good luck to your minecraft server! hope it will grow like this community!
Regards -OldMeister
Hello everyone.
i am facing a problem. Max payne 3 was stop working on server about 3 to 4 days ago. i don't know why. anyone have update regarding this?
i am facing a problem. Max payne 3 was stop working on server about 3 to 4 days ago. i don't know why. anyone have update regarding this?
*DELETED* .
Hello All. Its My Last tutorial i will make (for now.) i want to share with you how to add rocket plguin to unturned server.
its very easy, not long tutorial like the other tutorials. it will take only 2 minutes
first of all enter https://rocketmod.net/ After that press downloads and select linux or windows (whatever you have)
after that Copy the rocket files and put them in your unturned server folder.
There you go! you got rocket plugin
rocket gives you option to add people plugins that modify your server. like the plugin /tpa
it allow you to teleport to other people by typing /tpa OldMeister (for example) and they can deny or accept the teleport request by /tpa deny /tpa accept.
the plugin list is over here: https://rocketmod.net/plugins/
if you want help with installing plguins. Talk with me. and i will help you.
dont forget to +rep if this tutorial helped you! any suggestions accepted. just reply to this topic. if you have any troubles installing rocket reply to me
Good Luck! -OldMeister
its very easy, not long tutorial like the other tutorials. it will take only 2 minutes
first of all enter https://rocketmod.net/ After that press downloads and select linux or windows (whatever you have)
after that Copy the rocket files and put them in your unturned server folder.
There you go! you got rocket plugin
rocket gives you option to add people plugins that modify your server. like the plugin /tpa
it allow you to teleport to other people by typing /tpa OldMeister (for example) and they can deny or accept the teleport request by /tpa deny /tpa accept.
the plugin list is over here: https://rocketmod.net/plugins/
if you want help with installing plguins. Talk with me. and i will help you.
dont forget to +rep if this tutorial helped you! any suggestions accepted. just reply to this topic. if you have any troubles installing rocket reply to me
Good Luck! -OldMeister
Posted by: OldMeister - 06-19-2017, 01:24 PM - Forum: Tutorials
- No Replies
Hello All. Its Me Again. i want to share you another tutorial about how to create unturned server.
to the people who dont know what is unturned.
unturned is a survival game created by nelson can be downloaded in steam only. it has stronge anti cheat so no hackers around the game!
first of all. you need to make a copy of your unturned folder and make another folder named Unturned Server ( you can call it how ever you want)
Once there, right click Unturned.exe, and create a shortcut. Then right click the shortcut, and goto properties.
In properies, there should be a target line. In this line type after the quotes:
-batchmode -nographics +secureserver/server name
It is important that you do add spaces in front of all the +/- signs.
Also, you can substitute +secureserver for +lanserver OR +insecureserver.
Lan only allows others on your router to connect, Unsecure Removes saftey measures.
After you do this, run the shortcut, and use the command shutdown to close the window.
The server may take 30+ seconds to respond, so don't get mad at it.
[font=Arial, Helvetica, Verdana, sans-serif]Now you need to add commands to your server, to make it run.
[/font]
Go back into you unturned folder with the same path from above, and from there:
Servers > server name > Server > Commands.dat
Open the .dat file with a default word processor, like notepad, wordpad, or notepad++.
Once in there, you must type in the following:
Name (server name)
Map PEI (unless you made your own map, then substitute its name)
Maxplayers ## (10 is a good start, default is 8)
Pvp (or Pve)
Welcome (message)
The welcome message is completely optional, but is a good addition.
[font=Arial, Helvetica, Verdana, sans-serif]Once you've done this, you can run your server.[/font]
[font=Arial, Helvetica, Verdana, sans-serif]You Can Also Add Loadouts.[/font]
[font=Arial, Helvetica, Verdana, sans-serif][font=Arial, Helvetica, Verdana, sans-serif]Server loadouts can allow for different skillsets (found under the character specialty in the main menu). This allows for different skillsets to spawn with different gear.
[/font][/font]
The 11 Skillsets are listed below; 255 affects all skillsets:
- 0. Civilian*
- 1. Firefighter
- 2. Police Officer
- 3. Spec Ops
- 4. Farmer
- 5. Fisher
- 6. Lumberjack
- 7. Worker
- 8. Chef
- 9. Thief
- 10. Doctor
- 255. All skillsets
*Civilian is when you have no skillset selected
The command for loadouts is:
[font=Arial, Helvetica, Verdana, sans-serif][font=Arial, Helvetica, Verdana, sans-serif]/Loadout [skillsetID]/[ItemID]/[ItemID][/font][/font]
Now the hard part. to let people joining your server YOU MUST port forward. without this people CANNOT connect your server.
How to port forward? Watch this: https://www.youtube.com/watch?v=usSpl0yJFnY
good luck to you all! i hope i helped :
dont forget to reply to me if you have any suggestion or problems in this tutorial! im ready to help you 24/7
to the people who dont know what is unturned.
unturned is a survival game created by nelson can be downloaded in steam only. it has stronge anti cheat so no hackers around the game!
first of all. you need to make a copy of your unturned folder and make another folder named Unturned Server ( you can call it how ever you want)
Once there, right click Unturned.exe, and create a shortcut. Then right click the shortcut, and goto properties.
In properies, there should be a target line. In this line type after the quotes:
-batchmode -nographics +secureserver/server name
It is important that you do add spaces in front of all the +/- signs.
Also, you can substitute +secureserver for +lanserver OR +insecureserver.
Lan only allows others on your router to connect, Unsecure Removes saftey measures.
After you do this, run the shortcut, and use the command shutdown to close the window.
The server may take 30+ seconds to respond, so don't get mad at it.
[font=Arial, Helvetica, Verdana, sans-serif]Now you need to add commands to your server, to make it run.
[/font]
Go back into you unturned folder with the same path from above, and from there:
Servers > server name > Server > Commands.dat
Open the .dat file with a default word processor, like notepad, wordpad, or notepad++.
Once in there, you must type in the following:
Name (server name)
Map PEI (unless you made your own map, then substitute its name)
Maxplayers ## (10 is a good start, default is 8)
Pvp (or Pve)
Welcome (message)
The welcome message is completely optional, but is a good addition.
[font=Arial, Helvetica, Verdana, sans-serif]Once you've done this, you can run your server.[/font]
[font=Arial, Helvetica, Verdana, sans-serif]You Can Also Add Loadouts.[/font]
[font=Arial, Helvetica, Verdana, sans-serif][font=Arial, Helvetica, Verdana, sans-serif]Server loadouts can allow for different skillsets (found under the character specialty in the main menu). This allows for different skillsets to spawn with different gear.
[/font][/font]
The 11 Skillsets are listed below; 255 affects all skillsets:
- 0. Civilian*
- 1. Firefighter
- 2. Police Officer
- 3. Spec Ops
- 4. Farmer
- 5. Fisher
- 6. Lumberjack
- 7. Worker
- 8. Chef
- 9. Thief
- 10. Doctor
- 255. All skillsets
*Civilian is when you have no skillset selected
The command for loadouts is:
[font=Arial, Helvetica, Verdana, sans-serif][font=Arial, Helvetica, Verdana, sans-serif]/Loadout [skillsetID]/[ItemID]/[ItemID][/font][/font]
Now the hard part. to let people joining your server YOU MUST port forward. without this people CANNOT connect your server.
How to port forward? Watch this: https://www.youtube.com/watch?v=usSpl0yJFnY
good luck to you all! i hope i helped :

dont forget to reply to me if you have any suggestion or problems in this tutorial! im ready to help you 24/7
Hello all. today i want to teach you how to create a samp server! its very easy and if you follow my steps. you will be fine.
first of all you need to have the game Gta san andreas installed. with samp installed.
if you have it. then you have to download server files.
go to http://www.sa-mp.com/download.php
and select download. chose Linux/windows and download.dont forget to review SA-MP Service Agreement if you wish to run a public server.
after you downloaded the server folder enter server-readme.txt
http://imgur.com/FjSbDWj
after you reading the file
enter server.cfg and setup your server settings.
rcon_password = Specifies the password needed to connect to rcon, or login to rcon ingame.
maxplayers = Specifies the maximum amount of players.
port = This port is used for game connections, rcon connections, and for querying
hostname = Specifies the hostname shown in the server browser
gamemode =
Specifies the rotation settings. The first parameter sets the game mode name. The second is the number of times it will repeat.
You can use gamemode0 to specify the first gamemode, gamemode1 to specify the second, etc.
announce = Announces your server to the 'Internet' server list in the SA:MP browser. (turn on type 1 turn off type 0)
the Descriptions have been copied from server -readme.txt for full details read the file.
hope i helped you a little setting up your server.
any suggestion to this topic or problems reply here
first of all you need to have the game Gta san andreas installed. with samp installed.
if you have it. then you have to download server files.
go to http://www.sa-mp.com/download.php
and select download. chose Linux/windows and download.dont forget to review SA-MP Service Agreement if you wish to run a public server.
after you downloaded the server folder enter server-readme.txt
http://imgur.com/FjSbDWj
after you reading the file
enter server.cfg and setup your server settings.
rcon_password = Specifies the password needed to connect to rcon, or login to rcon ingame.
maxplayers = Specifies the maximum amount of players.
port = This port is used for game connections, rcon connections, and for querying
hostname = Specifies the hostname shown in the server browser
gamemode =
Specifies the rotation settings. The first parameter sets the game mode name. The second is the number of times it will repeat.
You can use gamemode0 to specify the first gamemode, gamemode1 to specify the second, etc.
announce = Announces your server to the 'Internet' server list in the SA:MP browser. (turn on type 1 turn off type 0)
the Descriptions have been copied from server -readme.txt for full details read the file.
hope i helped you a little setting up your server.
any suggestion to this topic or problems reply here
Hello,
Most of you might got to know by now.
We have changed our Post4VPS Forum's Host from Cloudrino to GalaxyHostPlus.We bought a new VPS of spec similar to VPS 7:
Spec info:
and Now we would use only Cloudflare's DNS,
![[Image: 39d9ba1d0b.png]](http://puu.sh/wmHWF/39d9ba1d0b.png)
we were using its CDN earlier since cloudrino's netspeed was very low & repeatedly unexpected downtime which was troubling our users, but now looks like they won't get troubled by that anymore.
and Also Shifted from COMODO CA SSL to Let's Encrypt SSL.
feedbacks would be appreciated(If I missed anything).
Regards,
Most of you might got to know by now.
We have changed our Post4VPS Forum's Host from Cloudrino to GalaxyHostPlus.We bought a new VPS of spec similar to VPS 7:
Spec info:
Code:
Ram: 1 GB
x4 CPU Cores
50 GB Storage
Bandwidth: 1 TB
1Gbps
x1 IPv4 + /80 IPv6 Subnet
Germanyand Now we would use only Cloudflare's DNS,
![[Image: 39d9ba1d0b.png]](http://puu.sh/wmHWF/39d9ba1d0b.png)
we were using its CDN earlier since cloudrino's netspeed was very low & repeatedly unexpected downtime which was troubling our users, but now looks like they won't get troubled by that anymore.
and Also Shifted from COMODO CA SSL to Let's Encrypt SSL.
feedbacks would be appreciated(If I missed anything).
Regards,
How did you found this website? i found it from advertisment on one of the forums hosting ( to bad the one who advertise this got banned in 1 day xD)
Hey Admins,
I Would Like to report something,
sometimes when im posting. i dont see my money from post added. for example after i post something i saw like 10$ and after i did another post. i saw still 10$
why?
I Would Like to report something,
sometimes when im posting. i dont see my money from post added. for example after i post something i saw like 10$ and after i did another post. i saw still 10$
why?
| Welcome, Guest |
|
You have to register before you can post on our site. |
| Search Forums |
|
(Advanced Search) |
| Forum Statistics |
|
» Members: 2,271 » Latest member: orzpainter » Forum threads: 3,099 » Forum posts: 34,782 Full Statistics |
| Online Users |
|
There are currently 741 online users. » 0 Member(s) | 739 Guest(s) Bing, Google |
| Latest Threads |
|
Get LLHOST Netherlands Fe...
Forum: Others Last Post: LLHOST 09-29-2025, 03:02 AM » Replies: 0 » Views: 533 |
|
Super Fast LLHOST Netherl...
Forum: Value VPS Providers Last Post: LLHOST 09-16-2025, 05:01 AM » Replies: 0 » Views: 368 |
|
Get LLHOST Netherlands Fe...
Forum: Cheap Providers Last Post: LLHOST 09-08-2025, 01:33 PM » Replies: 0 » Views: 489 |
|
Windows VPS @ $31.5/Year ...
Forum: Cheap Providers Last Post: DewlanceHosting 08-16-2025, 03:12 AM » Replies: 0 » Views: 637 |
|
Buy DemoTiger Videos on c...
Forum: Others Last Post: DewlanceHosting 08-16-2025, 03:10 AM » Replies: 8 » Views: 5,821 |
|
Budget Dedicated Servers ...
Forum: Others Last Post: HostNamaste 08-13-2025, 04:54 AM » Replies: 2 » Views: 1,605 |
|
☁️ How to Use VCCPRO Virt...
Forum: Cheap Providers Last Post: bestadvisor 07-13-2025, 09:36 AM » Replies: 0 » Views: 834 |
|
[Promo] 30% Discount – VP...
Forum: Cheap Providers Last Post: LLHOST 07-11-2025, 12:56 PM » Replies: 0 » Views: 740 |
|
✅ Affordable VPS Hosting ...
Forum: Cheap VPS Providers Last Post: RIYAD 07-02-2025, 03:02 AM » Replies: 0 » Views: 1,534 |
|
15% Lifetime Discount on ...
Forum: Cheap Providers Last Post: LLHOST 06-25-2025, 05:03 AM » Replies: 0 » Views: 619 |