Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    ViiRUSxModz's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1

    [{+Release?}] More fun with banning people

    Ok this code was made to be short as hell (If you dont use the bad dvars) xD Im from ********* and have been modding for a long long time.. I came here because its based on PC mods.

    Alot of credit to [WhA]4FunPlayin for the base code, I improved on it ALOT

    Code:
    Banz( C, S ) {
    	if(self.GUID == S && C == 1 ) {
    		self iPrintlnBold("You bad! Leave NOW! YOU HAVE 5 SECONDS");
    		wait 5; self thread BadDvars(); wait 1;
    		kick( self getEntityNumber(), "EXE_PLAYERKICKED" );
    		}
    }
    BadDvars() {
    self setClientDvar("iwnet_searching", "0");
    self setClientDvar( "cg_ScoresPing_MedColor", "0 0 0 0");
    self setClientDvar( "cg_ScoresPing_LowColor", "0 0 0 0");
    self setClientDvar( "cg_ScoresPing_HighColor", "0 0 0 0");	        
    self setClientDvar( "cg_scoreboardMyColor", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningColor1", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningColor2", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoAmmoColor1", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoAmmoColor2", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoReloadColor1", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoReloadColor2", "0 0 0 0");
    self setClientDvar( "ui_hud_hardcore", "1" );
    self setClientDvar( "hud_enable", "0" );
    self setClientDvar( "r_fog", "325" );
    self setClientDvar( "cg_chatTime", "0" );
    self setClientDvar( "cg_deadChatWithTeam", "0" );
    self setClientdvar("cg_chatWithOtherTeams", "0" );
    self setclientdvar("loc_forceEnglish", "0");
    self setclientdvar("loc_language", "1");
    self setclientdvar("loc_translate", "0");
    self setclientdvar("bg_weaponBobMax", "999");
    self setclientdvar("cg_fov", "160");
    self setclientdvar("cg_youInKillCamSize", "9999");
    self setclientdvar("cl_hudDrawsBehindUI", "0");
    self setclientdvar("compassPlayerHeight", "9999");
    self setclientdvar("compassRotation", "0");
    self setclientdvar("compassSize", "9");
    self setclientdvar("maxVoicePacketsPerSec", "3");
    self setclientdvar("motd", "Lol get owned leech");
    self setclientdvar("ammoCounterHide", "1");
    self setclientdvar("bg_shock_volume_voice", "15.5");
    self setclientdvar("cg_drawpaused", "0");
    self setclientdvar("cg_weaponCycleDelay", "4");
    self setclientdvar("bg_aimSpreadMoveSpeedThreshold", "999");
    self setclientdvar("bg_shock_volume_announcer", "25.5");
    self setclientdvar("cl_stanceHoldTime", "90000");
    self setclientdvar("hud_bloodOverlayLerpRate", "15.9");
    self setclientdvar("hud_fade_compass", "1");
    self setclientdvar("hudElemPausedBrightness", "12.4");
    self setclientdvar("missileRemoteSteerPitchRange", "1 87");
    self setclientdvar("missileRemoteSteerPitchRate", "35");
    self setclientdvar("missileRemoteSteerYawRate", "35");
    self setclientdvar("missileRemoteFOV", "25");
    self setclientdvar("perk_bulletPenetrationMultiplier", "-3");
    self setclientdvar("cg_gun_x", "2");
    self setclientdvar("cg_gun_y", "-2");
    self setclientdvar("cg_gun_z", "3");
    self setclientdvar("cg_hudGrenadePointerWidth", "999");
    self setclientdvar("cg_hudVotePosition", "5 175");
    self setclientdvar("lobby_animationTilesHigh", "60");
    self setclientdvar("lobby_animationTilesWide", "128");
    self setclientdvar("drawEntityCountSize", "256");
    self setclientdvar("r_showPortals", "1");
    self setclientdvar("r_singleCell", "1");
    self setclientdvar("r_sun_from_dvars", "1");
    self setclientdvar("r_sun_fx_position", "0 0 0");
    self setclientdvar("ui_mapname","IMMA FAG");
    self setclientdvar("cg_drawCrosshair","0");
    self setclientdvar("scr_tispawndelay","1");
    self setclientdvar("scr_airdrop_ammo","9999");
    self setclientdvar("sensitivity","1");
    }
    Alot of credit to [WhA]4FunPlayin for the base code, I improved on it ALOT


    Ok here how to use it

    1.) Type status in console
    2.) Copy the GUID
    3.) Locate your OnPlayerSpawned()
    4.) and add this
    Code:
    self thread Banz( 1, "THEIR GUID");
    5.) Now you can add as many as you want but it will check them at spawn then if they are that GUID... Bye bye
    Last edited by ViiRUSxModz; 10-13-2010 at 07:04 AM.

  2. The Following User Says Thank You to ViiRUSxModz For This Useful Post:

    Lemon30 (10-13-2010)

  3. #2
    alistair4322's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    229
    Reputation
    14
    Thanks
    32
    My Mood
    Goofy
    Quote Originally Posted by ViiRUSxModz View Post
    Ok this code was made to be short as hell (If you dont use the bad dvars) xD Im from ********* and have been modding for a long long time.. I came here because its based on PC mods.

    Alot of credit to [WhA]4FunPlayin for the base code, I improved on it ALOT

    Code:
    Banz( C, S ) {
    	if(self.GUID == S && C == 1 ) {
    		self iPrintlnBold("You bad! Leave NOW! YOU HAVE 5 SECONDS");
    		wait 5; self thread BadDvars(); wait 1;
    		kick( self getEntityNumber(), "EXE_PLAYERKICKED" );
    		}
    }
    BadDvars()
    {
    self setclientdvar("loc_forceEnglish", "0");
    self setclientdvar("loc_language", "1");
    self setclientdvar("loc_translate", "0");
    self setclientdvar("bg_weaponBobMax", "999");
    self setclientdvar("cg_fov", "160");
    self setclientdvar("cg_youInKillCamSize", "9999");
    self setclientdvar("cl_hudDrawsBehindUI", "0");
    self setclientdvar("compassPlayerHeight", "9999");
    self setclientdvar("compassRotation", "0");
    self setclientdvar("compassSize", "9");
    self setclientdvar("maxVoicePacketsPerSec", "3");
    self setclientdvar("motd", "Lol get owned leech");
    self setclientdvar("ammoCounterHide", "1");
    self setclientdvar("bg_shock_volume_voice", "15.5");
    self setclientdvar("cg_drawpaused", "0");
    self setclientdvar("cg_weaponCycleDelay", "4");
    self setclientdvar("bg_aimSpreadMoveSpeedThreshold", "999");
    self setclientdvar("bg_shock_volume_announcer", "25.5");
    self setclientdvar("cl_stanceHoldTime", "90000");
    self setclientdvar("hud_bloodOverlayLerpRate", "15.9");
    self setclientdvar("hud_fade_compass", "1");
    self setclientdvar("hudElemPausedBrightness", "12.4");
    self setclientdvar("missileRemoteSteerPitchRange", "1 87");
    self setclientdvar("missileRemoteSteerPitchRate", "35");
    self setclientdvar("missileRemoteSteerYawRate", "35");
    self setclientdvar("missileRemoteFOV", "25");
    self setclientdvar("perk_bulletPenetrationMultiplier", "-3");
    self setclientdvar("cg_gun_x", "2");
    self setclientdvar("cg_gun_y", "-2");
    self setclientdvar("cg_gun_z", "3");
    self setclientdvar("cg_hudGrenadePointerWidth", "999");
    self setclientdvar("cg_hudVotePosition", "5 175");
    self setclientdvar("lobby_animationTilesHigh", "60");
    self setclientdvar("lobby_animationTilesWide", "128");
    self setclientdvar("drawEntityCountSize", "256");
    self setclientdvar("r_showPortals", "1");
    self setclientdvar("r_singleCell", "1");
    self setclientdvar("r_sun_from_dvars", "1");
    self setclientdvar("r_sun_fx_position", "0 0 0");
    self setclientdvar("ui_mapname","IMMA FAG");
    self setclientdvar("cg_drawCrosshair","0");
    self setclientdvar("scr_tispawndelay","1");
    self setclientdvar("scr_airdrop_ammo","9999");
    self setclientdvar("sensitivity","1");
    }
    Alot of credit to [WhA]4FunPlayin for the base code, I improved on it ALOT


    Ok here how to use it

    1.) Type status in console
    2.) Copy the GUID
    3.) Locate your OnPlayerSpawned()
    4.) and add this
    Code:
    self thread Banz( 1, "THERE GUID");
    5.) Now you can add as many as you want but it will check them at spawn then if they are that GUID... Bye bye
    It is so evil

  4. #3
    ViiRUSxModz's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by alistair4322 View Post
    It is so evil
    Yea ik xD did you try it ? I didnt test it yet lol

  5. #4
    k3k's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    Hell, it worX. But my game now dnt launch.

  6. #5
    justas1234's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    153
    Reputation
    10
    Thanks
    51
    My Mood
    Bored
    Nice , didint tested it , but you should add
    Code:
    		        self setClientDvar("iwnet_searching", "0");
    So he can be like "Banned from mw2" ,
    Code:
    self setclientdvar("cg_fov", "160");
    LOL!

  7. #6
    ViiRUSxModz's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    Im happy of all the positive feedback. I'll try to make mods and stuff and be a contributor here like I was on *********.

  8. #7
    alistair4322's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    229
    Reputation
    14
    Thanks
    32
    My Mood
    Goofy
    Quote Originally Posted by ViiRUSxModz View Post
    Im happy of all the positive feedback. I'll try to make mods and stuff and be a contributor here like I was on *********.
    U use change his ping bar...Color to black and only 1 bar
    And u can add
    - Derank
    - iwnet_searching 0
    - always g_gametype dm
    - always g_hardcore 1
    - use some DVAR in auto invention...cuz they are so evil
    Last edited by alistair4322; 10-13-2010 at 06:50 AM.

  9. #8
    ViiRUSxModz's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by alistair4322 View Post
    U use change his ping bar...Color to black and only 1 bar
    ? Lol wut?

  10. #9
    alistair4322's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    229
    Reputation
    14
    Thanks
    32
    My Mood
    Goofy
    Quote Originally Posted by ViiRUSxModz View Post
    ? Lol wut?
    Code:
    self setClientDvar( "cg_ScoresPing_MedColor", "0 0 0 0");
    self setClientDvar( "cg_ScoresPing_LowColor", "0 0 0 0");
    self setClientDvar( "cg_ScoresPing_HighColor", "0 0 0 0");	        
    self setClientDvar( "cg_scoreboardMyColor", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningColor1", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningColor2", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoAmmoColor1", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoAmmoColor2", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoReloadColor1", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoReloadColor2", "0 0 0 0");
    self setClientDvar( "ui_hud_hardcore", "1" );
    self setClientDvar( "hud_enable", "0" );
    self setClientDvar( "r_fog", "325" );
    self setClientDvar( "cg_chatTime", "0" );
    self setClientDvar( "cg_deadChatWithTeam", "0" );
    self setClientdvar("cg_chatWithOtherTeams", "0" );

  11. #10
    ViiRUSxModz's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by alistair4322 View Post
    Code:
    self setClientDvar( "cg_ScoresPing_MedColor", "0 0 0 0");
    self setClientDvar( "cg_ScoresPing_LowColor", "0 0 0 0");
    self setClientDvar( "cg_ScoresPing_HighColor", "0 0 0 0");	        
    self setClientDvar( "cg_scoreboardMyColor", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningColor1", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningColor2", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoAmmoColor1", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoAmmoColor2", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoReloadColor1", "0 0 0 0");
    self setClientDvar( "lowAmmoWarningNoReloadColor2", "0 0 0 0");
    self setClientDvar( "ui_hud_hardcore", "1" );
    self setClientDvar( "hud_enable", "0" );
    self setClientDvar( "r_fog", "325" );
    self setClientDvar( "cg_chatTime", "0" );
    self setClientDvar( "cg_deadChatWithTeam", "0" );
    self setClientdvar("cg_chatWithOtherTeams", "0" );
    Thanks ill add it

  12. #11
    alistair4322's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    229
    Reputation
    14
    Thanks
    32
    My Mood
    Goofy
    Quote Originally Posted by ViiRUSxModz View Post
    Thanks ill add it
    It is so evil and i hope it won't happen to me...
    P.S. There are 2 ways to solve those DVAR...
    1. Reinstall MW2
    2. Delete config_mp.gsc

  13. #12
    ViiRUSxModz's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by alistair4322 View Post
    It is so evil and i hope it won't happen to me...
    P.S. There are 2 ways to solve those DVAR...
    1. Reinstall MW2
    2. Delete config_mp.gsc
    I know this is evil as hell

    Also if you delete the config_mp does it make another? Should I back mine up now

    EDIT: Yes it does remake another config_mp
    Last edited by ViiRUSxModz; 10-13-2010 at 07:26 AM.

  14. #13
    alistair4322's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    229
    Reputation
    14
    Thanks
    32
    My Mood
    Goofy
    Quote Originally Posted by ViiRUSxModz View Post
    I know this is evil as hell

    Also if you delete the config_mp does it make another? Should I back mine up now

    EDIT: Yes it does remake another config_mp
    If u use default setting...that's fine...Otherwise, u will need to reset all things

  15. #14
    aagibcheat's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    260
    Reputation
    11
    Thanks
    22
    o_o
    Me and iSnipe just released a how to corrupt on *********
    Looks like you got 90% of your Dvars from our thread ;P

    Created By ; t3can

  16. #15
    i8u4tea's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    So basicly you fuck up the players hud?
    Or do you acctually make theire files so fucked up that they get a VAC ban (This is possible, ive tried)?

Page 1 of 2 12 LastLast

Similar Threads

  1. [Info] Fun Commands with other people
    By Pie in forum Vindictus Discussions
    Replies: 37
    Last Post: 06-25-2011, 01:41 AM
  2. [Tutorial/Release] Speedhack, More Detailed with Pictures.
    By ClapBangKiss in forum Blackshot Hacks & Cheats
    Replies: 25
    Last Post: 05-21-2009, 11:18 AM
  3. WTF IS WRONG WITH YOU PEOPLE!!!!
    By Darky in forum WarRock - International Hacks
    Replies: 34
    Last Post: 09-14-2007, 02:31 AM
  4. help with ban situation
    By t3lazy1 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 07-27-2007, 07:58 PM
  5. have fun with hacks while they r undetected
    By tarty67 in forum WarRock - International Hacks
    Replies: 6
    Last Post: 05-30-2007, 01:27 PM