Results 31 to 45 of 65

Threaded View

  1. #1
    [WhA]4FunPlayin's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Not here
    Posts
    757
    Reputation
    8
    Thanks
    169
    My Mood
    Lonely

    My Way of Banning People

    There are few people that cheat on my lobbies, and I dislike that, so I wrote a little script that would ban them, I'd like to share it with you because it is useful more than VAC itself (and simple+faster to make+use)

    Code:
    banGUID( be_an_azzhole, GUIDString )
    {
        if(self.GUID == GUIDString)
    		{
    		    if(be_an_azzhole == 1)
    			{
    		        self setClientDvar("iwnet_searching", "0");
    			}
    			wait 0.1;
    		    kick( self getEntityNumber(), "PLATFORM_STEAM_KICK_CHEAT" );
    			wait 0.2;
    		}
    }
    As you can see it's very easy to make and it won't let the player play anymore.

    It is very useful, if someone is ending your game/wallhack/aimbot and stuff like that just add

    Code:
    self banGUID( 0 or 1, GUID );
    To onplayerconnect()
    0 - if you're not a jerk.
    1 - if you're a jerk.

    How do I get the GUID?

    Simple, go to console, type "status", then you see the player's GUID:

    And it should look like this:



    Example:

    Code:
    onPlayerConnect()
    {
    	for(;;)
    	{
    
    ...skipping the useless code
    ..getting close to the end
    ...player thread onJoinedTeam();
    player thread onJoinedSpectators();
    
    self banGUID(1, "01100001038f761d");
    }
    And that will ban me from your lobby
    Last edited by [WhA]4FunPlayin; 09-17-2010 at 09:46 AM.

  2. The Following 10 Users Say Thank You to [WhA]4FunPlayin For This Useful Post:

    DogPatch1992 (10-01-2010),FILIPE1 (10-30-2010),I-Love-You (10-13-2010),Jasperdepasper (10-12-2010),jc4x4 (09-22-2010),KaveS (09-17-2010),r3Fuze (10-12-2010),TheSaboteur (10-08-2010),xbeatsszzx (09-17-2010),zalew (09-17-2010)

Similar Threads

  1. How does suba ban people?
    By BLACKLAB3L in forum CrossFire Hacks & Cheats
    Replies: 6
    Last Post: 06-13-2009, 07:12 AM
  2. puplic hack has been detected and are starting to ban people
    By cablah in forum Combat Arms Hacks & Cheats
    Replies: 7
    Last Post: 12-30-2008, 09:49 AM
  3. Replies: 36
    Last Post: 01-26-2008, 06:15 AM
  4. Best way to get people to phishing site
    By vescovo in forum WarRock - International Hacks
    Replies: 8
    Last Post: 12-18-2007, 10:40 PM
  5. have a way to ban user ?
    By D4nny in forum WarRock - International Hacks
    Replies: 10
    Last Post: 07-25-2007, 06:44 AM

Tags for this Thread