Results 1 to 10 of 10

Thread: Rejoiners WILL DIE

  1. #1
    Queen of the Internet Kung Fu Master
    Join Date
    Oct 2006
    Location
    Atlanta
    Posts
    1.879
    Rep Power
    19

    Default Rejoiners WILL DIE

    Okay fuck this shit, if you rejoin to respawn I'll slay your sorry ass. It's over. I'm sick of killing you and then getting killed by you in the same round. It's not fair to everyone else who patiently waits out the game after being killed. I'm gonna find a way to auto-slay all you ass hats out there that think it's cool to get a second chance when everyone else doesn't. No, even better, I'll re-write it to set you on FIRE the next round that you do actually join legitimately. This crap is over.
    [img]http://unix.org.au/~brett/gif/waldioaw1.gif[/img]
    [color=royalblue][b]Forum and Server Administrator[/b][/color]
    PasTieZ: I am scared now thanks nat
    natalyaaf: D:
    PasTieZ: sio is going to ass rape me

    NatalyaAF ウラヌス: i am the baninator :D
    word jackd ת/ύ: ha the baninator and the pwninator

  2. #2
    g0d! Contributing Member siosios's Avatar
    Join Date
    Oct 2006
    Location
    In a cardboard box
    Age
    50
    HlStats

    HLStatsX Ranking for STEAM_0:1:13488560
    Posts
    13.544
    Blog Entries
    12
    Rep Power
    10

    Default

    HAHAHAHA... go get em nat!
    ------------------------------------------------

    |W0rd|SexualTurtletara420ת/ύ: Hey there daddy..

    ------------------------------------------------
    \\\ ///
    ( @ @ )
    .....o00o.(_).o00o.....


    ------------------------------------------

  3. #3
    TheTomayotatoTurtle
    Guest

    Default

    Woops. Sorry, that was me who killed you after accidently respawning. I was trying to reset score and didn't mean to respawn.

  4. #4
    N/U Special Forces
    Join Date
    Jul 2007
    Location
    Greenville, SC
    Age
    47
    HlStats

    HLStatsX Ranking for STEAM_0:1:10488049
    Posts
    661
    Rep Power
    17

    Default

    umm which server nat ??

    btw only resason i rejoin is cause i'm on wireless and my internet sucks in game
    everyone that knows me knows this (anyone else thats on wireless pls let me know what card ya use or adapter as i am currently in the market for a better one)
    [IMG]http://i173.photobucket.com/albums/w47/badass4625/KamisSig.gif[/IMG]

    [URL="http://www.gametracker.com/player/Kamikaze%20Bad%20Ass%20%C3%97%C2%AA%2F%C3%8F%C2%8D/74.86.102.230:27015/"][IMG]http://cache.www.gametracker.com/player/Kamikaze%20Bad%20Ass%20%C3%97%C2%AA%2F%C3%8F%C2%8D/74.86.102.230:27015/b_560x95.png[/IMG][/URL]

  5. #5
    Queen of the Internet Kung Fu Master
    Join Date
    Oct 2006
    Location
    Atlanta
    Posts
    1.879
    Rep Power
    19

    Default

    Done and Done!!

    Anti-Respawn is now in effect on Reg Office, Office Unlimited, Dust 2, and Gun Game.
    [img]http://unix.org.au/~brett/gif/waldioaw1.gif[/img]
    [color=royalblue][b]Forum and Server Administrator[/b][/color]
    PasTieZ: I am scared now thanks nat
    natalyaaf: D:
    PasTieZ: sio is going to ass rape me

    NatalyaAF ウラヌス: i am the baninator :D
    word jackd ת/ύ: ha the baninator and the pwninator

  6. #6
    Trailor Trash
    Join Date
    Nov 2007
    Age
    53
    Posts
    64
    Rep Power
    17

    Default

    Thanks, this has been a pet peeve of mine as well. Hard to monitor.

    Path

  7. #7
    Inactive
    Join Date
    Sep 2007
    Location
    Tennessee
    Age
    32
    HlStats

    HLStatsX Ranking for STEAM_0:1:8967604
    Posts
    27
    Rep Power
    0

    Default A solution?

    [edit]*IF YOU NEED THIS, YOU MAY USE IT!! I just read the entire thread LOL![/edit]

    Maybe I have a solution..

    I have been working on this and was going to delete it when I was rummaging through some old files.

    It's in Python (the easiest damn language in the world..) and I got some examples from EventScripts website and some other scripts as well, but all in all, I wrote it to benefit the community.

    Anyways, EVERYONE.. I PRESENT THE ANTI RETRY SCRIPT! (1.0 and in PYTHON)

    place in /addons/eventscripts/anti_retry/ and name anti_retry.py!! =)

    I started this like 2 or 3 weeks ago when I noticed that admins were trying to get players to stop rejoining and I just finished it tonight with some good ideas from some resources at eventscripts' directory of all the damn functions lol

    anyways, the CODE!

    ENJOY!!!!!!!

    Code:
    import es
    
    #Created by sutt0n
    #Special thanks to many Python references and examples and EventScripts
    #Dedicated to the folks at N00BUnlimited!
    
    #Naming base and sub variables
    info = es.AddonInfo() 
    info.name = 'N/U AntiRejoin'
    info.url = 'http://www.n00bunlimited.net/' 
    info.version = '1.0' 
    info.author = 'sutt0n' 
    info.basename = 'anti_retry' 
    es.ServerVar('anti_retry_ver',info.version,' By-> sutt0n').makepublic()
    
    #Enabling variables and enabling the entire script
    dead_players = []
    disc_players = []
    enabled = 1
    
    #Defining the load() function
    def load():
        es.msg('#multi', '#green[#lightgreenAnti Retry#green]#default Loaded')
    
    #Defining the unload() function
    def unload():
        es.msg('#multi', '#green[#lightgreenAnti Retry#green]#default Unloaded')
    
    #When the round ends, disable the script and reset the variables
    def round_end(ev):
        global enabled, disc_players, dead_players
        enabled = 0
        disc_players = []
        dead_players = []
    
    #When the round starts, rename the enable variable and make it global (well.. backwards lol)
    def round_start(ev):
        global enabled
        enabled = 1
    
    #Check if the user disconnected and store in an Array
    def player_disconnect(ev):
        if enabled:
            if ev['reason'] == 'Disconnect by user.':
                disc_players.append(ev['es_steamid'])
    
    #Take the STEAM_ID that player died that disconnected
    def player_death(ev):
        if enabled:
            dead_players.append(ev['es_steamid'])
    
    #If the steam id of the player is in the array and he recently disconnected, then SLAY the FUCK out of him! ^_^
    def player_spawn(ev):
        userid = ev['userid']
        if not es.getplayerprop(userid, "CBasePlayer.pl.deadflag"):
            steamid = ev['es_steamid']
            if steamid in dead_players and steamid in disc_players:
                es.setplayerprop(userid, "CBasePlayer.m_iHealth", 0)
                es.server.queuecmd('es_xfire %s !self ignite' % userid) 
                es.msg('#multi', '#green[#lightgreenAnti Retry#green] #lightgreen%s#default has been slayed for rejoining after dying!' % ev['es_username'])
                
    #comments were in there for any editing you guys want to do..
    AKA suttoN on the n/u servers

  8. #8
    Queen of the Internet Kung Fu Master
    Join Date
    Oct 2006
    Location
    Atlanta
    Posts
    1.879
    Rep Power
    19

    Default

    Too late. D: And the one I put up is way simpler.
    [img]http://unix.org.au/~brett/gif/waldioaw1.gif[/img]
    [color=royalblue][b]Forum and Server Administrator[/b][/color]
    PasTieZ: I am scared now thanks nat
    natalyaaf: D:
    PasTieZ: sio is going to ass rape me

    NatalyaAF ウラヌス: i am the baninator :D
    word jackd ת/ύ: ha the baninator and the pwninator

  9. #9
    Inactive
    Join Date
    Sep 2007
    Location
    Tennessee
    Age
    32
    HlStats

    HLStatsX Ranking for STEAM_0:1:8967604
    Posts
    27
    Rep Power
    0

    Default

    /cry
    AKA suttoN on the n/u servers

  10. #10
    Icon
    Guest

    Default

    i would never get caught doing that. due to the shittyness of my computer, my harddrive would probably crash in the attempt. but good job nat, they are annoying
    Last edited by Icon; 12-14-2008 at 07:34 PM. Reason: long rambling nonsense

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •