[Release] Mabinogi Auto-Logger

08/05/2010 03:59 zukine123#1
This is my first script ever what it basically dose is logs you in the game and starts it
PHP Code:
#cs ----------------------------------------------------------------------------

 
AutoIt Version3.3.6.0
 Author
Nightingale737    

 Script 
Function:Mabinogi auto log in
    Template AutoIt script
.

#ce ----------------------------------------------------------------------------

Script Start Add your code below here

Run
("C:\Nexon\Mabinogi\Mabinogi.exe"
Sleep(70)
MouseClick"left"707,579,5)
Sleep(30000)
send("Your id name")
Send("{TAB}"0)
Send("Your password")
MouseClick("left"493,563,5)
Sleep(3000)
MouseClick("left",42,713,5
Just put in your id and and password where is says so and run it
and u might want to change the sleep setting if your computer is too slow or fast
08/05/2010 05:03 Halfslashed#2
I should write a GOOD version of this, but it's not worth it for this.
08/05/2010 05:16 pawntobishop#3
There's like 4 of these released here already...
08/05/2010 05:53 zukine123#4
Quote:
Originally Posted by pawntobishop View Post
There's like 4 of these released here already...
Sorry i dint know oh well i made a basic one
at least i learned some of the basics of auto it and i tried to help people and made my frist script =D
08/05/2010 08:26 kotarou3#5
Why run Mabinogi.exe? Why not Client.exe?
08/05/2010 09:22 zukine123#6
Because mabinogi.exe is just better(dont ask why) im working on making one with image search or making my character move around with arrow keys
08/05/2010 10:14 kotarou3#7
Quote:
Originally Posted by zukine123 View Post
Because mabinogi.exe is just better(dont ask why) im working on making one with image search or making my character move around with arrow keys
--Asks why--

You can skip some extra clicking if you run client.exe directly :/
08/05/2010 11:15 zukine123#8
Quote:
Originally Posted by kotarou3 View Post
--Asks why--

You can skip some extra clicking if you run client.exe directly :/
im a noob that's why D; well because in my computer client.exe is invisible not joking and the first thing i saw was Mabbinogi.exe
08/05/2010 13:15 kotarou3#9
Quote:
Originally Posted by zukine123 View Post
im a noob that's why D; well because in my computer client.exe is invisible not joking and the first thing i saw was Mabbinogi.exe
Show Hidden and System files? :/
Anyways, you don't need to see it to run it :/
08/05/2010 22:17 zukine123#10
i know but i just saw mabiniogi.exe if u want me to rewrite it so its runs from client.exe just ask me
08/06/2010 10:30 kotarou3#11
I still don't get it. You "saw" Mabinogi.exe and used it, but didn't you know about Client.exe and use it instead?
08/07/2010 05:56 zukine123#12
Quote:
Originally Posted by kotarou3 View Post
I still don't get it. You "saw" Mabinogi.exe and used it, but didn't you know about Client.exe and use it instead?
well when i started making the script i forgot about client.exe the frist thing i saw was mabinogi.exe and i decided to use that
08/08/2010 07:28 kotarou3#13
Okay, okay. Now change it to Client.exe :)
Remember to run it with the params
Code:
code:1622 ver:48 logip:208.85.108.15 logport:11000 chatip:208.85.108.18 chatport:8002 setting:"file://data/features.xml=Regular, USA"
08/09/2010 00:44 fha3z#14
Sure client.exe makes it easier, but, why would you want it to be easier? I remember when I was learning to script, I would always make it hard on myself, such as incorporating image detection when I could easily just use coordinates.

Not sure why you posted your little script here...
08/09/2010 02:44 Halfslashed#15
Quote:
Originally Posted by fha3z View Post
Sure client.exe makes it easier, but, why would you want it to be easier? I remember when I was learning to script, I would always make it hard on myself, such as incorporating image detection when I could easily just use coordinates.

Not sure why you posted your little script here...
That's like writing an entire unnecessary function just for the lulz.

Say you're making a bot that moves one file in the corner of your desktop to your recycle bin. You could do one of two things :

A. Find the file with image search, drag it to the recycle bin instantly and release.

B. Find the file with coordinates, drag the file to the other corner of your PC, drag it away from the recycle bin, and then drag it to the recycle bin.

The fact that you're making your scripts more complicated for no particular reason shows that you don't know much about scripting/programming in general.

FYI, using image search is often easier than coordinates due to less issues with different resolutions.