| View previous topic :: View next topic |
| Author |
Message |
Flabbergasted Expert Cheater
Reputation: 0
Joined: 11 Oct 2007 Posts: 231 Location: I have alzheimer's.
|
Posted: Sun Feb 03, 2008 2:09 pm Post subject: [Help] Batch File Programming |
|
|
| Code: | @echo off
cd "C:\Documents and Settings\Username\Desktop\DxWnd"
start /min DXwnd
cd "C:\Documents and Settings\Username\Desktop\Snootae Bot 1.0.4.1"
start Snootae Bot
cd "C:\Documents and Settings\Username\Desktop\ME1129"
start GIORA'sCT.CT
echo Start bypass?
pause>nul
start Bypass
echo Start MapleStory?
pause>nul
cd "C:\Documents and Settings\Username\Desktop"
start MapleStory
cls
echo No credits. |
Hey, I made this simple batch file for opening hacks with one click for MapleStory. I was wondering if you can make it say "Cannot find MapleStory" if it cannot find MapleStory. Also, can you make it pres keys like enter and are there other useful commands? Post please. Thanks
|
|
| Back to top |
|
 |
samuri25404 Grandmaster Cheater
Reputation: 7
Joined: 04 May 2007 Posts: 955 Location: Why do you care?
|
Posted: Sun Feb 03, 2008 5:07 pm Post subject: |
|
|
I think there's something like
| Code: |
IF FILEEXIST whatever
|
But I'm not sure.
You should Google. If there is, you could do something like this:
| Code: |
if fileexist maplestory then goto maplestoryexists
echo "maplestory not found"
goto exit
maplestoryexists:
start maplestory
|
_________________
|
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Sun Feb 03, 2008 5:14 pm Post subject: |
|
|
| Code: |
if not exist "c:\verify.ini" echo no
if exist "c:\verify.ini" echo yes
|
_________________
|
|
| Back to top |
|
 |
Flabbergasted Expert Cheater
Reputation: 0
Joined: 11 Oct 2007 Posts: 231 Location: I have alzheimer's.
|
Posted: Sun Feb 03, 2008 9:14 pm Post subject: |
|
|
Oh okay, ty. Is there a way to open the program even if there's a space in the name. For example,
| Code: | | start GIORA's CT.CT |
It will say "GIORA's not found." when you execute it.
|
|
| Back to top |
|
 |
Pseudo Xero I post too much
Reputation: 0
Joined: 16 Feb 2007 Posts: 2607
|
Posted: Sun Feb 03, 2008 9:22 pm Post subject: |
|
|
| Flabbergasted wrote: | Oh okay, ty. Is there a way to open the program even if there's a space in the name. For example,
| Code: | | start GIORA's CT.CT |
It will say "GIORA's not found." when you execute it. |
Put it in quotation marks.
| Code: | | START "GIORA's CT.CT" |
|
|
| Back to top |
|
 |
Flabbergasted Expert Cheater
Reputation: 0
Joined: 11 Oct 2007 Posts: 231 Location: I have alzheimer's.
|
Posted: Sun Feb 03, 2008 9:33 pm Post subject: |
|
|
| Xenophobe wrote: | | Flabbergasted wrote: | Oh okay, ty. Is there a way to open the program even if there's a space in the name. For example,
| Code: | | start GIORA's CT.CT |
It will say "GIORA's not found." when you execute it. |
Put it in quotation marks.
| Code: | | START "GIORA's CT.CT" |
|
Okay, I did that and it worked for like the first time then the other times it opened another batch file or something.
| Code: | @echo off
cd "C:\Documents and Settings\Username\Desktop\DxWnd"
start /min DXwnd
cd "C:\Documents and Settings\Username\Desktop\Snootae Bot 1.0.4.1"
start "Snootae Bot"
cd "C:\Documents and Settings\Username\Desktop\ME1129"
start "GIORA's CT.CT"
echo Start bypass?
pause>nul
start Bypass
echo Start MapleStory?
pause>nul
cd "C:\Nexon\MapleStory"
start MapleStory
cls
echo No credits. |
|
|
| Back to top |
|
 |
|