GamerzPlanet - For All Your Online Gaming Needs!!

Go Back   GamerzPlanet - For All Your Online Gaming Needs!! > GamerzPlanet.net > GamerzPlanet Discussion

GamerzPlanet Discussion Discuss anything about the GamerzPlanet.net site in this forum.



How to survive @ GamerzPlanet

GamerzPlanet Discussion


Reply
 
Thread Tools Display Modes
Old 05-13-2008, 09:42 PM   #1
Registered User
 
Last Online: 07-08-2008 09:53 PM
Join Date: May 2008
Location: Singapore
Age: 29
Posts: 18
Thanks: 0
Thanked 10 Times in 2 Posts
IntimacyR is on a distinguished road
iTrader: 0 / 0%
Points: 3,665.78
Bank: 0.00
Total Points: 3,665.78
How to survive @ GamerzPlanet

Hey everyone,
I made this quick little eBook type thing for anyone who wanted to be more helpful and doesn't really know how.
It will be updated with more AutoIt stuff, and more survival tips . Now instead of flaming newbs point them here.
Thanks



Chapter 1- Who is this guide for?

Here is a guide that can help all kinds of people. If you want to get better at being a more helpfu at GamerzPlanet, this guide is for you. We are going to look at:
· Scanning Files
· Giving constructive feedback
· How to make your posts meaningful
· And Basic Scripting



Chapter Two- Scanning Files

Want to contribute to the community in the easiest way? Scan a file. If someone posts a bot or a macro that no one has scanned yet, and comes from a relatively new, or not trusted member, scan it for everyone. Go to any of the following sites:
· [Only registered and activated users can see links. ]
· [Only registered and activated users can see links. ]
· [Only registered and activated users can see links. ]
Any other online virus scanning site will work, but it is recommended that you use these. First, download the suspicious program, but DO NOT OPEN IT. Now, go to any of the virus scan websites listed above, and click the browse button. Find the suspicious file that is downloaded to your computer, and see the results. Post these up and give your feedback on either the scan or the program.

Chapter Three- Giving Constructive Feedback

If you see a bot, macro, or tool that you found a bug or glitch with, post it! Be sure to make your post positive and not flame the threadstarter. Tell them that while you were using his/her program, you found an error with the coding. Tell them what you were doing when the error occurred, and tell them what happened after the error happened (Did the program close? Did your computer shut down?).

Chapter Four- Making your Posts Meaningful

Have a question? Really want to post it? The first thing you should do is use the search button. The search button is located at the top right of your screen, and try searching the forums for the answer(s) to your question(s). Also, check through the announcements! Your answer might be in there!

If you have searched, and checked the announcements, you might want to think about posting. Please use search and the announcements before posting!


Section Two- AutoIt™
Intro
For this guide, we are going to use AutoIt™, because it is powerful for a macro script, and very easy to learn. First off, we are going to learn the MouseClick() function. Download AutoIt from [Only registered and activated users can see links. ]. Open your SciTE script editor from your AutoIt folder in your start menu. Or you can right click on your desktop, press new, and click AutoIt script. Now that we’ve got our editor open we can start scripting.

Chapter Two- The Function- MouseClick()
OK so if you already know what a function is you can skip this section. For those that don’t know, a function is a series of commands that you can execute easily in one, or more lines of code. For example, in AutoIt there is a built in function called MouseClick(). What goes inside the parentheses are called parameters. The parameters tell the function specifically how to work, but you have to know the parameters that a function requires before using that function. If you don’t really get that that’s OK, because it will get easier once I explain the MouseClick() function.

OK, so the parameters for the MouseClick() function go like this:

