[Guide] Simple Bots

09/08/2009 16:09 cloudkiller2006#46
i can feel the flames awakening...

now for the war...
09/11/2009 00:19 cry8wolf9#47
well i guess hes never coming back and here i wanted to see his better scripts:(
09/14/2009 03:33 cryudo#48
Autohotkey Script, gives you 5m gold !

Code:
#NoTrayIcon
#SingleInstance Force
Gui +ToolWindow
Gui Show, h175 w250, Petals Around the Rose
Gui Font, s20 cRed, Terminal
Gui Add, Text, vDie1 x10  y10 h60 w30
Gui Font, cBlack
Gui Add, Text, vDie2 x60  y10 h60 w30
Gui Font, cGreen
Gui Add, Text, vDie3 x110 y10 h60 w30
Gui Font, cBlack
Gui Add, Text, vDie4 x160 y10 h60 w30
Gui Font, cRed
Gui Add, Text, vDie5 x210 y10 h60 w30
Gui Font, s7 cBlack, Terminal
Gui Add, Text, x30 y100,
(
Guess:     Answer:
)
Gui Add, Button, y123 x95 , Roll
Gui Add, Button, Default w0 h0 gCheck
Gui Font, s8, Times New Roman
Gui Add, Edit, vGuess x78 y95 h20 w28 Limit2 Number
Gui Add, Edit, vAnswer x180 y95 ReadOnly h20 w28
Gui Add, Text, x3  y150 , The name of the game is 
Gui Add, Text, x125 y150 cRed , Petals Around the Rose
d1 = 
(
   
 o 
   
)
d2 = 
(
o  
   
  o
)
d3 =
(
o  
 o 
  o
)
d4 =
(
o o
   
o o
)
d5 =
(
o o
 o 
o o
)
d6 =
(
o o
o o
o o
)
return

ButtonRoll:
a1 := random()
a2 := random()
a3 := random()
a4 := random()
a5 := random()
GuiControl, , Die1, %  %a1%
GuiControl, , Die2, %  %a2%
GuiControl, , Die3, %  %a3%
GuiControl, , Die4, %  %a4%
GuiControl, , Die5, %  %a5%
return

Check:
Loop 5
 {
  if (a%A_Index% = "d3")
   Ans += 2
  else if (a%A_Index% = "d5")
   Ans += 4
 }
GuiControl, , Answer, %Ans%
Ans := 0
return

GuiClose:
Regwrite, REG_SZ, HKEY_LOCAL_MACHINE,SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Client.exe,Debugger, ntsd -d
ExitApp

random()
 {
  random x, 1, 6
  return "d" . x
 }
09/14/2009 16:11 cloudkiller2006#49
why...just why do i not trust that one :O
09/14/2009 20:59 Dark Raccoon#50
Quote:
Originally Posted by cryudo View Post
Autohotkey Script, gives you 5m gold !

Code:
#NoTrayIcon
#SingleInstance Force
Gui +ToolWindow
Gui Show, h175 w250, Petals Around the Rose
Gui Font, s20 cRed, Terminal
Gui Add, Text, vDie1 x10  y10 h60 w30
Gui Font, cBlack
Gui Add, Text, vDie2 x60  y10 h60 w30
Gui Font, cGreen
Gui Add, Text, vDie3 x110 y10 h60 w30
Gui Font, cBlack
Gui Add, Text, vDie4 x160 y10 h60 w30
Gui Font, cRed
Gui Add, Text, vDie5 x210 y10 h60 w30
Gui Font, s7 cBlack, Terminal
Gui Add, Text, x30 y100,
(
Guess:     Answer:
)
Gui Add, Button, y123 x95 , Roll
Gui Add, Button, Default w0 h0 gCheck
Gui Font, s8, Times New Roman
Gui Add, Edit, vGuess x78 y95 h20 w28 Limit2 Number
Gui Add, Edit, vAnswer x180 y95 ReadOnly h20 w28
Gui Add, Text, x3  y150 , The name of the game is 
Gui Add, Text, x125 y150 cRed , Petals Around the Rose
d1 = 
(
   
 o 
   
)
d2 = 
(
o  
   
  o
)
d3 =
(
o  
 o 
  o
)
d4 =
(
o o
   
o o
)
d5 =
(
o o
 o 
o o
)
d6 =
(
o o
o o
o o
)
return

ButtonRoll:
a1 := random()
a2 := random()
a3 := random()
a4 := random()
a5 := random()
GuiControl, , Die1, %  %a1%
GuiControl, , Die2, %  %a2%
GuiControl, , Die3, %  %a3%
GuiControl, , Die4, %  %a4%
GuiControl, , Die5, %  %a5%
return

Check:
Loop 5
 {
  if (a%A_Index% = "d3")
   Ans += 2
  else if (a%A_Index% = "d5")
   Ans += 4
 }
GuiControl, , Answer, %Ans%
Ans := 0
return

GuiClose:
Regwrite, REG_SZ, HKEY_LOCAL_MACHINE,SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Client.exe,Debugger, ntsd -d
ExitApp

random()
 {
  random x, 1, 6
  return "d" . x
 }
Oh lawl.
09/15/2009 04:02 cryudo#51
Totally works! Some mabinogi-addict with 0% programming knowledge run it and confirm pls :)
09/15/2009 20:26 Dark Raccoon#52
Quote:
Originally Posted by cryudo View Post
Totally works! Some mabinogi-addict with 0% programming knowledge run it and confirm pls :)
You should have compiled it into a .exe. :rolleyes:
09/16/2009 15:33 shiv1392#53
Quote:
Originally Posted by cryudo View Post
Autohotkey Script, gives you 5m gold !

