Posted by: Zorono - 09-24-2017, 06:47 PM - Forum: Game Servers & Hardware
- No Replies
![[Image: favicon.png]](https://www.br-gaming.ovh/images/favicon.png)
Description:
Code:
BrownTurbo Gaming is Company On San Andreas Multiplayer(SA:MP) Community which had been Founded & Started On 2015 Feb By [BR]John_Magdy and [BR]Shamil Using A ultra-h Free Server and A Small Gamemode with a few Features/Scripts and maps and A proboards Forums and A small Staff But We are always Trying to improve Our Services To be more Better Than Our eariler versions And now We Have our own Dediced VPS and using the developed gamemode(SATDM~RP) by Money$PimP, which we had updated/fixed/improved/developed with the Love and added alot more unique/cool features to make it better so our players wouldn't get bored and Proffesional Simple Machine Forums(SMF) and Alot More Better active Staff, so we hope you'll enjoy your time here with us.
Features List:
- Advanced Houses System by AntroniX (Updated by Money$Pimp then reupdated by Us)
- Advanced Vehicles System (sorry i can't remember the author but i respect him and his works)
- Advanced Business System by tAxI
- Advanced Admin System By Lethal & LuxurioN (Updated by us)
- Advanced VIP System
- Advanced Clans & Gangs System
- Special Mapped Houses & Bases
- Advanced Race System by Yagu
- Advanced GeoIP Systems special thanks to Maxmind & Whitetiger
- Gang Zone War Systems
- Incredible Role-Play Job System(Medic, Cops, Criminals, Swippers ,Pizza Ddlivers, Hotdog Delivers, Dunkins, Trucking)
- Advanced ATM System
______________________________________________
[color=rgba(255, 255, 255, 0.7)][size=small]HostName: BrownTurbo 's ExTrEmE Evolution
Address: play.br-gaming.ovh:7783 – 185.12.178.71:7783
Mode: BRTDM~RP
__
Home Page: https://www.br-gaming.ovh/?p=1.0
Forums: https://www.br-gaming.ovh/forums
FAQ: https://www.br-gaming.ovh/?p=2.0
Services Status: https://status.br-gaming.ovh/
Server Status: https://www.br-gaming.ovh/?p=4.0
Community Staff List: https://www.br-gaming.ovh/?p=3.0
Downloads: https://www.br-gaming.ovh/?p=5.0
Donate: https://www.br-gaming.ovh/?p=7.0
Bug Tracker: https://www.br-gaming.ovh/bugs
Portal: https://www.br-gaming.ovh/portal
Skype Group: https://join.skype.com/Cvv66st33H2R
Discord Server: https://discord.gg/4Y23mKU
Facebook Group: http://facebook.com/groups/brownturbo.gaming
IRC Server: pool.irc.tl – IRC Channel: #brirc
[[font=Arial Black]IMPORTANT]: the rewards are level 2 & 4 millions Cash & free house & 2 premium Vehicles for first 10 Players (offer expired on 30/9/2017 12:00 AM UTC+2)
Adding IRC to the gamemode
We will:
* The Plugin and Include File (http://forum.sa-mp.com/showthread.php?t=98803)
* My Own IRC System (http://forum.sa-mp.com/showthread.php?t=615893) - Ultraz IRC System
Let's Get Started!
At the includes part you'll add this to include the irc in the script
Now to contain the bots
This will be the name of your bot so when any guest joins your irc channel will find the bot with this name
This for the first bot too, when the guest click on 'who is' or use /whois command on irc will get these info
[Important] Now lets set up the connection of irc network,channel,etc.
First we must register the channel we want in any network (I prefer pool.irc.tl [irc.tl] )
You'll go to the channel you want then login/identify with your nickname then use the command of:
/cs register #yourchannel it will give you the owner rank on IRC
Lets end defines part
You can connect 5 bots in the IRC Channel, but my opinion to make them 2 only, even if you have 100+ players in your samp server 2 bots will be enough
Codes of connecting Bots
This is getting the bots id and grouping them, in our case only 1 bot, gBot is for ex. I used it on Ultraz IRC System.
OnFilterScriptInit if filterscript, if in gamemode will be OnGameModeInit
This is will connect the IRC Bots to the network,channel we defined above
Now this is the delay, It will connect the several bots and giving your server time to load all the codes of the IRC Script, 20 is the seconds for Ex.
Okay, here the OnPlayerConnect partition, when player connected it'll send message (%s has connected to the server).
Here the OnPlayerText part, it'll echo when player talk or send messages to the main chat
Some Callbacks which will be important for the IRC Script
These callbacks is already in the IRC include.
!msg command
Ok, I made many commands in my own IRC System which it's Link is mentioned above, I made their many commands, I'll show example of how to make 1 of them like (!msg to speak from IRC to game)
More tutorials is coming soon, I just made small & short one to help people, any question reply down or PM me.
We will:
* The Plugin and Include File (http://forum.sa-mp.com/showthread.php?t=98803)
* My Own IRC System (http://forum.sa-mp.com/showthread.php?t=615893) - Ultraz IRC System
Let's Get Started!
At the includes part you'll add this to include the irc in the script
Code:
#include <irc>
Now to contain the bots
This will be the name of your bot so when any guest joins your irc channel will find the bot with this name
Code:
#define BOT_1_NICKNAME "1stBot"
This for the first bot too, when the guest click on 'who is' or use /whois command on irc will get these info
Code:
#define BOT_1_REALNAME "My 1st Bot"
#define BOT_1_USERNAME "1stBOT"
[Important] Now lets set up the connection of irc network,channel,etc.
First we must register the channel we want in any network (I prefer pool.irc.tl [irc.tl] )
You'll go to the channel you want then login/identify with your nickname then use the command of:
/cs register #yourchannel it will give you the owner rank on IRC
Code:
#define IRC_SERVER "pool.irc.tl"
#define IRC_PORT (6667) // default port of most of IRC Networks
#define IRC_CHANNEL "#yourchannel"
Lets end defines part
You can connect 5 bots in the IRC Channel, but my opinion to make them 2 only, even if you have 100+ players in your samp server 2 bots will be enough
Code:
#define MAX_BOTS (1)
Codes of connecting Bots
This is getting the bots id and grouping them, in our case only 1 bot, gBot is for ex. I used it on Ultraz IRC System.
Code:
new gBotID[MAX_BOTS], gGroupID;
OnFilterScriptInit if filterscript, if in gamemode will be OnGameModeInit
Code:
public OnFilterScriptInit() // If filterscript
{
gBotID[0] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_1_NICKNAME, BOT_1_REALNAME, BOT_1_USERNAME);
IRC_SetIntData(gBotID[0], E_IRC_CONNECT_DELAY, 20);
return 1;
}
Code:
gBotID[0] = IRC_Connect(IRC_SERVER, IRC_PORT, BOT_1_NICKNAME, BOT_1_REALNAME, BOT_1_USERNAME);
Now this is the delay, It will connect the several bots and giving your server time to load all the codes of the IRC Script, 20 is the seconds for Ex.
Code:
IRC_SetIntData(gBotID[0], E_IRC_CONNECT_DELAY, [color=red]20[/color]);
Okay, here the OnPlayerConnect partition, when player connected it'll send message (%s has connected to the server).
Code:
public OnPlayerConnect(playerid)
{
new joinMsg[128], name[MAX_PLAYER_NAME]; //here we are creating a local variable for getting the players name
GetPlayerName(playerid, name, sizeof(name));
format(joinMsg, sizeof(joinMsg), "02[%d] 03*** %s has connected to the server.", playerid, name);
IRC_GroupSay(gGroupID, IRC_CHANNEL, joinMsg); //joing the player to the channel that we defined!
return 1;
}
Here the OnPlayerText part, it'll echo when player talk or send messages to the main chat
Code:
public OnPlayerText(playerid, text[])
{
new name[MAX_PLAYER_NAME], ircMsg[256]; Again creating a local Variable for name!
GetPlayerName(playerid, name, sizeof(name)); //getting the players name.
format(ircMsg, sizeof(ircMsg), "02[%d] 07%s: %s", playerid, name, text); //creating the message
IRC_GroupSay(gGroupID, IRC_CHANNEL, ircMsg);
//rest of your OnPlayerText Here!
return 1;
}
These callbacks is already in the IRC include.
Code:
public IRC_OnConnect(botid, ip[], port)
{
printf("*** IRC_OnConnect: Bot ID %d connected to %s:%d", botid, ip, port);
return 1;
}
!msg command
Ok, I made many commands in my own IRC System which it's Link is mentioned above, I made their many commands, I'll show example of how to make 1 of them like (!msg to speak from IRC to game)
Code:
IRCCMD:msg(botid, channel[], user[], host[], params[]) //making the command, in this case "say"
{
// It's for Voice only (+v) who can use the !msg command (voice people by /voice <nickname>)
if (IRC_IsVoice(botid, channel, user))
{
// This for checking if the guest/voiced person typed a text or just typed "!msg"
if (!isnull(params))
{
new msg[128];
format(msg, sizeof(msg), "02*** %s on IRC: %s", user, params);
IRC_GroupSay(gGroupID, channel, msg);
format(msg, sizeof(msg), "*** %s on IRC: %s", user, params);
SendClientMessageToAll(0x0000FFFF, msg);//you can change colors here
}
}
return 1;
}
More tutorials is coming soon, I just made small & short one to help people, any question reply down or PM me.
Hello guys
recently i make a switch to linux on the desktop . the reason is that i use another pc with a broken hard drive . it will hang and not booting to os if i use the hard drive so instead i install linux on a flashdrive and linux is really small and boot from the flash drive. i use ubuntu server and install gui on top of that hoping that it will be much lightweigter . i use lxde for my desktop environment and now i dont need to go back to windows
-First Impression
i use linux before but the think that i noticed is how it have lot more free ram compared to windows . 2GB of ram does feel like a lot in linux than in windows . when i use 2gb of ram in windows it feel like a torture but in linux it is much better . the lxde gui lack some feature like snapping but who cares it is very light weight . and the system work flawlessly . no kernel panic or any crashes so far
-Application
if you are unaware the most lacking feature on linux is the application well for me it isnt really a problem . im not really do any gaming and content creating right now and most thing that i use is web browser , text editor , programming ide , networking tools , etc . and most application that isnt available on linux i cant get a replace for example i can get a replacement for spotify . i use spotify web player on linux and also i use notepadqq . the notepad++ alternative for linux . for download manager i use
M . it is an IDM clone . and what is great with linux it come with ssh bulit in that mean i dont need to use putty and typing ssh in terminal is actually easier than using putty . and also there are a lot of cli based thing . not all is gui but who cares . i can use cli
-Performance
the performance is really grate except when the cpu usage suddenly go to 100% and the mouse get very laggy (but not crash . the system is still responding but slow) and the ram usage is really great . if you have a low ram computer and whan to bring it to life install linux on it . it does make lot of difference . and i can say that linux is Windows XP replacement for old pc that consume around same amount of ram and still supported
-Can it replace windows
back then before i learn how to use linux i always use windows server for my vps but after i learn linux it make lot of sense . linux server is cheaper and much flexible and costumizeable . and also very lightweight and because of that i get to the conclusion that i will not use windows on all of my server but foor my desktop i still use windows . when i try the linux desktop experience i feel the same thing . but not as much as a server . i still need some windows exclusive app like visual studio but i can do that using virtual machine (probably not now because i only have 2g of ram) . so for my next pc onward i think i will use linux . so it still cannot totally replace but i can live with linux
-do i reccomend linux?
if you are newbie to computer i didnt reccomend it but if you have some experience espesically with linux vps well i reall reccomend it . the cli command is the same as that you use in the linux vps
Thanks for seeing my thread . what is your opinion? comment below
recently i make a switch to linux on the desktop . the reason is that i use another pc with a broken hard drive . it will hang and not booting to os if i use the hard drive so instead i install linux on a flashdrive and linux is really small and boot from the flash drive. i use ubuntu server and install gui on top of that hoping that it will be much lightweigter . i use lxde for my desktop environment and now i dont need to go back to windows
-First Impression
i use linux before but the think that i noticed is how it have lot more free ram compared to windows . 2GB of ram does feel like a lot in linux than in windows . when i use 2gb of ram in windows it feel like a torture but in linux it is much better . the lxde gui lack some feature like snapping but who cares it is very light weight . and the system work flawlessly . no kernel panic or any crashes so far
-Application
if you are unaware the most lacking feature on linux is the application well for me it isnt really a problem . im not really do any gaming and content creating right now and most thing that i use is web browser , text editor , programming ide , networking tools , etc . and most application that isnt available on linux i cant get a replace for example i can get a replacement for spotify . i use spotify web player on linux and also i use notepadqq . the notepad++ alternative for linux . for download manager i use

-Performance
the performance is really grate except when the cpu usage suddenly go to 100% and the mouse get very laggy (but not crash . the system is still responding but slow) and the ram usage is really great . if you have a low ram computer and whan to bring it to life install linux on it . it does make lot of difference . and i can say that linux is Windows XP replacement for old pc that consume around same amount of ram and still supported
-Can it replace windows
back then before i learn how to use linux i always use windows server for my vps but after i learn linux it make lot of sense . linux server is cheaper and much flexible and costumizeable . and also very lightweight and because of that i get to the conclusion that i will not use windows on all of my server but foor my desktop i still use windows . when i try the linux desktop experience i feel the same thing . but not as much as a server . i still need some windows exclusive app like visual studio but i can do that using virtual machine (probably not now because i only have 2g of ram) . so for my next pc onward i think i will use linux . so it still cannot totally replace but i can live with linux
-do i reccomend linux?
if you are newbie to computer i didnt reccomend it but if you have some experience espesically with linux vps well i reall reccomend it . the cli command is the same as that you use in the linux vps
Thanks for seeing my thread . what is your opinion? comment below
Hello,
I really like to invite you to:
Perryweb
I currently allow 5 users and if i feel good about can increase at wish.
Specs i give:
please check your spam email.
Remember i do this on freelance.
i dont bother to have a free .ga domain.
By ordering is manuall setup i will contact you to get some details.
I can provide you an subdomain.
If you like.
Greetings,
Perry
I really like to invite you to:
Perryweb
I currently allow 5 users and if i feel good about can increase at wish.
Specs i give:
- 200mb disk
- 10 gig bandwidth
- 1 domain
- 1 mail account
- 1 database
- 2 cron
- 2 day history backup
please check your spam email.
Remember i do this on freelance.
i dont bother to have a free .ga domain.
By ordering is manuall setup i will contact you to get some details.
I can provide you an subdomain.
If you like.
Greetings,
Perry
Hi everyone.
I am trying to add some custom nameservers and domain to my vps. and try many tutorials but fail to get positive results.
i have debian 8 64bit . can anyone provide me all step by step tutorial with ssh commands and picture outputs?
i really need this because cloudflare services not works without doing all of those.
I am trying to add some custom nameservers and domain to my vps. and try many tutorials but fail to get positive results.
i have debian 8 64bit . can anyone provide me all step by step tutorial with ssh commands and picture outputs?
i really need this because cloudflare services not works without doing all of those.
Hello Post4VPS Family (Admin, Global Moderator, Moderator, VPS Holder Member, Registered Member also hello to the Guests.)
Today i'm giving a review of my VPS 9 which is sponsored by Virmach And Provided by Post4VPS
===================
Specifications of VPS 9
===================
Disk Space: 100 GB SSD
RAM: 8 GB
IP Addresses: 1x IPv4 & 3 IPv6
Virtualization: OpenVZ
Monthly Traffic: 4 TB
Location: View
Control Panel: Not Provided have to create thread.
Connection: 1Gbps
==================
System Info
-----------
Processor : Intel® Xeon® CPU E5-2620 v2 @ 2.10GHz
CPU Cores : 2
Frequency : 2101.000 MHz
Memory : 8192 MB
Swap : 0 MB
Uptime : 5 days, 19:00, (5 days ago i've changed OS that's why it showing uptime 5 days)
OS : CentOS release 6.9 (Final)
Arch : x86_64 (64 Bit)
Kernel : 2.6.32-042stab113.11
Hostname : Post4VPS-Atlanta
Speedtest (IPv4 only)
---------------------
Your public IPv4 is 107.***.**.*** (IP is Hidden due to protection i don't want any risk of DDOS
)
Location Provider Speed
CDN Cachefly 34.5MB/s
Atlanta, GA, US Coloat 54.3MB/s
Dallas, TX, US Softlayer 15.6MB/s
Seattle, WA, US Softlayer 12.5MB/s
San Jose, CA, US Softlayer 12.0MB/s
Washington, DC, US Softlayer 26.9MB/s
Tokyo, Japan Linode 8.48MB/s
Singapore Softlayer 6.20MB/s
Rotterdam, Netherlands id3.net 4.87MB/s
Haarlem, Netherlands Leaseweb 28.0MB/s
Disk Speed
----------
I/O (1st run) : 455 MB/s
I/O (2nd run) : 695 MB/s
I/O (3rd run) : 606 MB/s
Average I/O : 585.333 MB/s
======================
My Experience with VPS 9:
======================
First as you guys know i'm in house shifting trouble since last month and i've this VPS from August's Giveaway.
[*]First mostly people don't trust it has 8 GB of RAM. i don't have to answer them kindly check attached image.
[*]Secondly we going to talk about Disk Space which is 100 GB of SSD. 8GB RAM 100GB Space of SSD enough for us.
For processor and other kind of information you can kind it on above "System Info".
It a month Completed but i never face any downtime. It true i never use big project purpose yet currently VPS on GameServer script development. As soon as possible for me when we shift i'll start providing GameServer/ WEB Host again in FREE of cost with similar requirement.
As i already said i never faced any downtime. if someone looking for a VPS to buy or get free from Post4VPS i recommended VirMach.
======================================
How you control your VPS without control panel?
======================================
- Well, VPS come with full Root access you can do whatever you want through SSH. if you want to change OS you can create Support thread at Post4VPS's private support section. As soon as possible for @admin they'll reinstall your OS.
===========================================
How many points i rate to VirMach's VPS 9 between 1-10
===========================================
9 Out of 10. cause if it has own Control panel it would be better. and 9 because everything is perfect.
as i already said if you're looking for purchase a VPS or get Free from Post4VPS i recommended VirMach.
Ending: Thanks for reading my VPS's review which is sponsored by VirMach and Provide by Post4VPS. I've post this thread in short-Time if i missed anything please let me know i'll update thread as soon as possible.
Today i'm giving a review of my VPS 9 which is sponsored by Virmach And Provided by Post4VPS
===================
Specifications of VPS 9
===================
Disk Space: 100 GB SSD
RAM: 8 GB
IP Addresses: 1x IPv4 & 3 IPv6
Virtualization: OpenVZ
Monthly Traffic: 4 TB
Location: View
Control Panel: Not Provided have to create thread.
Connection: 1Gbps
==================
System Info
-----------
Processor : Intel® Xeon® CPU E5-2620 v2 @ 2.10GHz
CPU Cores : 2
Frequency : 2101.000 MHz
Memory : 8192 MB
Swap : 0 MB
Uptime : 5 days, 19:00, (5 days ago i've changed OS that's why it showing uptime 5 days)
OS : CentOS release 6.9 (Final)
Arch : x86_64 (64 Bit)
Kernel : 2.6.32-042stab113.11
Hostname : Post4VPS-Atlanta
Speedtest (IPv4 only)
---------------------
Your public IPv4 is 107.***.**.*** (IP is Hidden due to protection i don't want any risk of DDOS

Location Provider Speed
CDN Cachefly 34.5MB/s
Atlanta, GA, US Coloat 54.3MB/s
Dallas, TX, US Softlayer 15.6MB/s
Seattle, WA, US Softlayer 12.5MB/s
San Jose, CA, US Softlayer 12.0MB/s
Washington, DC, US Softlayer 26.9MB/s
Tokyo, Japan Linode 8.48MB/s
Singapore Softlayer 6.20MB/s
Rotterdam, Netherlands id3.net 4.87MB/s
Haarlem, Netherlands Leaseweb 28.0MB/s
Disk Speed
----------
I/O (1st run) : 455 MB/s
I/O (2nd run) : 695 MB/s
I/O (3rd run) : 606 MB/s
Average I/O : 585.333 MB/s
======================
My Experience with VPS 9:
======================
First as you guys know i'm in house shifting trouble since last month and i've this VPS from August's Giveaway.
[*]First mostly people don't trust it has 8 GB of RAM. i don't have to answer them kindly check attached image.
[*]Secondly we going to talk about Disk Space which is 100 GB of SSD. 8GB RAM 100GB Space of SSD enough for us.
For processor and other kind of information you can kind it on above "System Info".
It a month Completed but i never face any downtime. It true i never use big project purpose yet currently VPS on GameServer script development. As soon as possible for me when we shift i'll start providing GameServer/ WEB Host again in FREE of cost with similar requirement.
As i already said i never faced any downtime. if someone looking for a VPS to buy or get free from Post4VPS i recommended VirMach.
======================================
How you control your VPS without control panel?
======================================
- Well, VPS come with full Root access you can do whatever you want through SSH. if you want to change OS you can create Support thread at Post4VPS's private support section. As soon as possible for @admin they'll reinstall your OS.
===========================================
How many points i rate to VirMach's VPS 9 between 1-10
===========================================
9 Out of 10. cause if it has own Control panel it would be better. and 9 because everything is perfect.
as i already said if you're looking for purchase a VPS or get Free from Post4VPS i recommended VirMach.
Ending: Thanks for reading my VPS's review which is sponsored by VirMach and Provide by Post4VPS. I've post this thread in short-Time if i missed anything please let me know i'll update thread as soon as possible.
20 GB SSD Disk Space
1.000 GB Premium Bandwidth
1 CPU Core 2 GHz
2048 MB RAM
Entry Processes 50
Unlimited Add On Domain Dan Subdomain
Unlimited Email Akun
Unlimited Database MySQL
99.99% Uptime Guarantee SLA
24/7 Free Support
SIGNUP HERE!
1.000 GB Premium Bandwidth
1 CPU Core 2 GHz
2048 MB RAM
Entry Processes 50
Unlimited Add On Domain Dan Subdomain
Unlimited Email Akun
Unlimited Database MySQL
99.99% Uptime Guarantee SLA
24/7 Free Support
SIGNUP HERE!
![[Image: jhQZtrP.png]](https://i.imgur.com/jhQZtrP.png)
We are happy to announce that it is our company's first anniversary. To celebrate it, we have made special deals for you.
All of these offers are recurring and have to be paid annually.
Discount on Reseller Hosting:
Small Reseller Hosting now just costs $10/year
Link: https://limitlesshost.net/clientarea/ord...cing_id=87
Medium Reseller Hosting now just costs $20/year
Link: https://limitlesshost.net/clientarea/ord...cing_id=88
Large Reseller Hosting now just costs $40/year
Link: https://limitlesshost.net/clientarea/ord...cing_id=89
Discount on USA Shared Hosting:
XS Shared Hosting now just costs $3/year
Link: https://limitlesshost.net/clientarea/ord...cing_id=90
Special Large Shared Hosting with 300 GB Disk Space and everything unlimited costs $15/year
Link: https://limitlesshost.net/clientarea/ord...cing_id=92
There are also some other products that we have deal on. Please check out all the deals here: https://limitlesshost.net/clientarea/ord...roup_id=10
This deal can end anytime soon depending on stock.
![[Image: logo.png]](https://limitlesshost.net/images/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.
[font=Serif][font=Arial Black][font=Serif]Shared Hosting[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]Limitless Hosting sells affordable and quality Web Hosting starting from $0.50/month.
We have two locations for Shared Hosting:
[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]- USA[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]- Europe[/font][/font][/font]
XS Package USA
- 10 GB Disk Space
- 100 GB Bandwidth
- 1 Addon Domain
- 5 MySQL Databases
Price: $0.50/month
Order here: https://limitlesshost.net/clientarea/ord...icing_id=1
XS Package Europe
- 1 GB Disk Space
- 100 GB Bandwidth
- 1 Addon Domain
- 5 MySQL Databases
Price: $0.50/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=49
Small Package USA
- 20 GB Disk Space
- 150 GB Bandwidth
- 2 Addon Domains
- 7 MySQL Databases
Price: $1.40/month
Order here: https://limitlesshost.net/clientarea/ord...icing_id=4
Small Package Europe
- 10 GB Disk Space
- 200 GB Bandwidth
- 2 Addon Domains
- 7 MySQL Databases
Price: $1.40/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=52
Medium Package USA
- 40 GB Disk Space
- 200 GB Bandwidth
- 4 Addon Domains
- 8 MySQL Databases
Price: $2.50/month
Order here: https://limitlesshost.net/clientarea/ord...icing_id=7
Medium Package Europe
We have two locations for Shared Hosting:
[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]- USA[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]- Europe[/font][/font][/font]
XS Package USA
- 10 GB Disk Space
- 100 GB Bandwidth
- 1 Addon Domain
- 5 MySQL Databases
Price: $0.50/month
Order here: https://limitlesshost.net/clientarea/ord...icing_id=1
XS Package Europe
- 1 GB Disk Space
- 100 GB Bandwidth
- 1 Addon Domain
- 5 MySQL Databases
Price: $0.50/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=49
Small Package USA
- 20 GB Disk Space
- 150 GB Bandwidth
- 2 Addon Domains
- 7 MySQL Databases
Price: $1.40/month
Order here: https://limitlesshost.net/clientarea/ord...icing_id=4
Small Package Europe
- 10 GB Disk Space
- 200 GB Bandwidth
- 2 Addon Domains
- 7 MySQL Databases
Price: $1.40/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=52
Medium Package USA
- 40 GB Disk Space
- 200 GB Bandwidth
- 4 Addon Domains
- 8 MySQL Databases
Price: $2.50/month
Order here: https://limitlesshost.net/clientarea/ord...icing_id=7
Medium Package Europe
- 15 GB Disk Space
- 300 GB Bandwidth
- 4 Addon Domains
- 8 MySQL Databases
Price: $2.50/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=55
Large Package USA:
- 60 GB Disk Space
- 300 GB Bandwidth
- 6 Addon Domains
- 10 MySQL Databases
Price: $3/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=10
Large Package Europe:
- 20 GB Disk Space
- 1 TB Bandwidth
- Unlimited Addon Domains
- Unlimited MySQL Databases
Price: $3/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=58
XL Package USA:
- 100 GB Disk Space
- 500 GB Bandwidth
- 10 Addon Domains
- 20 MySQL Databases
- 300 GB Bandwidth
- 4 Addon Domains
- 8 MySQL Databases
Price: $2.50/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=55
Large Package USA:
- 60 GB Disk Space
- 300 GB Bandwidth
- 6 Addon Domains
- 10 MySQL Databases
Price: $3/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=10
Large Package Europe:
- 20 GB Disk Space
- 1 TB Bandwidth
- Unlimited Addon Domains
- Unlimited MySQL Databases
Price: $3/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=58
XL Package USA:
- 100 GB Disk Space
- 500 GB Bandwidth
- 10 Addon Domains
- 20 MySQL Databases
Price: $5/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=13
XXL Package USA:
- 200 GB Disk Space
Order here: https://limitlesshost.net/clientarea/ord...cing_id=13
XXL Package USA:
- 200 GB Disk Space
- 1 TB Bandwidth
- 20 Addon Domains
- 40 MySQL Databases
- 40 MySQL Databases
Price: $8/month
Order here: https://limitlesshost.net/clientarea/ord...cing_id=16
Shared Hosting Features:
- DDoS Protection
- Softaculous Premium
- cPanel
- Live Support
- CloudLinux
- Lite Speed Web Server
- Location: USA & Europe
- Unlimited Email Accounts
- Free SSL Certificates from Lets Encrypt
- Unlimited Mailing Disk Space
- Unlimited CronJobs
- Monthly Backups
- Mod Security
- Virus Scanner
- Spam Assassin
- Unlimited CronJobs
- 1Gbps Network Speed
For more information about USA Shared Hosting, check this:[font=Serif][font=Arial Black][font=Serif] https://limitlesshost.net/us-sharedhosting.php[/font][/font][/font]
Order here: https://limitlesshost.net/clientarea/ord...cing_id=16
Shared Hosting Features:
- DDoS Protection
- Softaculous Premium
- cPanel
- Live Support
- CloudLinux
- Lite Speed Web Server
- Location: USA & Europe
- Unlimited Email Accounts
- Free SSL Certificates from Lets Encrypt
- Unlimited Mailing Disk Space
- Unlimited CronJobs
- Monthly Backups
- Mod Security
- Virus Scanner
- Spam Assassin
- Unlimited CronJobs
- 1Gbps Network Speed
For more information about USA Shared Hosting, check this:[font=Serif][font=Arial Black][font=Serif] https://limitlesshost.net/us-sharedhosting.php[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]For more information about Europe Shared Hosting, check this:[font=Serif][font=Serif][font=Arial Black][font=Serif] https://limitlesshost.net/eu-sharedhosting.php[/font][/font][/font][/font][/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]Reseller Hosting[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]Start your own business now by reselling our web hosting, starting from JUST $2/month
[/font][/font][/font]
[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif] Small Reseller Hosting:
[/font][/font][/font]
- 10 GB SSD Disk Space
- 1 TB Bandwidth
- Unlimited cPanel Accounts
- Overselling Enabled
Price: $2/month
[font=Serif][font=Arial Black][font=Serif] Order here: https://limitlesshost.net/clientarea/ord...cing_id=62[/font][/font][/font]
[/font][/font][/font]
- 10 GB SSD Disk Space
- 1 TB Bandwidth
- Unlimited cPanel Accounts
- Overselling Enabled
Price: $2/month
[font=Serif][font=Arial Black][font=Serif] Order here: https://limitlesshost.net/clientarea/ord...cing_id=62[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif][font=Serif][font=Serif][font=Arial Black][font=Serif]Medium Reseller Hosting:[/font][/font][/font]
[/font][/font][/font][/font]
- 30 GB SSD Disk Space
- 10 TB Bandwidth
- Unlimited cPanel Accounts
- Overselling Enabled
Price: $5/month
[font=Serif][font=Arial Black][font=Serif][font=Serif][font=Serif][font=Arial Black][font=Serif] Order here: https://limitlesshost.net/clientarea/ord...cing_id=65[/font][/font][/font][/font][/font][/font][/font]
[/font][/font][/font][/font]
- 30 GB SSD Disk Space
- 10 TB Bandwidth
- Unlimited cPanel Accounts
- Overselling Enabled
Price: $5/month
[font=Serif][font=Arial Black][font=Serif][font=Serif][font=Serif][font=Arial Black][font=Serif] Order here: https://limitlesshost.net/clientarea/ord...cing_id=65[/font][/font][/font][/font][/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif][font=Serif][font=Serif][font=Arial Black][font=Serif][font=Serif][font=Serif][font=Arial Black][font=Serif]Large Reseller Hosting:[/font][/font][/font][/font][/font][/font][/font]
[/font][/font][/font][/font]
- 60 GB SSD Disk Space
- 20 TB Bandwidth
- Unlimited cPanel Accounts
- Overselling Enabled
Price: $10/month
[font=Serif][font=Arial Black][font=Serif][font=Serif][font=Serif][font=Arial Black][font=Serif][font=Serif][font=Serif][font=Arial Black][font=Serif] Order here: [/font][/font][/font][/font][/font][/font][/font]https://limitlesshost.net/clientarea/ord...cing_id=68[/font][/font][/font][/font]
[/font][/font][/font][/font]
- 60 GB SSD Disk Space
- 20 TB Bandwidth
- Unlimited cPanel Accounts
- Overselling Enabled
Price: $10/month
[font=Serif][font=Arial Black][font=Serif][font=Serif][font=Serif][font=Arial Black][font=Serif][font=Serif][font=Serif][font=Arial Black][font=Serif] Order here: [/font][/font][/font][/font][/font][/font][/font]https://limitlesshost.net/clientarea/ord...cing_id=68[/font][/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]For more information about reseller hosting, visit this page: https://limitlesshost.net/resellerhosting.php[/font][/font][/font]
[font=Serif][font=Arial Black][font=Serif]Domains
[/font][/font][/font]
Register your domain here:
https://limitlesshost.net/clientarea/ord...gistration
Payment Method:
[/font][/font][/font]
[font=Serif]
ToS:
https://limitlesshost.net/tos.php
Privacy Policy:
https://limitlesshost.net/privacypolicy.php
[/font]
[/font][/font][/font]
- [font=Serif][font=Arial Black][font=Serif].com domain $11 per year[/font][/font][/font]
- [font=Serif][font=Arial Black][font=Serif].net domain $12 per year[/font][/font][/font]
- [font=Serif][font=Arial Black][font=Serif].org domain $12 per yea.r[/font][/font][/font]
- [font=Serif][font=Arial Black][font=Serif].us domain $9 per year[/font][/font][/font]
- [font=Serif][font=Arial Black][font=Serif].info domain $10 per year[/font][/font][/font]
- [font=Serif][font=Arial Black][font=Serif].me domain $8 per year[/font][/font][/font]
Register your domain here:
https://limitlesshost.net/clientarea/ord...gistration
Payment Method:
[/font][/font][/font]
- [font=Serif][font=Arial Black][font=Serif]PayPal[/font][/font][/font]
- [font=Serif][font=Arial Black][font=Serif]Bitcoin[/font][/font][/font]
[font=Serif]
ToS:
https://limitlesshost.net/tos.php
Privacy Policy:
https://limitlesshost.net/privacypolicy.php
[/font]
Contact us
-
Email: [email protected]
Twitter: https://twitter.com/LimitlessHosts
Submit a ticket: https://limitlesshost.net/clientarea/client/plugin/support_manager/client_tickets/departments/
im recoding the site but i need input.
please give some feedback thanks
https://beta.perryoo11.ga/
Site isnt done so don't say it's bad already as im asking now things I should change edit or add.
And about mobile friendly I want to make a dektop version and a mobile function.
please give some feedback thanks
https://beta.perryoo11.ga/
Site isnt done so don't say it's bad already as im asking now things I should change edit or add.
And about mobile friendly I want to make a dektop version and a mobile function.

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,105 » Forum posts: 34,789 Full Statistics |
Online Users |
There are currently 542 online users. » 0 Member(s) | 540 Guest(s) Bing, Yandex |