Rejoiners WILL DIE

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Natalya
    Queen of the Internet
    Kung Fu Master
    • Oct 2006
    • 1879

    #1

    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
  • siosios
    g0d!
    Kung Fu Master
    • Oct 2006
    • 13626

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

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

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


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

    Comment

    • TheTomayotatoTurtle

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

      Comment

      • kamikaze_bad_ass
        N/U Special Forces
        • Jul 2007
        • 661

        #4
        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]

        Comment

        • Natalya
          Queen of the Internet
          Kung Fu Master
          • Oct 2006
          • 1879

          #5
          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

          Comment

          • pathboy
            Trailor Trash
            • Nov 2007
            • 64

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

            Path

            Comment

            • w4d
              Inactive
              • Sep 2007
              • 27

              #7
              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

              Comment

              • Natalya
                Queen of the Internet
                Kung Fu Master
                • Oct 2006
                • 1879

                #8
                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

                Comment

                • w4d
                  Inactive
                  • Sep 2007
                  • 27

                  #9
                  /cry
                  AKA suttoN on the n/u servers

                  Comment

                  • Icon

                    #10
                    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 Guest; 12-14-2008, 07:34 PM. Reason: long rambling nonsense

                    Comment

                    Working...