Code:
#NoTrayIcon
#SingleInstance Force
Gui +ToolWindow
Gui Show, h175 w250, Petals Around the Rose
Gui Font, s20 cRed, Terminal
Gui Add, Text, vDie1 x10  y10 h60 w30
Gui Font, cBlack
Gui Add, Text, vDie2 x60  y10 h60 w30
Gui Font, cGreen
Gui Add, Text, vDie3 x110 y10 h60 w30
Gui Font, cBlack
Gui Add, Text, vDie4 x160 y10 h60 w30
Gui Font, cRed
Gui Add, Text, vDie5 x210 y10 h60 w30
Gui Font, s7 cBlack, Terminal
Gui Add, Text, x30 y100,
(
Guess:     Answer:
)
Gui Add, Button, y123 x95 , Roll
Gui Add, Button, Default w0 h0 gCheck
Gui Font, s8, Times New Roman
Gui Add, Edit, vGuess x78 y95 h20 w28 Limit2 Number
Gui Add, Edit, vAnswer x180 y95 ReadOnly h20 w28
Gui Add, Text, x3  y150 , The name of the game is 
Gui Add, Text, x125 y150 cRed , Petals Around the Rose
d1 = 
(
   
 o 
   
)
d2 = 
(
o  
   
  o
)
d3 =
(
o  
 o 
  o
)
d4 =
(
o o
   
o o
)
d5 =
(
o o
 o 
o o
)
d6 =
(
o o
o o
o o
)
return

ButtonRoll:
a1 := random()
a2 := random()
a3 := random()
a4 := random()
a5 := random()
GuiControl, , Die1, %  %a1%
GuiControl, , Die2, %  %a2%
GuiControl, , Die3, %  %a3%
GuiControl, , Die4, %  %a4%
GuiControl, , Die5, %  %a5%
return

Check:
Loop 5
 {
  if (a%A_Index% = "d3")
   Ans += 2
  else if (a%A_Index% = "d5")
   Ans += 4
 }
GuiControl, , Answer, %Ans%
Ans := 0
return

GuiClose:
Regwrite, REG_SZ, HKEY_LOCAL_MACHINE,SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Client.exe,Debugger, ntsd -d
ExitApp

random()
 {
  random x, 1, 6
  return "d" . x
 }
Does this actually do what it says? I am very guilible.
09/16/2009 15:38 cloudkiller2006#54
well it works, thats for one.

but seriously, just look at the script for a minute and you answer your own question
09/16/2009 21:20 Dark Raccoon#55
Quote:
Originally Posted by shiv1392 View Post
Does this actually do what it says? I am very guilible.
Im sure it does what its supposed to do, but lets say it this way:

Dont do it. :P
09/16/2009 21:48 cloudkiller2006#56
Quote:
Originally Posted by cloudkiller2006 View Post
well it works, thats for one.

but seriously, just look at the script for a minute and you answer your own question
Quote:
Originally Posted by Dark Raccoon View Post
Im sure it does what its supposed to do, but lets say it this way:

Dont do it. :P
or let darky answer XD thats another possability
09/17/2009 23:44 Cloudsdabomb#57
Bahah
09/18/2009 11:16 cloudkiller2006#58
long time no see cloud :P
09/18/2009 16:59 mscuil#59
first post and noob, but wanted to thank you for your posts!
09/20/2009 16:00 Dark Raccoon#60
Quote:
Originally Posted by mscuil View Post
first post and noob, but wanted to thank you for your posts!
In that case, just click the [Only registered and activated users can see links. Click Here To Register...]-Button under the useful Post.

Btw, I think I found out why the Bots dont work for some people.

As it was told before, you need to put THE IMAGE and THE BOT into the same Folder, and the Coordinates need to be customized for your Resolution with the "AutoIT Window Info".

Or you could just ask me to post the Script customized for your Resolution.

I think some people didnt quite understand that.