MouseClick(“MouseButton[Left Or Right]”, x-coord, y-coord, # of clicks, speed)


So for example, if I wrote:

MouseClick(“left”, 60, 60, 2, 1)

My mouse would move to 60, 60 (speed being 1-10, 1 instantly) instantly, and left click twice. So that’s pretty much the MouseClick() function.

There is two more good functions to learn, the Sleep() function, and the Send() function. These functions are both really easy!
The sleep function pauses the script in the middle, so if I wanted it to click once, pause for two seconds, and click again, I would write:

MouseClick(“left”, 30, 70, 1, 3)
Sleep(2000)
MouseClick(“left”, 30, 70, 1, 3)
The parameters inside the Sleep() function are the milliseconds in which to wait.
Our last function we are going to learn is the Send() function. There are going to be two smaller functions used in this[ProcessClose and Run], but if you read carefully, you can probably figure out what they do. With the Send() function, you can make the bot or macro type keys. Also, if you write a ; in AutoIt, it automaticially makes whatever comes next a comment, so only people who open the script can see them. All of the comments are going to be in green in this guide. But if I wanted my bot to open notepad, type Hi, and close notepad, I would write:

Run(“notepad.exe”) ;Open Notepad
Sleep(2000) ;wait for it to open
Send(“Hi”)
Sleep(2000)
ProcessClose(“notepad.exe”) ; Close Notepad as a process

Another thing the SendKeys() can be used for is sending enter Send(“{Enter}”)
Or sending F1, or F2, or F3:
Send(“{F1}”)
---More keys are"{CTRLDOWN}" , "{CTRLDOWN}" , "{LSHIFT}" , and "{RSHIFT}" .

Chapter Three- User Defined Functions (or UDFs)
So lets say I had a bot that clicked at one spot, clicked at another spot, and clicked at a third spot before closing. It repeated this three times. So, instead of writing this three times I would use a user defined function. A user defined function is just what the name is, you make up your own function. So lets say I wanted to call this sequence of clicks, Click(). Here’s how I would go about doing this:

Func Click() ;Starts the UDF
MouseClick(“left”, 30, 70, 1, 3)
Sleep(2000)
MouseClick(“left”, 60, 70, 1, 3)
Sleep(2000)
MouseClick(“left”, 80, 70, 1, 3)
EndFunc ;Ends the Function

Click()
Click()
Click()
Writing Click() would execute all of the commands inside the UDF. UDFs can have almost any commands inside of them, and are really helpful in long scripts.

Chapter Four – Loops
You need to know how to do a loop in AutoIt to make a macro, because when you make a macro, you want it to run continuously. The loop I use most is a 'While', and it is very simple to use. If you want a loop to go forever simply type this:While 1 ;starts loop;Stuff Inside Loop
WEnd ;where loop endsSay you want something to run 10 times. You can use a counter variable to mark how many times something has ran. For example:$counter=1 ;declares a variable "$counter" and sets its value at 1.Note you can use any variable as long as it starts with a $. So I could say $Chicken=1, but I would have to say this throughout the whole script.
While $counter<=10 ;this loop will run as long as $counter is less than or equal to 10
MouseClick("left",150,100,1,1) ;code inside loop
sleep(1000) ;code inside loop
$counter=$counter+1 ;increments counter by 1. This makes this a non-infinite loop
WEnd ; the end of loop

Chapter Five- Hot Keys
Say you want a loop to run forever, but exit when you hit "Ctrl+Alt+x". You have to set a hotkey, that when pressed, will trigger a Use-Defined Function. For example, this would be the whole program:HotKeySet("^!x","QuitLoop") ; when the program is running, hitting "ctrl+alt+x" will call the function called "Quit"

$counter=0 ; declares a counter variable

Func QuitLoop() ;user defined func called 'QuitLoop'
$counter=1 ; if func QuitLoop is called, $counter will become 1
EndFunc

While $counter=0 ; loop goes while $counter is 0
MouseClick("left",150,60,1,1) ; code inside loop
sleep(1000) ; code inside loop
WEnd ;end of loop
In the above program, the loop will continue running until somebody hits "Ctrl+Alt+x', making $counter=1. If you want to make it so the whole program will automatically exit, use this hotkey:
HotKeySet("^!x","QuitProg") ;sets hotkey
Func QuitProg() ;user-defined-function
Exit ; quits out of the script
EndFunc

© 2008 IntimacyR and GamerzPlanet™
All Rights Reserved

Please- if you have any comments- things to be added or removed. POST HERE!
Hope you enjoyed.
IntimacyR is offline   Reply With Quote
The Following 9 Users Say Thank You to IntimacyR For This Useful Post:
CHRISANIMEFAN (09-29-2008), Exspire (07-31-2008), foodygoods (05-14-2008), r2k (05-14-2008), Skyline_GTR (05-13-2008), Tib (05-14-2008), Tooya (05-20-2008), wkimisan (07-16-2008), [ilikepie] (08-24-2008)
Sponsored Links
Old 05-13-2008, 09:58 PM   #2
Mega Man Hunter
 
SteveSOSP3's Avatar
 
Last Online: Today 01:37 PM
Join Date: Nov 2005
Location: A.D. 20XX
Age: 19
Posts: 6,205
Thanks: 328
Thanked 1,303 Times in 464 Posts
SteveSOSP3 is on a distinguished road
iTrader: 0 / 0%
Points: 6,686.21
Bank: 84,227.41
Total Points: 90,913.62
     
     
     
     
Re: How to survive @ GamerzPlanet

You forgot to add, "Don't talk to SteveSOSP3."

Adding that will save millions of lives in Africa.
__________________
[Only registered and activated users can see links. ]

^^^^^^^^^^^^^^^^^Click on my signature for private MapleStory and RuneScape hacks/programs.

[22:48] * @Dynamo|Calc tickles Sv3nt3k|History.
[22:48] <@Dynamo|Calc> A cootchy cootchy cooooo.
[22:48] * @Sv3nt3k|History giggles moar
[22:48] * @Dynamo|Calc sets Sv3nt3k|History on fire.
[22:48] <@Dynamo|Calc> TAKE THAT!
[22:48] <@Sv3nt3k|History> Oh **** you to hell.

SteveSOSP3 is offline   Reply With Quote
Old 05-13-2008, 10:15 PM   #3
Registered User
 
Last Online: 07-08-2008 09:53 PM
Join Date: May 2008
Location: Singapore
Age: 29
Posts: 18
Thanks: 0
Thanked 10 Times in 2 Posts
IntimacyR is on a distinguished road
iTrader: 0 / 0%
Points: 3,665.78
Bank: 0.00
Total Points: 3,665.78
Talking Re: How to survive @ GamerzPlanet

Quote:
Originally Posted by SteveSOSP3 View Post
You forgot to add, "Don't talk to SteveSOSP3."

Adding that will save millions of lives in Africa.
hmm.. maybe I should consider, not to PM any mod unnecessarily?

Last edited by IntimacyR; 05-13-2008 at 10:26 PM.
IntimacyR is offline   Reply With Quote
Old 05-14-2008, 12:59 AM   #4
Registered User
 
Last Online: Today 05:13 AM
Join Date: Dec 2005
Location: C:\WINDOWS\system32
Posts: 717
Thanks: 3
Thanked 192 Times in 55 Posts
deltashock is on a distinguished road
iTrader: 0 / 0%
Points: 1,836.13
Bank: 56,178.33
Total Points: 58,014.46
Re: How to survive @ GamerzPlanet

nicely done guide you made... keep the good work...
deltashock is offline   Reply With Quote
Old 05-14-2008, 01:21 AM   #5
Registered User
 
Last Online: 07-08-2008 09:53 PM
Join Date: May 2008
Location: Singapore
Age: 29
Posts: 18
Thanks: 0
Thanked 10 Times in 2 Posts
IntimacyR is on a distinguished road
iTrader: 0 / 0%
Points: 3,665.78
Bank: 0.00
Total Points: 3,665.78
Re: How to survive @ GamerzPlanet

Quote:
Originally Posted by deltashock View Post
nicely done guide you made... keep the good work...
Thanks for your compliment... :)
IntimacyR is offline   Reply With Quote
Old 05-14-2008, 01:41 AM   #6
r2k
Administrator
 
