Forum
 
Go Back   D3scene > Hot Games > Warcraft 3 forum > Warcraft 3 Bots

Gaypimp's Battle.net Joiner (with source)

This is a discussion on Gaypimp's Battle.net Joiner (with source) within the Warcraft 3 Bots forum part of the Warcraft 3 forum category; This is almost the same tool as Marcdk's and props to him for making it first. The difference between his ...

Welcome on D3scene.com! Make sure to register - it's free and very quick! You have to register before you can post and participate in our discussions with 35000 other registered members. Downloads, user profiles and some forums can only be seen by registered members. After you create your free account you will be able to customize many options, you will have the full access to new hacks, latest cheats and last but not least will see no advertisements at all. We would love to see you around in our community!
Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 09-22-2008, 05:01 AM
TyranO's Avatar
Custom User Title
 
Join Date: Aug 2008
Location: Azeroth
Posts: 197
Reputation: 484
Rep Power: 3
TyranO is a glorious beacon of lightTyranO is a glorious beacon of lightTyranO is a glorious beacon of lightTyranO is a glorious beacon of lightTyranO is a glorious beacon of light
Gaypimp's Battle.net Joiner (with source)

This is almost the same tool as Marcdk's and props to him for making it first. The difference between his and this one is that it works on all resolutions and graphic settings. You have to set the delays between each phase of the thing but it's not complicated. All customization is done in run.ini

This script is a 5 minute job and there's no neat interface.

Feats:

Opens warcraft 3, joins bnet and then joins channel, then types a chosen message with year/day/hour/sec in brackets before it.

Source:

run.au3

Quote:
#include <Date.au3>

$directory = IniRead("run.ini", "Settings", "run", "NotFound")
$channel = IniRead("run.ini", "Settings", "channel", "NotFound")
$msg = IniRead("run.ini", "Settings", "msg", "NotFound")
$pass = IniRead("run.ini", "Settings", "pass", "NotFound")
$delay1 = IniRead("run.ini", "Settings", "delay1", "NotFound")
$delay2 = IniRead("run.ini", "Settings", "delay2", "NotFound")
$delay3 = IniRead("run.ini", "Settings", "delay3", "NotFound")
$delay4 = IniRead("run.ini", "Settings", "delay4", "NotFound")
$delay5 = IniRead("run.ini", "Settings", "delay5", "NotFound")
$bnetkey = IniRead("run.ini", "Settings", "bnetkey", "NotFound")
$channelkey = IniRead("run.ini", "Settings", "channelkey", "NotFound")

Run($directory)
Sleep($delay1)
Send($bnetkey)
Sleep($delay2)
Send($pass)
Send("{Enter}")
Sleep($delay3)
Send($channelkey)
Sleep($delay4)
Send($channel)
Send("{Enter}")
Sleep($delay5)
Send("["& _Now())
Send("]: ")
Send($msg)
Send("{Enter}")
run.ini

Quote:
[Settings]
run = "C:\Program Files\Warcraft III\Frozen Throne.exe"
channel = "gaypimp"
msg = "Hi guys"
pass = "yourpasshere"
delay1 = 5000
delay2 = 5000
delay3 = 5000
delay4 = 3000
delay5 = 3000
bnetkey = "{B}"
channelkey = "{H}"
Attached Files
File Type: zip GPjoin.zip (290.2 KB, 44 views)
Reply With Quote
D3scene
Welcome to D3scene - probably the best location for all Gamers.

To participate in our friendly environment you have to register. After completing registration you will have full access to all threads and features. We care about members and try to make your stay as pleasant as possible. We are unique with the following feature for members - you will not see a single Advertisement!


The best: registration is completely free. It will not cost you a single penny or harm you in any way. You will lose nothing except 1 minute of your time. So why not register? We would be happy to see you around!
  #2  
Old 09-29-2008, 10:01 PM
justinglenwebb's Avatar
Newbie
 
Join Date: Jun 2007
Posts: 4
Reputation: 0
Rep Power: 2
justinglenwebb is an unknown quantity at this point
i need to customize it?

on the run.au3 file i need to change 1 line of text on it because when my warcraft 3 game pops up i have a sound fx error i have to press enter to close heres how i want it to be:

#include <Date.au3>
$directory = IniRead("run.ini", "Settings", "run", "NotFound")
$channel = IniRead("run.ini", "Settings", "channel", "NotFound")
$msg = IniRead("run.ini", "Settings", "msg", "NotFound")
$pass = IniRead("run.ini", "Settings", "pass", "NotFound")
$delay1 = IniRead("run.ini", "Settings", "delay1", "NotFound")
$delay2 = IniRead("run.ini", "Settings", "delay2", "NotFound")
$delay3 = IniRead("run.ini", "Settings", "delay3", "NotFound")
$delay4 = IniRead("run.ini", "Settings", "delay4", "NotFound")
$delay5 = IniRead("run.ini", "Settings", "delay5", "NotFound")
$bnetkey = IniRead("run.ini", "Settings", "bnetkey", "NotFound")
$channelkey = IniRead("run.ini", "Settings", "channelkey", "NotFound")

Run($directory)
Sleep($delay1)
Send("{Enter}")
Sleep($delay2)
Send($bnetkey)
Sleep($delay3)
Send($pass)
Send("{Enter}")
Sleep($delay4)
Send($channelkey)
Sleep($delay5)
Send($channel)
Send("{Enter}")
Sleep($delay6)
Send("["& _Now())
Send("]: ")
Send($msg)
Send("{Enter}")

