Results 1 to 11 of 11
  1. #1
    hamed2011's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Classified
    Posts
    75
    Reputation
    10
    Thanks
    1
    My Mood
    Cool

    Exclamation [Solved]request anti camp mode!!!??

    hi
    i want a anti camp mode with all default play !!

  2. #2
    Critted's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Denmark
    Posts
    407
    Reputation
    21
    Thanks
    30
    My Mood
    Cool
    Have you even tried searching: "MW2 Anti-Camp"?

    You'll easily be able to find something.


    And if not, some iSnipe mods do have an Anti-Camp feature. You should be able to rip that out of there and into a normal gametype easily. If you're not able to, there's plenty of tutorials to read.

    EDIT:
    I do think this script will do the job, although, I am on my mac atm, so I can't test:
    Code:
    doOwnCamper()
    {
            self endon("disconnect");
       self endon("death");
    
       for(;;)
       {
             self.before = self getorigin();
             wait 18;
             self.after = self getorigin();
             
                if( ( distance(self.before, self.after) < 50) ) {
                iPrintln("^1" + (self.name) + " ^7is camping and will be killed in ^15.");
                }
                wait 1;
       self.after = self getorigin();
       if( ( distance(self.before, self.after) < 50) ) {
                iPrintln("^1" + (self.name) + " ^7is camping and will be killed in ^14.");
                }
                wait 1;
       self.after = self getorigin();
          if( ( distance(self.before, self.after) < 50) ) {
                iPrintln("^1" + (self.name) + " ^7is camping and will be killed in ^13.");
                }
                wait 1;
       self.after = self getorigin();
             if( ( distance(self.before, self.after) < 50) ) {
                iPrintln("^1" + (self.name) + " ^7is camping and will be killed in ^12.");
                }
                wait 1;
       self.after = self getorigin();
             if( ( distance(self.before, self.after) < 50) ) {
                iPrintln("^1" + (self.name) + " ^7is camping and will be killed in ^11.");
                }
                wait 1;
       self.after = self getorigin();
             if( ( distance(self.before, self.after) < 50) ) {
                iPrintln("^1" + (self.name) + "^7 got killed for camping too long!");
                self suicide();
                }
    }
    }
    Last edited by Critted; 01-25-2011 at 07:58 AM.


    ^ Thanks Kyle, I love it! ^

  3. The Following User Says Thank You to Critted For This Useful Post:

    hamed2011 (01-25-2011)

  4. #3
    hamed2011's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Classified
    Posts
    75
    Reputation
    10
    Thanks
    1
    My Mood
    Cool
    how i can use this script??

  5. #4
    Critted's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Denmark
    Posts
    407
    Reputation
    21
    Thanks
    30
    My Mood
    Cool
    Here, I mashed it all together for you.
    www.pastebin.com

    Instructions: (AlterIWnet, I do not have experience with Steam, at all.)

    1) Goto the PasteBin link, and click the: "Download" link, in the top of the document.

    2) Open the downloaded text file.

    3) Goto: File -> Save As.. And save it as _rank.gsc (IMPORTANT: Change the format to all formats, else it will save it as .txt.)

    4) Open your Modern Warfare 2 folder.

    5) If you don't already have it, make a folder in the MW2 directory, called: "mods" (Remember: Do NOT add the quotation marks (the "")

    6) Make a new folder in the mods folder called: "anti-camp", or whatever you like.

    7) Make a new folder called: "maps"

    8) Make a new folder called: "mp"

    10) Make a new folder called: "gametypes"

    11) Paste the _rank.gsc file in the "gametypes" folder.

    12) Go back, until you're in the "anti-camp" folder.

    13) Right click the maps folder and click: "Add to archive..." (Requires WinRAR. Google it.)

    14) Set it as a .zip file, and not .rar.

    14) Change it from maps.zip to maps.iwd

    15) Open Modern Warfare 2. (alterIWnet)

    16) Type following in the console: "fs_game mods/anti-camp;vid_restart"

    17) Host a Private Match, or become host in a Public Match. And voila, there's gonna be no campers!

    If you don't understand some of the steps in this, please, feel free to ask.
    Last edited by Critted; 01-25-2011 at 11:55 AM.


    ^ Thanks Kyle, I love it! ^

  6. The Following User Says Thank You to Critted For This Useful Post:

    hamed2011 (01-25-2011)

  7. #5
    Boon Pek's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    389
    My Mood
    Inspired
    and the code for the thread "announcement()"?
    My minecraft launcher!

    A full-featured, actively-developed windows-only Minecraft Launcher! It allows you to download older versions of minecraft.jar through the options menu, multi-username support, RAM allocation support, non-legit logins and more!








    [img]https://i61.photobucke*****m/albums/h56/damwickid/pscs5.png[/img]


  8. The Following User Says Thank You to Boon Pek For This Useful Post:

    hamed2011 (01-25-2011)

  9. #6
    Critted's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Denmark
    Posts
    407
    Reputation
    21
    Thanks
    30
    My Mood
    Cool
    Quote Originally Posted by Boon Pek View Post
    and the code for the thread "announcement()"?
    Well, I found these lines in an old mod of mine, apparently without the announcement() thread. Dunno what happened there. Never the less, I replaced it with iPrintln, guessing it will work.

    EDIT:
    Alrighty, it did work!
    Last edited by Critted; 01-25-2011 at 11:55 AM.


    ^ Thanks Kyle, I love it! ^

  10. #7
    hamed2011's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Classified
    Posts
    75
    Reputation
    10
    Thanks
    1
    My Mood
    Cool

    Thumbs up

    thanks a lot Critted !!

    mode work perfect!!!

  11. #8
    Critted's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Denmark
    Posts
    407
    Reputation
    21
    Thanks
    30
    My Mood
    Cool
    That's good!
    You're welcome!


    ^ Thanks Kyle, I love it! ^

  12. #9
    Arasonic's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    569
    Reputation
    11
    Thanks
    115
    FYI:

    Announcement is a server-wide iPrintln.

  13. The Following User Says Thank You to Arasonic For This Useful Post:

    Critted (01-25-2011)

  14. #10
    Critted's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Denmark
    Posts
    407
    Reputation
    21
    Thanks
    30
    My Mood
    Cool
    Quote Originally Posted by Arasonic View Post
    FYI:

    Announcement is a server-wide iPrintln.

    Oh. Thanks. Then I was right from the start. Thanks

    EDIT: I guess it should be marked as solved now?
    Last edited by Critted; 01-25-2011 at 01:01 PM.


    ^ Thanks Kyle, I love it! ^

  15. #11
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    /marked as solved
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]