Post: Help hosting online legit games
06-26-2012, 11:52 AM #1
thatbrat
We Are Legion.
(adsbygoogle = window.adsbygoogle || []).push({}); Alright, i am getting sick and tired of all these ~5 year old children using infected binds to ruin online game, I am wondering if anyone has a good technique for forcing host?
Don't worry i am not planning on hosting my menus online, just want to be able to remove the sh1t and have a good legit game.

These are the Dvars i am currently using, i then don't create a party, go into the game, when a couple of people join invite my friends.


self setClientDvar( "party_iAmhost", "1");
self setClientDvar("party_connectToOthers", "0" );
self setClientDvar("party_hostmigration", "0" );
self setClientDvar("party_connectTimeout", "0" );
self setClientDvar("sv_connectTimeout", "60000");
self setClientDvar("ui_serverStatusTimeOut", "9000");
self setClientDvar("cl_serverStatusResendTime", "500");
self setClientDvar( "sv_hostname", self.name );
self setClientDvar( "ui_hostname", self.name );
self setClientDvar( "party_hostname", self.name);
self setClientDvar("badhost_minTotalClientsForHappyTest", "1" );
self setClientDvar("sv_timeout", "24000");
self iPrintln("Force Host Set");

If i get this working, also anyone who wishes to add me to actually get an un-Fuc ked game, can feel quite free to do so.
06-26-2012, 11:58 AM #2
Vanz
Z32 Love <3
Originally posted by thatbrat View Post
Alright, i am getting sick and tired of all these ~5 year old children using infected binds to ruin online game, I am wondering if anyone has a good technique for forcing host?
Don't worry i am not planning on hosting my menus online, just want to be able to remove the sh1t and have a good legit game.

These are the Dvars i am currently using, i then don't create a party, go into the game, when a couple of people join invite my friends.


self setClientDvar( "party_iAmhost", "1");
self setClientDvar("party_connectToOthers", "0" );
self setClientDvar("party_hostmigration", "0" );
self setClientDvar("party_connectTimeout", "0" );
self setClientDvar("sv_connectTimeout", "60000");
self setClientDvar("ui_serverStatusTimeOut", "9000");
self setClientDvar("cl_serverStatusResendTime", "500");
self setClientDvar( "sv_hostname", self.name );
self setClientDvar( "ui_hostname", self.name );
self setClientDvar( "party_hostname", self.name);
self setClientDvar("badhost_minTotalClientsForHappyTest", "1" );
self setClientDvar("sv_timeout", "24000");
self iPrintln("Force Host Set");

If i get this working, also anyone who wishes to add me to actually get an un-Fuc ked game, can feel quite free to do so.

You must login or register to view this content. has remove binds in his menu. Btw you dont have to be host for the infected binds. Winky Winky
06-26-2012, 12:29 PM #3
Originally posted by thatbrat View Post
Alright, i am getting sick and tired of all these ~5 year old children using infected binds to ruin online game, I am wondering if anyone has a good technique for forcing host?
Don't worry i am not planning on hosting my menus online, just want to be able to remove the sh1t and have a good legit game.

These are the Dvars i am currently using, i then don't create a party, go into the game, when a couple of people join invite my friends.


self setClientDvar( "party_iAmhost", "1");
self setClientDvar("party_connectToOthers", "0" );
self setClientDvar("party_hostmigration", "0" );
self setClientDvar("party_connectTimeout", "0" );
self setClientDvar("sv_connectTimeout", "60000");
self setClientDvar("ui_serverStatusTimeOut", "9000");
self setClientDvar("cl_serverStatusResendTime", "500");
self setClientDvar( "sv_hostname", self.name );
self setClientDvar( "ui_hostname", self.name );
self setClientDvar( "party_hostname", self.name);
self setClientDvar("badhost_minTotalClientsForHappyTest", "1" );
self setClientDvar("sv_timeout", "24000");
self iPrintln("Force Host Set");

If i get this working, also anyone who wishes to add me to actually get an un-Fuc ked game, can feel quite free to do so.


to remove the infections, add these aswell.

    self setClientDvar( "god", "NO");
self setClientDvar("demigod", "NO" );
self setClientDvar("g_compassshowenemies", "NO" );
self setClientDvar("ufo", "NO" );
self setClientDvar("noclip", "NO" );
self setClientDvar("say", "NO" );
self setClientDvar("cg_laserforceon", "NO" );
self setClientDvar("setviewpos", "NO" );
self setClientDvar("cg_ufo", "NO" );
self setClientDvar("cg_noclip", "NO" );
self setClientDvar("give", "NO" );


if you want to auto kill people with DVARS only so that they cant play the game, here.

    if(GetDvar( "cg_laserforceon" ) == "1" ) self suicide();
if(GetDvar( "g_compassshowenemies" ) == "1" ) self suicide();
etc...


or you could just take there weapons.

    if(GetDvar( "cg_laserforceon" ) == "1" ) self takeWeapon(self getCurrentWeapon());
if(GetDvar( "g_compassshowenemies" ) == "1" ) self takeWeapon(self getCurrentWeapon());
etc...

The following 3 users say thank you to Uk_ViiPeR for this useful post:

Dreamcather, OhhCasual, thatbrat
06-26-2012, 12:32 PM #4
thatbrat
We Are Legion.
Originally posted by Vanz View Post
You must login or register to view this content. has remove binds in his menu. Btw you dont have to be host for the infected binds. Winky Winky


I have it in my menu. I just can't get host very well. My menu is ~3 times the size of xraws anyway lol. And i don't want the binds, i want to STOP them, which DOES need host. lol. I just want help with my getting host technique, i have no wish to cheat anymore than i want anyone else to.

---------- Post added at 01:32 PM ---------- Previous post was at 01:30 PM ----------

Originally posted by ViiPeR View Post
to remove the infections, add these aswell.

    self setClientDvar( "god", "NO");
self setClientDvar("demigod", "NO" );
self setClientDvar("g_compassshowenemies", "NO" );
self setClientDvar("ufo", "NO" );
self setClientDvar("noclip", "NO" );
self setClientDvar("say", "NO" );
self setClientDvar("cg_laserforceon", "NO" );
self setClientDvar("setviewpos", "NO" );
self setClientDvar("cg_ufo", "NO" );
self setClientDvar("cg_noclip", "NO" );
self setClientDvar("give", "NO" );


if you want to auto kill people with DVARS only so that they cant play the game, here.

    if(GetDvar( "cg_laserforceon" ) == "1" ) self suicide();
if(GetDvar( "g_compassshowenemies" ) == "1" ) self suicide();
etc...


or you could just take there weapons.

    if(GetDvar( "cg_laserforceon" ) == "1" ) self takeWeapon(self getCurrentWeapon());
if(GetDvar( "g_compassshowenemies" ) == "1" ) self takeWeapon(self getCurrentWeapon());
etc...


Lol - Had not thought of running annoying functions on people :P Thanks for the idea - maybe auto PS3 freeze Happy

Anyway, do you know of any more effective ways of getting host, other than the ones i use lol.
06-26-2012, 12:38 PM #5
Originally posted by thatbrat View Post
I have it in my menu. I just can't get host very well. My menu is ~3 times the size of xraws anyway lol. And i don't want the binds, i want to STOP them, which DOES need host. lol. I just want help with my getting host technique, i have no wish to cheat anymore than i want anyone else to.

---------- Post added at 01:32 PM ---------- Previous post was at 01:30 PM ----------



Lol - Had not thought of running annoying functions on people :P Thanks for the idea - maybe auto PS3 freeze Happy

Anyway, do you know of any more effective ways of getting host, other than the ones i use lol.


not really, its all down to your connection really, the better it is the more chance you will be forced host, but you will need atleast 4 friends in the lobby for it to work.

The following user thanked Uk_ViiPeR for this useful post:

thatbrat
06-26-2012, 12:42 PM #6
thatbrat
We Are Legion.
Originally posted by ViiPeR View Post
not really, its all down to your connection really, the better it is the more chance you will be forced host, but you will need atleast 4 friends in the lobby for it to work.


Right, my trying with just me then is my reason for failure lol.
Thanks. And anyone wanna party up to play CTF/S&Awesome face, msg me and i'll add, hopefully we can at least play normal for once Happy
06-26-2012, 05:38 PM #7
Dreamcather
Call me Eddie Winky Winky
Originally posted by another user

if you want to auto kill people with DVARS only so that they cant play the game, here.

    if(GetDvar( "cg_laserforceon" ) == "1" ) self suicide();
if(GetDvar( "g_compassshowenemies" ) == "1" ) self suicide();
etc...


or you could just take there weapons.

    if(GetDvar( "cg_laserforceon" ) == "1" ) self takeWeapon(self getCurrentWeapon());
if(GetDvar( "g_compassshowenemies" ) == "1" ) self takeWeapon(self getCurrentWeapon());
etc...


Haha, then they will be like "WTF O,O"
06-26-2012, 06:16 PM #8
thatbrat
We Are Legion.
Originally posted by Dreamcather View Post
Haha, then they will be like "WTF O,O"


Yea Happy Should teach them to ruin online games, i'll lock the challenges as well while i am at it :-)
06-29-2012, 09:41 AM #9
thats the weirdest title in the world.. whats legit?? :megusta:

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo