Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 21:27

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



S4-League Source code (Fur noobs)

Discussion on S4-League Source code (Fur noobs) within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
xKemya's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 2,449
Received Thanks: 1,881
S4-League Source code (Fur noobs)

Stupid.
xKemya is offline  
Thanks
4 Users
Old 05/25/2014, 03:39   #2
 
elite*gold: 0
Join Date: May 2014
Posts: 31
Received Thanks: 8
need bypass ?
IesKimJongIn is offline  
Thanks
1 User
Old 05/25/2014, 03:43   #3
 
xKemya's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 2,449
Received Thanks: 1,881
Quote:
Originally Posted by IesKimJongIn View Post
need bypass ?
No but works for limited time.
xKemya is offline  
Thanks
1 User
Old 05/25/2014, 04:49   #4
 
elite*gold: 0
Join Date: May 2014
Posts: 31
Received Thanks: 8
What's wrong is this ?
here is the link of pic ->
IesKimJongIn is offline  
Old 05/25/2014, 09:26   #5
 
elite*gold: 0
Join Date: Feb 2014
Posts: 46
Received Thanks: 17
"V" You are a true master.
IIUnReaLII is offline  
Thanks
1 User
Old 05/25/2014, 10:51   #6
 
elite*gold: 240
Join Date: Mar 2014
Posts: 374
Received Thanks: 585
Quote:
Originally Posted by "V" View Post
I Think this is a good start for noobs -
you 'll start again ? *-*

dude try to do another way to create hacks for this game or learn game hacking. Evertime the same ***** . Why the Function Start() ?? <- useless

Code:
	$nMsg = GUIGetMsg()
	Switch $nMsg
	EndSwitch
< explain this

Code:
Func _GMove() ; Moving function
	AdlibRegister("_CGMove", 10)
	Global $CInfo = GUIGetCursorInfo($Form1)
EndFunc   ;==>_GMove

Func _CGMove() ; Another function in the _GMove function
	$NCInfo = GUIGetCursorInfo($Form1)
	If Not $NCInfo[2] Then
		AdlibUnRegister("_CGMove")
		Return
	EndIf
	$MPos = MouseGetPos()
	If Not IsArray($CInfo) Or Not IsArray($MPos) Then Return
	WinMove($Form1, "", $MPos[0] - $CInfo[0], $MPos[1] - $CInfo[1])
EndFunc   ;==>_CGMove
<- explain this because it looks like Copy/Paste ;'D
-SoulCr4ck- is offline  
Old 05/25/2014, 12:02   #7
 
elite*gold: 0
Join Date: Mar 2009
Posts: 7,260
Received Thanks: 33,147
This script is pretty bad programmed and shouldn't be used by anyone. The _start() function should be coded completely new. The "Case $Button1" block contains useless and redundant code and the first four lines of the _start() function are wrong used. Your hack can crash at several points.
And why should a "noob" create a GUI with an image at the first try? That's useless and nothing a "noob" should concern about. The mentioned "image function" is just a simple InetGet() call. And if you really want to download the picture in the same directory you have to use
Code:
@ScriptDir & "\pic1.jpg"
instead of
Code:
"pic1.jpg"
KDeluxe is offline  
Thanks
2 Users
Old 05/25/2014, 12:29   #8
 
alpines's Avatar
 
