Page 1 of 4 123 ... LastLast
Results 1 to 15 of 48
  1. #1
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy

    ExtremeBunkerMaker v1.0

    This is the release of a mod, that will hopefully stimulate more
    people to start making new mods.


    It allows you to easily spawn carepackages ingame and allows you to save them into your games_mp.log.
    after you are done you can convert your games_mp so the lines get cleaned out of it.
    And your done!
    Goodbye coordinate writing!

    You can even rotate objects, remove your latest spawned object, spawn to crosshair, or under you, also you can spawn some unseen Turrets!
    Me and Eekhoorn wanted to keep this mod private first but then we suddenly
    decided to just release it =).

    Video:

    [YOUTUBE]ZPLNrm_fF-c[/YOUTUBE]

    Picture of BunkerListExtractor:


    You need both files which can be downloaded at the bottom of the thread,
    1 contains the mod + modloader for easy startup, and the other file contains a .exe with the BunkerListExtractor program.
    If you are done creating bunkers, and you want to put them into your zombie, or RCXD mod.

    Follow the steps below and your done =)

    • 1. Add this to the very start of init():
      [php]level.minigunList = [];
      level.bunkerList = [];[/php]
    • 2. Call this: level thread doMaps(); on init()
    • 3. and this: level thread createBlocks(); on init()
    • 4. Then put:


    [php]createBlocks()
    {
    level.crateTypes["turret_drop_mp"] = [];
    level.crateTypes["tow_turret_drop_mp"] = [];
    level thread mapsmp_turret_killstreak::init();
    if(level.bunkerList.size > 0) {
    for(i = 0; i < level.bunkerList.size; i++) {
    if(isDefined(level.bunkerList[i]))
    level thread createJumpArea(level.bunkerList[i].location, level.bunkerList[i].angle);
    }
    }
    if(level.minigunList.size > 0) {
    for(i = 0; i < level.minigunList.size; i++) {
    if(isDefined(level.minigunList[i]))
    level thread createMinigunTurret(level.minigunList[i].location, level.minigunList[i].angle);
    }
    }
    }

    createJumpArea(pos, rotation)
    {
    jumpArea = spawn("script_model", pos);
    jumpArea setModel("mp_supplydrop_ally");
    jumpArea.angles = rotation;
    }

    createMinigunTurret(pos, rotation)
    {
    miniGun = spawnTurret( "auto_turret", pos, "auto_gun_turret_mp" );
    miniGun setModel(level.auto_turret_settings["sentry"].modelBase);
    miniGun SetTurretType("sentry");
    miniGun.angles = rotation;
    }

    createBlock(origin, angle)
    {
    block = spawnstruct();
    block.location = origin;
    block.angle = angle;
    return block;
    }

    createMinigun(origin, angle)
    {
    minigun = spawnstruct();
    minigun.location = origin;
    minigun.angle = angle;
    return minigun;
    }


    doMaps()
    {
    if(getDvar("mapname") == "mp_array") { /** Array **/
    level thread ArrayMap();
    }
    if(getDvar("mapname") == "mp_cairo") { /** Havana **/
    level thread Havana();
    }
    if(getDvar("mapname") == "mp_cosmodrome") { /** Launch **/
    level thread Launch();
    }
    if(getDvar("mapname") == "mp_cracked") { /** Cracked **/
    level thread Cracked();
    }
    if(getDvar("mapname") == "mp_crisis") { /** Crisis **/
    level thread Crisis();
    }
    if(getDvar("mapname") == "mp_duga") { /** Grid **/
    level thread Grid();
    }
    if(getDvar("mapname") == "mp_firingrange") { /** Firing Range **/
    level thread FiringRange();
    }
    if(getDvar("mapname") == "mp_hanoi") { /** Hanoi **/
    level thread Hanoi();
    }
    if(getDvar("mapname") == "mp_havoc") { /** Jungle **/
    level thread Jungle();
    }
    if(getDvar("mapname") == "mp_mountain") { /** Summit **/
    level thread Summit();
    }
    if(getDvar("mapname") == "mp_nuked") { /** NukeTown **/
    level thread NukeTown();
    }
    if(getDvar("mapname") == "mp_radiation") { /** Radiation **/
    level thread Radiation();
    }
    if(getDvar("mapname") == "mp_russianbase") { /** WMD **/
    level thread WMD();
    }
    if(getDvar("mapname") == "mp_villa") { /** Villa **/
    level thread Villa();
    }
    }

    // ================
    // | Map creation |
    // ================

    ArrayMap()
    {

    }

    Havana()
    {

    }

    Launch()
    {

    }

    Cracked()
    {

    }

    Crisis()
    {

    }

    Grid()
    {

    }

    FiringRange()
    {


    }

    Hanoi()
    {

    }

    Jungle()
    {


    }

    Summit()
    {

    }

    NukeTown()
    {

    }

    Radiation()
    {


    }

    WMD()
    {

    }

    Villa()
    {

    } [/php]

    • 4. somewere in your _rank.
    • 5. Finally add all the converted lines into the right map function =)


    Example:
    [php]wmd()
    {
    bunkerline goeshere
    } [/php]

    Soon I will post my other version that allows you to spawn up to 4
    different FX things in-game, like lights, or smoke, and save them!

    Credits:
    master131 - Creating the mod and BunkerListExtractor
    Eekhoorn - for testing and rolling out some bugs and also releasing the mod on another site because I was too lazy

    Virus Scans:
    VirusTotal - Free Online Virus, Malware and URL Scanner
    BunkerMakerExtreme.rar - Jotti's malware scan
    VirusTotal - Free Online Virus, Malware and URL Scanner
    BunkerListExtractor.rar - Jotti's malware scan

    The detections are most likely FPs from *******Loader.

    MAKE SURE to read this before using the Mod Loader if you haven't used it before!
    Last edited by master131; 01-05-2011 at 05:01 AM.
    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]

  2. The Following 11 Users Say Thank You to master131 For This Useful Post:

    ♪~ ᕕ(ᐛ)ᕗ (01-05-2011),Draztic1 (06-16-2013),iMCSx (07-01-2013),lolbie (01-07-2011),maarten551 (01-15-2011),nextiii (01-19-2011),sgtbighacks (07-15-2011),Skyline. (01-09-2011),sparklin (08-27-2012),TurTLeZ (01-05-2011),xbeatsszzx (01-08-2011)

  3. #2
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    How's this for fast approval?

    /Approved

    Ex Middleman

  4. The Following 2 Users Say Thank You to Insane For This Useful Post:

    [MPGH]master131 (01-04-2011),sgtbighacks (07-15-2011)

  5. #3
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Quote Originally Posted by Insane View Post
    How's this for fast approval?

    /Approved
    2 minutes? Too slow...
    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]

  6. #4
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    Quote Originally Posted by master131 View Post
    2 minutes? Too slow...
    Posted 2 minutes ago you mean, Which means I got it done in one minute

    Ex Middleman

  7. #5
    adrimity's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    California
    Posts
    30
    Reputation
    10
    Thanks
    6
    My Mood
    Amazed
    sweet mod, im finally starting to get fired up about modding in black ops because of the camos/skins, and now this!!

    is there a limit to the boxes u can spawn like there was in mw2?

  8. #6
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    Quote Originally Posted by adrimity View Post
    sweet mod, im finally starting to get fired up about modding in black ops because of the camos/skins, and now this!!

    is there a limit to the boxes u can spawn like there was in mw2?
    Yes, after like around 445 they will start to go invisible/flicker.
    Last edited by Insane; 01-05-2011 at 03:12 PM.

    Ex Middleman

  9. #7
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    OK. At around 445 CPs, CPs will start to 'flicker' and not appear but they are indeed there, they're just invisible.
    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]

  10. The Following User Says Thank You to master131 For This Useful Post:

    Insane (01-05-2011)

  11. #8
    allahakbr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    sweden
    Posts
    71
    Reputation
    10
    Thanks
    3
    My Mood
    Amused
    its bannable or not `?

  12. #9
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Quote Originally Posted by allahakbr View Post
    its bannable or not `?
    MAKE SURE to read this before using the Mod Loader if you haven't used it before!
    ^ Did you see this?
    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]

  13. #10
    allahakbr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    sweden
    Posts
    71
    Reputation
    10
    Thanks
    3
    My Mood
    Amused
    so its only for private match ,,, i wondering if i can run it on my ranked server ?

  14. #11
    adrimity's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    California
    Posts
    30
    Reputation
    10
    Thanks
    6
    My Mood
    Amazed
    Quote Originally Posted by allahakbr View Post
    so its only for private match ,,, i wondering if i can run it on my ranked server ?
    nope, not possible, if it were, everybody would be running mods on there ranked/unranked server

  15. #12
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    No, you can't. You will have to wait for mod support.
    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]

  16. #13
    Heartview's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    KY Cygni
    Posts
    9,202
    Reputation
    717
    Thanks
    2,890
    At like 1:12 in the video I started thinking.. Minecraft in black ops?
    Texture Mods


    Obedear, the sky is low

  17. #14
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Oh and you can remove miniGunThink() from _serverfaceanim_mp.gsc since it is not used anymore. I needed it to stop myself from spawning CPs when I used a sentry before I added the ability to be able to delete them.

    Also if you look inside _rank.gsc you can decide whether to test my fail COD Jumper test on by setting level.failCODJumper to true.
    Last edited by master131; 01-05-2011 at 04:42 AM.
    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]

  18. #15
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    really nice release Tom !!! GJ +Thanked

Page 1 of 4 123 ... LastLast