*Deleted

Discuss MapleStory hacks and bots over here!
ShiunYean
Headmaster of Darkness
Headmaster of Darkness
Posts: 648
Joined: Tue Sep 08, 2009 2:59 pm
Location: Brunei Darussalam
Contact:

Re: Whos' going to make the MapRusher?

Post by ShiunYean »

I've only read about 20% of a C++ book...
User avatar
New|Life
Dark Lord
Dark Lord
Posts: 142
Joined: Sun Dec 06, 2009 8:01 pm

Re: Whos' going to make the MapRusher?

Post by New|Life »

LBYuan wrote:The book were making me nuts!@@
Btw any exercise for it?
Try to code a simple Win32 console calculator that can do addition, subtraction, multiplication and division first, that's a good exercise.
- Learning C++ and Assembly language
User avatar
albertng95
Master of Darkness
Master of Darkness
Posts: 327
Joined: Fri Mar 05, 2010 5:11 pm

Re: Whos' going to make the MapRusher?

Post by albertng95 »

OMG.....tis gonna make me crazy reading those book = =
Image
SoullessSoul
The Great Lord
The Great Lord
Posts: 1036
Joined: Sun Feb 07, 2010 3:32 am
Location: Lost WorlD

Re: Whos' going to make the MapRusher?

Post by SoullessSoul »

albertng95 wrote:OMG.....tis gonna make me crazy reading those book = =
lol i haven siao wor
Image
Guilt-Gear
Dark Lord
Dark Lord
Posts: 152
Joined: Sat Nov 06, 2010 9:42 pm

Re: Whos' going to make the MapRusher?

Post by Guilt-Gear »

I haven't read those C++ books
Does it feel boring/makes you sleepy/eyes tired in the beggining when you first read it?
SoullessSoul
The Great Lord
The Great Lord
Posts: 1036
Joined: Sun Feb 07, 2010 3:32 am
Location: Lost WorlD

Re: Whos' going to make the MapRusher?

Post by SoullessSoul »

Guilt-Gear wrote:I haven't read those C++ books
Does it feel boring/makes you sleepy/eyes tired in the beggining when you first read it?
some part xD
Image
LBYuan
Death Warrior
Death Warrior
Posts: 76
Joined: Sat Dec 11, 2010 11:32 am

Re: Whos' going to make the MapRusher?

Post by LBYuan »

SoullessSoul wrote:
Guilt-Gear wrote:I haven't read those C++ books
Does it feel boring/makes you sleepy/eyes tired in the beggining when you first read it?
some part xD
If I'm not wrong if you take programming in universiti you gonna read all the C++ books rite?
Raiden
Holy Philosopher
Holy Philosopher
Posts: 889
Joined: Sat Jan 09, 2010 8:45 pm
Location: Capital of Malaysia

Re: Whos' going to make the MapRusher?

Post by Raiden »

Hey someone help me on this:

Code: Select all

bool SSMFOn = false;

 void SSMFHotkey()
 {
	 for(;;Sleep(1)){
	 if (GetAsyncKeyState(VK_F1)) {
	 if (SSMFOn == false) {
			SSMFOn = true;
			hSSMF = NewThread(SSMouseFly);
			Form1->Label59->Caption = "Enabled";
			Form1->Label59->Font->Color = clGreen;
		  }

		 if (SSMFOn == true) {
	 SSMFOn = false;
	 TerminateThread(hSSMF, 0);
	 Form1->Label59->Caption = "Disabled";
	 Form1->Label59->Font->Color = clRed;
		  }
   }
	 }
  }
Is there something wrong on the code??? I can enable it by pressing F1 but not disable it.

Language: C++ Builder (RAD Studio)
User avatar
New|Life
Dark Lord
Dark Lord
Posts: 142
Joined: Sun Dec 06, 2009 8:01 pm

Re: Whos' going to make the MapRusher?

Post by New|Life »

Raiden wrote:Hey someone help me on this:

Code: Select all

bool SSMFOn = false;

 void SSMFHotkey()
 {
	 for(;;Sleep(1)){
	 if (GetAsyncKeyState(VK_F1)) {
	 if (SSMFOn == false) {
			SSMFOn = true;
			hSSMF = NewThread(SSMouseFly);
			Form1->Label59->Caption = "Enabled";
			Form1->Label59->Font->Color = clGreen;
		  }

		 if (SSMFOn == true) {
	 SSMFOn = false;
	 TerminateThread(hSSMF, 0);
	 Form1->Label59->Caption = "Disabled";
	 Form1->Label59->Font->Color = clRed;
		  }
   }
	 }
  }
Is there something wrong on the code??? I can enable it by pressing F1 but not disable it.

Language: C++ Builder (RAD Studio)

Code: Select all

BOOL SSMFOn = FALSE;

void SSMFHotkey()
{
   for(;;Sleep(100))
   {
      if (GetAsyncKeyState(VK_F1) < 0)
      {
         if(!SSMFOn)
         {
            SSMFOn = TRUE;
            hSSMF = NewThread(SSMouseFly);
            Form1->Label59->Caption = "Enabled";
            Form1->Label59->Font->Color = clGreen;
         }
         else
         {
            SSMFOn = FALSE;
            TerminateThread(hSSMF, 0);
            Form1->Label59->Caption = "Disabled";
            Form1->Label59->Font->Color = clRed;
         }
      }
   }
}
It would be strange that if you can enable it in the first place, logically it can't be enabled because you specified two 'if', the moment it is enabled, it will be disabled in instant.
- Learning C++ and Assembly language
Raiden
Holy Philosopher
Holy Philosopher
Posts: 889
Joined: Sat Jan 09, 2010 8:45 pm
Location: Capital of Malaysia

Re: Whos' going to make the MapRusher?

Post by Raiden »

New|Life wrote:
Raiden wrote:Hey someone help me on this:

Code: Select all

bool SSMFOn = false;

 void SSMFHotkey()
 {
	 for(;;Sleep(1)){
	 if (GetAsyncKeyState(VK_F1)) {
	 if (SSMFOn == false) {
			SSMFOn = true;
			hSSMF = NewThread(SSMouseFly);
			Form1->Label59->Caption = "Enabled";
			Form1->Label59->Font->Color = clGreen;
		  }

		 if (SSMFOn == true) {
	 SSMFOn = false;
	 TerminateThread(hSSMF, 0);
	 Form1->Label59->Caption = "Disabled";
	 Form1->Label59->Font->Color = clRed;
		  }
   }
	 }
  }
Is there something wrong on the code??? I can enable it by pressing F1 but not disable it.

Language: C++ Builder (RAD Studio)

Code: Select all

BOOL SSMFOn = FALSE;

void SSMFHotkey()
{
   for(;;Sleep(100))
   {
      if (GetAsyncKeyState(VK_F1) < 0)
      {
         if(!SSMFOn)
         {
            SSMFOn = TRUE;
            hSSMF = NewThread(SSMouseFly);
            Form1->Label59->Caption = "Enabled";
            Form1->Label59->Font->Color = clGreen;
         }
         else
         {
            SSMFOn = FALSE;
            TerminateThread(hSSMF, 0);
            Form1->Label59->Caption = "Disabled";
            Form1->Label59->Font->Color = clRed;
         }
      }
   }
}
It would be strange that if you can enable it in the first place, logically it can't be enabled because you specified two 'if', the moment it is enabled, it will be disabled in instant.
Thanks. It works. (I`m coding my bot lol)
Post Reply