 |
Cheat Engine The Official Site of Cheat Engine
|
| View previous topic :: View next topic |
| Author |
Message |
Blaqspade Newbie cheater
Reputation: 0
Joined: 29 Jul 2007 Posts: 20
|
Posted: Tue Jul 31, 2007 8:06 am Post subject: Auto forum poster? |
|
|
| I was wondering if anyone knew of or could make an auto forum poster...Basically all it needs to do is post Bump in a forum like ever 15-20 seconds. Why you ask? Gaia online, you gain gold from posting in the forum and they have a designated forum for spamming to earn gold.
|
|
| Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Tue Jul 31, 2007 8:10 am Post subject: |
|
|
make it yourself...
do you know how to program?
most people here wont just make a program
_________________
|
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Tue Jul 31, 2007 8:17 am Post subject: |
|
|
Well you can use those scripting programs ACtool or something like that. But if you want to do it yourself, you are going to need to use SetCursorPos and SendInput
_________________
|
|
| Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Tue Jul 31, 2007 8:19 am Post subject: |
|
|
ahh yes actools is easy to use
put your browser in full screen and where the forum is
the press ctrl +m while in actools over the buttons you ned to press
this will set your mouse to those when you run the macro
so it will look like
MousePos 386,890
LeftClick
you can also use double click
then
keys aldksjfsldkj
for the post
and another click
_________________
|
|
| Back to top |
|
 |
malfunction Grandmaster Cheater Supreme
Reputation: 0
Joined: 30 Jan 2007 Posts: 1015 Location: http://www.behindthecorner.com/
|
Posted: Tue Jul 31, 2007 8:35 am Post subject: |
|
|
OR just use a automacrorecorder, put it to record, post once, then stop it, set it to replay it 99k times and click replay
_________________
|
|
| Back to top |
|
 |
Symbol I'm a spammer
Reputation: 0
Joined: 18 Apr 2007 Posts: 5094 Location: Israel.
|
Posted: Tue Jul 31, 2007 8:36 am Post subject: |
|
|
ACTool...
hope u can use =\
|
|
| Back to top |
|
 |
DeltaFlyer Grandmaster Cheater
Reputation: 0
Joined: 22 Jul 2006 Posts: 666
|
Posted: Tue Jul 31, 2007 9:01 am Post subject: |
|
|
Learn Java. Get Firefox. Get Firefox extension Tamper Data.
With Tamper Data activated, log into forum, and post once. Read through all of the HTTP headers for the sends and receives. Find out what variables are used to store the POST data. Get the cookie from setCookie as well.
Use the information gathered to make a Java program with the URL class.
This method is better than macros as it allows you to save memory as well as work on the computer while the program is working in the background.
_________________
Wow.... still working at 827... what's INCA thinking?
zomg l33t hax at this place (IE only). Over 150 people have used it, what are YOU waiting for? |
|
| Back to top |
|
 |
Blaqspade Newbie cheater
Reputation: 0
Joined: 29 Jul 2007 Posts: 20
|
Posted: Wed Aug 01, 2007 6:49 am Post subject: |
|
|
| Well I already tried this, and yes I have some programming knowledge. The problem is that the page changes to much, like as in the amount of text in a post from other people might change (lengthening/shortening the page size) and other such variables, thats why I was wondering if someone could do some sort of submit form (the program would also probably have to log you in)
|
|
| Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Wed Aug 01, 2007 9:09 am Post subject: |
|
|
do you have gaia's online MySQL password and username?
if not you cant log in from a form
_________________
|
|
| Back to top |
|
 |
Blaqspade Newbie cheater
Reputation: 0
Joined: 29 Jul 2007 Posts: 20
|
Posted: Wed Aug 01, 2007 6:20 pm Post subject: |
|
|
| Haha know anything about perl? why dont you read up on it and look up on WWW-Mechanize you can submit forms easily, I have made a few automated form submission programs, but that was things much more simple just submitting one form on one page over and over.
|
|
| Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Wed Aug 01, 2007 7:06 pm Post subject: |
|
|
oh how silly of me
it didn't cross my mind, but yes that would be the way to go
_________________
|
|
| Back to top |
|
 |
atlantis Advanced Cheater
Reputation: 0
Joined: 16 Jun 2007 Posts: 69
|
Posted: Thu Aug 02, 2007 4:53 am Post subject: |
|
|
use ASP, do a search on parsing(XMLhttp).. then on meta refresh.. then u can put a asp document on a webserver, then use your webbrowser in the background and still play the game
this variant is also good if you need to get some info on the page first..
|
|
| Back to top |
|
 |
Varreon Advanced Cheater
Reputation: 0
Joined: 13 Jun 2007 Posts: 80
|
Posted: Thu Aug 02, 2007 7:00 pm Post subject: |
|
|
I would use autohotkey, so you dont need another program open while its running. I also find AHK to be very simple
_________________
|
|
| Back to top |
|
 |
Kevin Grandmaster Cheater Supreme
Reputation: 0
Joined: 07 Mar 2007 Posts: 1139 Location: Spiderman-World
|
Posted: Fri Aug 03, 2007 6:30 am Post subject: |
|
|
I once made a Auto message poster (kinda like the one you want, on the website it gives points when you write messages)
| Code: |
procedure PostKeyEx32(key: Word; const shift: TShiftState; specialkey: Boolean);
type
TShiftKeyInfo = record
shift: Byte;
vkey: Byte;
end;
byteset = set of 0..7;
const
shiftkeys: array [1..3] of TShiftKeyInfo =
((shift: Ord(ssCtrl); vkey: VK_CONTROL),
(shift: Ord(ssShift); vkey: VK_SHIFT),
(shift: Ord(ssAlt); vkey: VK_MENU));
var
flag: DWORD;
bShift: ByteSet absolute shift;
i: Integer;
begin
for i := 1 to 3 do
begin
if shiftkeys[i].shift in bShift then
keybd_event(shiftkeys[i].vkey, MapVirtualKey(shiftkeys[i].vkey, 0), 0, 0);
end; { For }
if specialkey then
flag := KEYEVENTF_EXTENDEDKEY
else
flag := 0;
keybd_event(key, MapvirtualKey(key, 0), flag, 0);
flag := flag or KEYEVENTF_KEYUP;
keybd_event(key, MapvirtualKey(key, 0), flag, 0);
for i := 3 downto 1 do
begin
if shiftkeys[i].shift in bShift then
keybd_event(shiftkeys[i].vkey, MapVirtualKey(shiftkeys[i].vkey, 0),
KEYEVENTF_KEYUP, 0);
end;
end;
|
use that code to make it write something
and this was the "Bot"
| Code: |
Sleep(2000);
SetCursorPos(250, 335);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
sleep(2000);
PostKeyEx32(Ord('K'), [], False);
Sleep(2150);
SetCursorPos(250, 445);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
sleep(2000);
SetCursorPos(250, 335);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
sleep(2000);
PostKeyEx32(Ord('S'), [], False);
Sleep(2150);
SetCursorPos(250, 445);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
Sleep(2000);
|
As you see 'PostKeyEx32' is from the first procedure i gave you. remember to use Sleep (you can decrease sleep, its just because the website i was using had a time limit, there had to be at least 5 seconds beetween each message)
for the PostKeyEx i take no credit
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
|