| View previous topic :: View next topic |
| Author |
Message |
Madman I post too much
Reputation: 1
Joined: 04 May 2006 Posts: 3978
|
|
| Back to top |
|
 |
Renkokuken GO Moderator
Reputation: 4
Joined: 22 Oct 2006 Posts: 3249
|
Posted: Thu May 03, 2007 6:46 pm Post subject: |
|
|
| Cute.
|
|
| Back to top |
|
 |
compactwater I post too much
Reputation: 8
Joined: 02 Aug 2006 Posts: 3923
|
Posted: Thu May 03, 2007 8:08 pm Post subject: |
|
|
I'm scared to open it... But what the heck I'm bored!
EDIT:
Ouch I though it would at least be something "good", not just a test program like (lamer Browser) the browser I made which I cannot say s-h-i-f-u to spell it's name...
|
|
| Back to top |
|
 |
FullyAwesome I post too much
Reputation: 0
Joined: 05 Apr 2007 Posts: 4438 Location: Land Down Under
|
Posted: Fri May 04, 2007 3:27 pm Post subject: |
|
|
hey can u make programs in C++, but like using that window like delphi or ne other window than command prompt?
_________________
|
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Fri May 04, 2007 3:41 pm Post subject: |
|
|
| fullyawesome wrote: | | hey can u make programs in C++, but like using that window like delphi or ne other window than command prompt? |
Huh? Do you mean if you can make UI in C++? yes.
_________________
|
|
| Back to top |
|
 |
FullyAwesome I post too much
Reputation: 0
Joined: 05 Apr 2007 Posts: 4438 Location: Land Down Under
|
Posted: Fri May 04, 2007 4:04 pm Post subject: |
|
|
wat ui stand for btw? lol xD
_________________
|
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Fri May 04, 2007 4:20 pm Post subject: |
|
|
User interface
_________________
|
|
| Back to top |
|
 |
compactwater I post too much
Reputation: 8
Joined: 02 Aug 2006 Posts: 3923
|
Posted: Sat May 05, 2007 5:23 am Post subject: |
|
|
| Code: | @echo off
title Worthless Crackme unless compiled into an exe and encrypted
:start
echo Password:
set /p pwd=
if "%pwd%" == "t3hPwd" goto win
goto lose
:win
cls
echo You win!
echo.
pause
exit
:lose
cls
echo Loser!
echo.
pause
exit |
And there you have it, a batch program.
|
|
| Back to top |
|
 |
Madman I post too much
Reputation: 1
Joined: 04 May 2006 Posts: 3978
|
Posted: Sat May 05, 2007 9:09 am Post subject: |
|
|
lol, im not a great programmer in delphi, and im a recovering vb user
_________________
|
|
| Back to top |
|
 |
compactwater I post too much
Reputation: 8
Joined: 02 Aug 2006 Posts: 3923
|
Posted: Sat May 05, 2007 1:16 pm Post subject: |
|
|
| Madman340000 wrote: | lol, im not a great programmer in delphi, and im a recovering vb user  |
Do you even know Pascal?
I say it's easy because:
| Code: | | while noob >= pro do killNoob |
|
|
| Back to top |
|
 |
Madman I post too much
Reputation: 1
Joined: 04 May 2006 Posts: 3978
|
Posted: Sat May 05, 2007 2:53 pm Post subject: |
|
|
| compactwater wrote: | | Madman340000 wrote: | lol, im not a great programmer in delphi, and im a recovering vb user  |
Do you even know Pascal?
I say it's easy because:
| Code: | | while noob >= pro do killNoob |
|
basically i know it... since its kind of like vb(?) i think anyway.
_________________
|
|
| Back to top |
|
 |
compactwater I post too much
Reputation: 8
Joined: 02 Aug 2006 Posts: 3923
|
Posted: Sat May 05, 2007 4:48 pm Post subject: |
|
|
It this easy enough for you?
| Code: | vk_Right: x := x+1;
vk_Left: x := x-1;
vk_Up: y := y-1;
vk_Down: y := y+1; |
X and Y can be anything you want
|
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Sat May 05, 2007 7:13 pm Post subject: |
|
|
| compactwater wrote: | | Code: | @echo off
title Worthless Crackme unless compiled into an exe and encrypted
:start
echo Password:
set /p pwd=
if "%pwd%" == "t3hPwd" goto win
goto lose
:win
cls
echo You win!
echo.
pause
exit
:lose
cls
echo Loser!
echo.
pause
exit |
And there you have it, a batch program. |
| Code: |
@echo off
title Worthless Crackme made efficient
echo Password:
set /p pwd=
cls
if "%pwd%" == "t3hPwd" goto win
echo Loser!
goto psi
:win
echo You win!
:psi
echo.
pause
|
|
|
| Back to top |
|
 |
pyr0magex Grandmaster Cheater Supreme
Reputation: 0
Joined: 26 Jun 2006 Posts: 1192 Location: my room
|
Posted: Sat May 05, 2007 7:30 pm Post subject: |
|
|
gj... I guess... for a first.
Coulda been worse and not open at all, but about ... 100% of that code is just Object oriented stuff.
1. Resize window and title it.
2. make button, give it a caption
3. go to button events. dbl click the onclick blank space.
4. tell it to make a label you already made to be visible.
Try developing your own "encryption". It doesn't have to be anything fancy, but if I had the time, I'd do it for fun =p
_________________
|
|
| Back to top |
|
 |
|