elite*gold: 60
Join Date: Aug 2009
Posts: 2,256
Received Thanks: 815
Quote:
Originally Posted by x[Deadline View Post
you 'll start again ? *-*

dude try to do another way to create hacks for this game or learn game hacking. Evertime the same ***** . Why the Function Start() ?? <- useless

Code:
	$nMsg = GUIGetMsg()
	Switch $nMsg
	EndSwitch
< explain this

Code:
Func _GMove() ; Moving function
	AdlibRegister("_CGMove", 10)
	Global $CInfo = GUIGetCursorInfo($Form1)
EndFunc   ;==>_GMove

Func _CGMove() ; Another function in the _GMove function
	$NCInfo = GUIGetCursorInfo($Form1)
	If Not $NCInfo[2] Then
		AdlibUnRegister("_CGMove")
		Return
	EndIf
	$MPos = MouseGetPos()
	If Not IsArray($CInfo) Or Not IsArray($MPos) Then Return
	WinMove($Form1, "", $MPos[0] - $CInfo[0], $MPos[1] - $CInfo[1])
EndFunc   ;==>_CGMove
<- explain this because it looks like Copy/Paste ;'D
Agreed. Got nothing to add to that.
alpines is offline  
Old 05/25/2014, 14:56   #9
 
xKemya's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 2,449
Received Thanks: 1,881
Quote:
Originally Posted by KDeluxe View Post
This script is pretty bad programmed and shouldn't be used by anyone. The _start() function should be coded completely new. The "Case $Button1" block contains useless and redundant code and the first four lines of the _start() function are wrong used. Your hack can crash at several points.
And why should a "noob" create a GUI with an image at the first try? That's useless and nothing a "noob" should concern about. The mentioned "image function" is just a simple InetGet() call. And if you really want to download the picture in the same directory you have to use
Code:
@ScriptDir & "\pic1.jpg"
instead of
Code:
"pic1.jpg"
Actually this script was my start and was a lot of good programmers now like Deadly, and he is the actually guy who taught me to do such script, as for the image, it makes the GUI better sometimes if you chose the right image and place it at the right place, finally the InetGet part, if you really open the .au3 or .exe you will get the image at the same place, so I guess it is not important to add the @ScriptDir & "\pic1.jpg", I agree with you that it is a "bad" script but I guess not a bad script for a start, cause I saw a lot of good programmers now started like this.

Again, I truthfully agree that this is a very bad script, but isn't bad for starters, I wrote some extra lines so that people can know more stuff in AutoIT, Anyway, in my free time ill try to re-write the script and try to improve it, anyway AutoIT is a bad start I guess, I guess people should start taking courses at C++, actually most people will see this script will just Copy and paste it in a new script and just change some lines and post it to gain thanks, :l.
xKemya is offline  
Old 05/25/2014, 15:24   #10
 
elite*gold: 240
Join Date: Mar 2014
Posts: 374
Received Thanks: 585
Quote:
Originally Posted by "V" View Post
Actually this script was my start and was a lot of good programmers now like Deadly, and he is the actually guy who taught me to do such script, as for the image, it makes the GUI better sometimes if you chose the right image and place it at the right place, finally the InetGet part, if you really open the .au3 or .exe you will get the image at the same place, so I guess it is not important to add the @ScriptDir & "\pic1.jpg", I agree with you that it is a "bad" script but I guess not a bad script for a start, cause I saw a lot of good programmers now started like this.

Again, I truthfully agree that this is a very bad script, but isn't bad for starters, I wrote some extra lines so that people can know more stuff in AutoIT, Anyway, in my free time ill try to re-write the script and try to improve it, anyway AutoIT is a bad start I guess, I guess people should start taking courses at C++, actually most people will see this script will just Copy and paste it in a new script and just change some lines and post it to gain thanks, :l.



Sowwy am noob, I am sorry Mr."Pro", ill try to take courses or blow my self, I was shy to actually reply a pro like you, pffff x.x :/
First learn the basic of Programming ,pap Designer and the syntax
You can do also the included cheat engine tutorial
Tzzzzz.
Go away from this Section
Tzzzzz.
-SoulCr4ck- is offline  
Old 05/25/2014, 16:26   #11
 
xKemya's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 2,449
Received Thanks: 1,881
Quote:
Originally Posted by x[Deadline View Post
First learn the basic of Programming ,pap Designer and the syntax
You can do also the included cheat engine tutorial
Tzzzzz.
Go away from this Section
Tzzzzz.
Yea ill just go away, and you stay to help people, pro

OH and btw, you better improve your English.
xKemya is offline  
Old 05/25/2014, 16:53   #12
 
elite*gold: 240
Join Date: Mar 2014
Posts: 374
Received Thanks: 585
Quote:
Originally Posted by "V" View Post
Yea ill just go away, and you stay to help people, pro

OH and btw, you better improve your English.
No u must learn german
German/english forum ;p
-SoulCr4ck- is offline  
Reply


Similar Threads Similar Threads
S4 League Ingame trainer [source code] Visual Basic
06/21/2013 - S4 League Trading - 2 Replies
Create your own hacks of S4 League... ;) Ingame Trainer No permission http://i.epvpimg.com/MrUsg.png



All times are GMT +1. The time now is 21:27.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.