arrow_upward

Posted by: perry - 06-24-2017, 04:53 PM - Forum: Offtopic - Replies (3)
Hey users how long have you been on the forum.

My online time is:
1 Month, 5 Days, 13 Hours, 32 Minutes, 57 Seconds
Posted by: Xirot - 06-22-2017, 05:25 PM - Forum: General - Replies (16)
Hey folks,
I'm so curious to ask every single member what he'll do with his free VPS from post4vps, don't hesitate to share ideas and say what you need.
Posted by: OldMeister - 06-22-2017, 12:39 PM - Forum: Offtopic - Replies (9)
i got a question. i want to use vps to host gameservers. but i dont know which vps can i use to host gameservers
can you please reply answer with the FULL list of the vps that support gameservers?
EDITED: i just saw that in the vps request format that i need to put zip code and region.
what is region? my country? and what is zip code?
Posted by: Xirot - 06-21-2017, 02:00 AM - Forum: General Gaming Discussion - Replies (2)
Hello guys, I've downloaded this game from the internet (nostead) and worked pretty fine ask me for the link if you need it however it works on solo player only which means no multiplayer plays since it's a nosteam copy however I heard through a patch or something like this you could be able to play it online.
Really nice game on the solo world, cool story and I've spent a cool time enjoying it and following the story details.
What do you think guys about it?
Posted by: Xirot - 06-21-2017, 01:45 AM - Forum: Meet & Greet! - Replies (1)
Hey guys how you doing,
First of all I wanna give a big up for the founder of this idea of the whole project which is really nice and cool beacause it's an easy way to get a VPS without any difficulties or payments which means it's totally free, I'm finding the idea of this project really useful since I can not pay any money transactions on the internet due to our country rules, I hope it will be changed in the common days, whatever.
It's Xirot here a 19 years old guy from Tunisia trying to get involved with you guys, I'm here as y'all know guys to get a VPS as soon as possible because my Gaming Community got closed for a while and I want to revive it.
I did the forum manager role before with a similar project like you guys but it's down now (you can feel free to contact me if you need me in dat role Tongue ) so yeah now I got many free time and I'm ready to launch back my Gaming Community servers online.
Thank you for your time, 
Peace and love  Heart

Posted by: Lampard - 06-20-2017, 11:12 PM - Forum: Other Free Service Providers - Replies (22)
[Image: 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.


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?
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]
 
 
 
Contact us
-

Posted by: OldMeister - 06-20-2017, 10:02 AM - Forum: Tutorials - Replies (8)
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 

Code:
pause


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:

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:
nogui


 to the end of the command:


Code:
java -jar minecraft_server.jar nogui



Some people have reported that this requires (significantly) less memory and CPU resources.

You can also replace the 

Code:
java


 command 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:
Xms


 and 


Code:
Xmx


 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:

  • java -Xms512M -Xmx1G ...java -Xms1024M -Xmx1024M ...java -Xms1G -Xmx2G ...
Add in 

Code:
-d64


 if your server is on a 64-bit computer using 64-bit Java.


Add 

Code:
-o true

 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
Posted by: sagher - 06-20-2017, 09:29 AM - Forum: General Gaming Discussion - Replies (2)
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?
Posted by: OldMeister - 06-19-2017, 07:22 PM - Forum: Tutorials - Replies (2)
*DELETED* .
Posted by: OldMeister - 06-19-2017, 02:33 PM - Forum: Tutorials - Replies (4)
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
Pages (305): Jump to page 
Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,271
» Latest member: orzpainter
» Forum threads: 3,094
» Forum posts: 34,818

Full Statistics

Online Users
There are currently 301 online users.
» 0 Member(s) | 298 Guest(s)
Bing, Applebot, UptimeRobot

Latest Threads
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
10 hours ago
» Replies: 6
» Views: 3,372
LLHOST — VPS in the Nethe...
Forum: Cheap Providers
Last Post: LLHOST
05-08-2025, 07:36 AM
» Replies: 0
» Views: 55
LLHOST — VPS hosting for ...
Forum: Value VPS Providers
Last Post: LLHOST
04-30-2025, 12:10 PM
» Replies: 0
» Views: 82
Get 25% OFF all LLHOST ne...
Forum: Cheap VPS Providers
Last Post: LLHOST
04-22-2025, 11:04 AM
» Replies: 0
» Views: 191
LLHOST: VPS in the Nether...
Forum: Others
Last Post: LLHOST
04-15-2025, 07:32 PM
» Replies: 0
» Views: 259
Hello all!
Forum: Meet & Greet!
Last Post: perry
03-26-2025, 11:28 AM
» Replies: 1
» Views: 294
VisualWebTechnologies | 7...
Forum: Others
Last Post: visualwebtechnologies
03-11-2025, 02:58 AM
» Replies: 0
» Views: 225
Post2Host.com domain on a...
Forum: Others
Last Post: Variable
03-10-2025, 04:04 PM
» Replies: 0
» Views: 184
KVM & OpenVZ Yearly VPS f...
Forum: Cheap VPS Providers
Last Post: HostNamaste
03-05-2025, 12:15 PM
» Replies: 0
» Views: 394
Create Unlimited Virtual ...
Forum: Hardware & Technology
Last Post: bestadvisor
03-01-2025, 09:47 AM
» Replies: 0
» Views: 715

Sponsors: VirMach - Host4Fun - CubeData - Evolution-Host - HostDare - Hyper Expert - Shadow Hosting - Bladenode - Hostlease - RackNerd - ReadyDedis - Limitless Hosting