Results 1 to 15 of 32

Threaded View

  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)

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