the red highlighted one shows what i changed so it would work properly on mine but it does not let me customize the actual programming can you tell me how
Reply With Quote
  #3  
Old 10-23-2008, 03:34 AM
TyranO's Avatar
Custom User Title
 
Join Date: Aug 2008
Location: Azeroth
Posts: 197
Reputation: 484
Rep Power: 3
TyranO is a glorious beacon of lightTyranO is a glorious beacon of lightTyranO is a glorious beacon of lightTyranO is a glorious beacon of lightTyranO is a glorious beacon of light
Quote:
Originally Posted by justinglenwebb View Post
on the run.au3 file i need to change 1 line of text on it because when my warcraft 3 game pops up i have a sound fx error i have to press enter to close heres how i want it to be:

#include <Date.au3>
$directory = IniRead("run.ini", "Settings", "run", "NotFound")
$channel = IniRead("run.ini", "Settings", "channel", "NotFound")
$msg = IniRead("run.ini", "Settings", "msg", "NotFound")
$pass = IniRead("run.ini", "Settings", "pass", "NotFound")
$delay1 = IniRead("run.ini", "Settings", "delay1", "NotFound")
$delay2 = IniRead("run.ini", "Settings", "delay2", "NotFound")
$delay3 = IniRead("run.ini", "Settings", "delay3", "NotFound")
$delay4 = IniRead("run.ini", "Settings", "delay4", "NotFound")
$delay5 = IniRead("run.ini", "Settings", "delay5", "NotFound")
$bnetkey = IniRead("run.ini", "Settings", "bnetkey", "NotFound")
$channelkey = IniRead("run.ini", "Settings", "channelkey", "NotFound")

Run($directory)
Sleep($delay1)
Send("{Enter}")
Sleep($delay2)
Send($bnetkey)
Sleep($delay3)
Send($pass)
Send("{Enter}")
Sleep($delay4)
Send($channelkey)
Sleep($delay5)
Send($channel)
Send("{Enter}")
Sleep($delay6)
Send("["& _Now())
Send("]: ")
Send($msg)
Send("{Enter}")

the red highlighted one shows what i changed so it would work properly on mine but it does not let me customize the actual programming can you tell me how
Sorry to be so shit late, but yea you can edit the .au3 with notedpad, but if you want to run it or compile it to an EXE you will need autoit V3.

Anyway I've included a better version of this script in my ultimate tool that allows you to change your account name (done by memory editing with c++)
Reply With Quote
  #4  
Old 10-23-2008, 06:09 AM
t0pcraft-'s Avatar
Hacker
 
Join Date: Jan 2008
Location: Under Your Bed
Posts: 177
Reputation: 38
Rep Power: 1
t0pcraft- is on a distinguished road
rofl... you know what is very weird? i'm not kidding now..

i created a bot today... do you know what kind of? an autologin TT
this sounds really crazy, but it's so true

now having seen you presenting an autologin I dunno whether I should post mine too or not...

tell me please

edit:
i just opened a new thread

Last edited by t0pcraft-; 10-23-2008 at 06:37 AM.
Reply With Quote
  #5  
Old 10-24-2008, 05:08 AM
justinglenwebb's Avatar
Newbie
 
Join Date: Jun 2007
Posts: 4
Reputation: 0
Rep Power: 2
justinglenwebb is an unknown quantity at this point
thank you

yea im a really lazy player so it helps if it will join for me while im well playing resistance online lol thank you so much for helping and gj this program is awesome
Reply With Quote
  #6  
Old 10-24-2008, 06:56 AM
TyranO's Avatar
Custom User Title
 
Join Date: Aug 2008
Location: Azeroth
Posts: 197
Reputation: 484
Rep Power: 3
TyranO is a glorious beacon of lightTyranO is a glorious beacon of lightTyranO is a glorious beacon of lightTyranO is a glorious beacon of lightTyranO is a glorious beacon of light
Quote:
Originally Posted by t0pcraft- View Post
rofl... you know what is very weird? i'm not kidding now..

i created a bot today... do you know what kind of? an autologin TT
this sounds really crazy, but it's so true

now having seen you presenting an autologin I dunno whether I should post mine too or not...

tell me please

edit:
i just opened a new thread
You can use my username changer if you wish. It's included in my Ultimate Tool in the tools forums.

Basically changes your "cached" account name at the name memory address (written in c++ and compiled but easy to incorporate in your tool, you can use my autoit source too).
Reply With Quote
D3scene
Welcome to D3scene - probably the best location for all Gamers.

To participate in our friendly environment you have to register. After completing registration you will have full access to all threads and features. We care about members and try to make your stay as pleasant as possible. We are unique with the following feature for members - you will not see a single Advertisement!


The best: registration is completely free. It will not cost you a single penny or harm you in any way. You will lose nothing except 1 minute of your time. So why not register? We would be happy to see you around!
Reply

Tags
auto, bnet, gaypimp, join, sex, warcraft 3, warcraft iii, wc3

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Battle.net Joiner v1.6 Bendik2 Warcraft 3 Tools 35 10-15-2008 12:27 AM


All times are GMT +1. The time now is 03:47 AM.


vBulletin style developed by Transverse Styles
Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.

»About D3scene »Navigation