Last Online: Today 06:36 AM
Join Date: Nov 2005
Posts: 4,380
Thanks: 10
Thanked 659 Times in 368 Posts
r2k has disabled reputation
iTrader: 0 / 0%
Points: 119,187.67
Bank: 0.00
Total Points: 119,187.67
   
Re: How to survive @ GamerzPlanet

Nice guide, pinned.
__________________

Visit this website to[Only registered and activated users can see links. ] online.

r2k is offline   Reply With Quote
Old 05-14-2008, 02:08 AM   #7
Moderator
 
LobBob's Avatar
 
Last Online: Today 07:36 AM
Join Date: Nov 2005
Location: Currently@GzP. Going Behind You
Posts: 1,954
Thanks: 15
Thanked 605 Times in 292 Posts
LobBob is on a distinguished road
iTrader: 0 / 0%
Points: 33,344.65
Bank: 4,900.60
Total Points: 38,245.25
  
Re: How to survive @ GamerzPlanet

Quote:
Originally Posted by IntimacyR View Post
hmm.. maybe I should consider, not to PM any mod unnecessarily?
You could add that in. Steve was just joking.
__________________

Thanks Iced

[Only registered and activated users can see links. ]

If you have any questions/problems regarding GamerzPlanet, feel free to drop me a [Only registered and activated users can see links. ].

Join [Only registered and activated users can see links. ] now!

Quote:
Quotes for the Lulz:
<1>I know you are nobody's fool. You're everybody's
<2>I could say nice things about you, but I would rather tell the truth
<3>I like you. People say I've no taste, but I like you
<4>I can't talk to you right now; tell me, where will you be in ten years, I'll make sure I'm not there.
LobBob is offline   Reply With Quote
Old 05-14-2008, 02:15 AM   #8
Registered User
 
Last Online: 07-08-2008 09:53 PM
Join Date: May 2008
Location: Singapore
Age: 29
Posts: 18
Thanks: 0
Thanked 10 Times in 2 Posts
IntimacyR is on a distinguished road
iTrader: 0 / 0%
Points: 3,665.78
Bank: 0.00
Total Points: 3,665.78
Re: How to survive @ GamerzPlanet

Thanks all for pinning this topic.. Hope that I will be well accepted in this community... Will try as much as I can to help the people here... Thanks!

IntimacyR added 6 Minutes and 49 Seconds later...< --- Please use the edit button in the future--- >

LobBob, I am facing a small problem right now. I cant seems to post with quotes and PM anyone.. can you get back to me on this? Quite annoying..

Last edited by IntimacyR; 05-14-2008 at 02:22 AM. Reason: Automerged Doublepost
IntimacyR is offline   Reply With Quote
Old 05-14-2008, 02:26 AM   #9
GzP's Eruruu
 
swmnbn's Avatar
 
Last Online: 10-04-2008 03:11 AM
Join Date: Nov 2005
Location: Singapore
Posts: 4,040
Thanks: 14
Thanked 457 Times in 300 Posts
swmnbn is on a distinguished road
iTrader: 0 / 0%
Points: 5,185.65
Bank: 0.43
Total Points: 5,186.08
Re: How to survive @ GamerzPlanet

I think i should start using autoit. =X

As for comments, nice guide. And for the real reason i'm posting, what font are you using? That looks really good. =P
__________________

siggy <3 kurisu
swmnbn is offline   Reply With Quote
Old 05-14-2008, 02:44 AM   #10
r2k
Administrator
 
Last Online: Today 06:36 AM
Join Date: Nov 2005
Posts: 4,380
Thanks: 10
Thanked 659 Times in 368 Posts
r2k has disabled reputation
iTrader: 0 / 0%
Points: 119,187.67
Bank: 0.00
Total Points: 119,187.67
   
Re: How to survive @ GamerzPlanet

Bodoni MT Black & Kristen ITC.
__________________

Visit this website to[Only registered and activated users can see links. ] online.

r2k is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes