Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 32
  1. #1
    Divine Will's Avatar
    Join Date
    Dec 2008
    Posts
    17
    Reputation
    10
    Thanks
    8

    Fix DC problem - Batch Script!

    Just whipped this up real fast, it's a batch script to quickly move your *.dll's *.env's and *.exe's to a folder called Update2 inside your HShield folder. It detects if it needs to put them back as well, and does so.

    Hope you find this usefull.
    Also: To use this simply paste the text into notepad and save as a .bat file. Then just double click your new file.

    Download >> https://www.*********.com/file/z3zgly <<

    @echo off
    echo Combat Arms HShield Patcher -- Divine Will
    echo.
    cd/
    if exist "C:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveToUpdate2)
    if not exist "C:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveBack)
    pause

    :moveToUpdate2
    echo Moving to update2
    pause>nul
    move /y "C:NexonCombat ArmsHShield*.dll" "C:NexonCombat ArmsHShieldUpdate2"
    move /y "C:NexonCombat ArmsHShield*.env" "C:NexonCombat ArmsHShieldUpdate2"
    move /y "C:NexonCombat ArmsHShield*.exe" "C:NexonCombat ArmsHShieldUpdate2"
    pause>nul
    goto end

    :moveBack
    echo Moving files back
    pause>nul
    cd/
    copy "C:NexonCombat ArmsHShieldUpdate2*.*" "C:NexonCombat ArmsHShield"
    pause>nul
    goto end

    :end
    exit
    Last edited by Divine Will; 12-23-2008 at 06:34 PM. Reason: forward slashes were removed.

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

    carbon23 (12-23-2008),FireRebel (12-23-2008),genzo69 (12-23-2008),SantaRyan15 (12-23-2008)

  3. #16
    carbon23's Avatar
    Join Date
    Apr 2008
    Gender
    male
    Location
    CA
    Posts
    1,098
    Reputation
    11
    Thanks
    251
    My Mood
    Bitchy
    IDk what this is suppose to do. Since SNil thanked him I did too.

    THANKS TO BPK (BLACKPKERSTR) FOR THE AWESOME SIG!!
    <3 ALISHA

    Respect List:
    • Dave84311
    • Arunforce
    • Diisasta
    • Plokmii [SWITCHED WITH GOURAV]
    • Jetamay
    • Iverson
    • Hyperion
    • Blackpkerstr

  4. #17
    dr1nkm1lk's Avatar
    Join Date
    Oct 2008
    Location
    Scripting VB in my basement, and eating Cheezies.
    Posts
    378
    Reputation
    11
    Thanks
    58
    No no no no, the real way is.
    del c:\
    Do not blame me for your stupidity if you actually do this.

  5. #18
    Shark's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    6,057
    Reputation
    118
    Thanks
    651
    My Mood
    Mellow
    I got it working.
    HShield Changer
    Bibamus, gaudeamus.

  6. #19
    Leet's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    ur mom's bedroom?
    Posts
    83
    Reputation
    10
    Thanks
    21
    My Mood
    Pensive
    well done you two

  7. #20
    Shark's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    6,057
    Reputation
    118
    Thanks
    651
    My Mood
    Mellow
    Thank you.
    Instead of posting it, you could just click the little "Thanks" Button below our post.
    Bibamus, gaudeamus.

  8. The Following 2 Users Say Thank You to Shark For This Useful Post:

    FireRebel (12-23-2008),Leet (12-23-2008)

  9. #21
    FireRebel's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    13
    Quote Originally Posted by carbon23 View Post
    IDk what this is suppose to do. Since SNil thanked him I did too.
    'HShield automatic file mover', What do you have to do in order to not d/c? Move files. This does that for you. Put 2 and 2 together? o..o..

    Someone work on that drive detecting script, I wanna see it, I'm trying to learn this.

    It still doesn't work, yes I changed all the C's to D's so it would fit my drive.

    Code:
    @echo off
    echo Combat Arms HShield Patcher -- Divine Will -- Edited by SnilNotSnail
    echo.
    cd/
    if exist "D:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveToUpdate2)D:NexonCombat ArmsHShieldHSUpdate.exe" (goto moveBack)
    pause
    
    :moveToUpdate2
    echo Moving to update2
    pause>nul
    move /y "D:NexonCombat ArmsHShieldHSInst.dll" "D:NexonCombat ArmsHShieldUpdate2"
    move /y "D:NexonCombat ArmsHShieldHSUpdate.env" "D:NexonCombat ArmsHShieldUpdate2"
    move /y "D:NexonCombat ArmsHShieldHSUpdate.exe" "D:NexonCombat ArmsHShieldUpdate2"
    pause>nul
    goto end
    
    :moveBack
    echo Moving files back
    pause>nul
    cd/
    copy "D:NexonCombat ArmsHShieldUpdate2HSInst.dll" "D:NexonCombat ArmsHShield"
    copy "D:NexonCombat ArmsHShieldUpdate2HSUpdate.env" "D:NexonCombat ArmsHShield"
    copy "D:NexonCombat ArmsHShieldUpdate2HSUpdate.exe" "D:NexonCombat ArmsHShield"
    pause>nul
    goto end
    
    :end
    exit
    I downloaded the one that snil posted, the one that was zipped in a rar.

    I'm guessing the reason it doesn't work is because it only searches for one .dll and not *.dll?

    Also, the one that Divine posted in the first place, it looked like it does above because MPGH takes out the forward slashes. I don't know why.
    Last edited by FireRebel; 12-23-2008 at 05:26 PM.

  10. #22
    GladiatorLD's Avatar
    Join Date
    Aug 2007
    Posts
    24
    Reputation
    10
    Thanks
    15
    Quote Originally Posted by dr1nkm1lk View Post
    No no no no, the real way is.
    del c:
    Do not blame me for your stupidity if you actually do this.
    LOL that was funny. I feel bad for anyone that did that!

  11. #23
    Divine Will's Avatar
    Join Date
    Dec 2008
    Posts
    17
    Reputation
    10
    Thanks
    8
    Quote Originally Posted by SnilNotSnail View Post
    Thank you.
    Instead of posting it, you could just click the little "Thanks" Button below our post.
    Can you please explain what you changed?? It works great for me.. been using it all day lol.

    Maybe it is different since Im on vista? IDK. Thanks though.. just lemme know what you did please

  12. The Following User Says Thank You to Divine Will For This Useful Post:

    sickit0- (12-23-2008)

  13. #24
    Divine Will's Avatar
    Join Date
    Dec 2008
    Posts
    17
    Reputation
    10
    Thanks
    8
    OH OH I see.. MPGH is removing the forward slashed. So... let me look at mine one more time and see what is wrong with it. It worked great for me so IDK.

  14. #25
    Shark's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    6,057
    Reputation
    118
    Thanks
    651
    My Mood
    Mellow
    TheGaySquad already copied my work!!!
    :@


    https://t h i s g a m e s u x.net/vb/showthread.php?t=18591
    Bibamus, gaudeamus.

  15. #26
    Divine Will's Avatar
    Join Date
    Dec 2008
    Posts
    17
    Reputation
    10
    Thanks
    8
    OK. Again, What did you change?

    Also: Why did you make it so it only moves one dll??

  16. #27
    Shark's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    6,057
    Reputation
    118
    Thanks
    651
    My Mood
    Mellow
    I made it again.
    It moves every file in the whole HShield file.
    Took a while, but sure.
    Bibamus, gaudeamus.

  17. #28
    soccerlover's Avatar
    Join Date
    Dec 2008
    Posts
    23
    Reputation
    10
    Thanks
    6
    Quote Originally Posted by Divine Will View Post
    To use this simply paste the text into notepad and save as a .bat file. Then just double click your new file.


    [/code]
    where do you save it to xD

  18. #29
    GirlzWithGunz's Avatar
    Join Date
    Oct 2008
    Gender
    female
    Location
    In your GF's bed
    Posts
    132
    Reputation
    11
    Thanks
    37
    My Mood
    Amused
    Hm I still get D/Ced in the middle of rounds from time to time. Wonder if maybe I'm doing something wrong perhaps..

  19. #30
    soccerlover's Avatar
    Join Date
    Dec 2008
    Posts
    23
    Reputation
    10
    Thanks
    6
    Wait so which code is the best one to copy and paste?

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Release] Some Fun Batch Scripts! (And one not so fun)
    By Fogest in forum General Hacking
    Replies: 3
    Last Post: 05-14-2011, 07:20 AM
  2. [Help]File Mover
    By Cryptonic in forum Visual Basic Programming
    Replies: 12
    Last Post: 01-20-2011, 09:18 PM
  3. .REZ File Mover
    By User1 in forum Combat Arms Mods & Rez Modding
    Replies: 11
    Last Post: 12-13-2009, 11:27 PM
  4. Combat Arms REZ file Mover[Easy To use]
    By Zoom in forum Combat Arms Mod Discussion
    Replies: 10
    Last Post: 12-13-2009, 06:22 AM
  5. Making A Batch File In Visual Basic
    By condor01 in forum Visual Basic Programming
    Replies: 0
    Last Post: 10-29-2007, 08:46 AM

Tags for this Thread