Results 1 to 12 of 12
  1. #1
    lavanat0r's Avatar
    Join Date
    Jan 2014
    Gender
    female
    Location
    surfing inside code
    Posts
    21
    Reputation
    10
    Thanks
    117
    My Mood
    Cheerful

    Post lavab0t(flyff)_beta2

    hello everyone.

    1)extract "lavab0t(flyff)_beta2.zip".
    2)open as administrator "lavab0t(flyff).exe".
    Q:why? A:if you dont bot is unable to simulate mouse clicks.
    3)to unlock cheboxes and buttons get locations.
    4)next chose what you want.

    please check if the fp filling working and give me a feedback about that .. i'm unable to check it.
    Q:why? A:its take time to create new one and ahhhh i dont want to right now.



    i hope next version is not in beta .

    virustotal:
    lavab0t(flyff)_beta2.zip: virustotal.com/en/file/05e967dd8b9dc15519f639c6ff738a4a7b49a4ebfdccf82a9a 7c7dd73fe2bcf4/analysis/1389644163/
    lavab0t(flyff).exe: virustotal.com/en/file/3e1ca1dc49bb45b17b9c51cf255fcaeff2a190881422183464 96a1a381a46fec/analysis/1389644177/
    mousemove_flyff.exe: virustotal.com/en/file/51446ed0739556e0782d8a52114f3b9b082a9dd6662cf00244 c1968bb3c49113/analysis/
    <b>Downloadable Files</b> Downloadable Files
    Last edited by lavanat0r; 01-13-2014 at 01:07 PM. Reason: file uploading gone wrong

  2. The Following 11 Users Say Thank You to lavanat0r For This Useful Post:

    ???? ?????????????? (01-15-2014),adamkrub (06-16-2015),afffe (02-17-2014),akoni12345 (03-27-2015),coolthugz (02-18-2015),nabets23 (08-16-2016),p9m70 (04-27-2014),Urijahuri (01-22-2014),xenxia (02-02-2014),yarin18900 (01-23-2014),zadox191 (05-10-2020)

  3. #2
    lavanat0r's Avatar
    Join Date
    Jan 2014
    Gender
    female
    Location
    surfing inside code
    Posts
    21
    Reputation
    10
    Thanks
    117
    My Mood
    Cheerful
    hi all.
    this how it looks: youtube.com/watch?v=PlN4bAsY3xA.
    dont delete it there's no more links than only this forum link.
    i cant post video here so i post link .

  4. #3
    Bernard's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Purgatory
    Posts
    26,364
    Reputation
    3488
    Thanks
    3,546
    My Mood
    Lurking
    Rep. Power: 126

    Minion: 11/28/12-3/15/14

  5. #4
    oloap24's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by lavanat0r View Post
    hello everyone.

    1)extract "lavab0t(flyff)_beta2.zip".
    2)open as administrator "lavab0t(flyff).exe".
    Q:why? A:if you dont bot is unable to simulate mouse clicks.
    3)to unlock cheboxes and buttons get locations.
    4)next chose what you want.

    please check if the fp filling working and give me a feedback about that .. i'm unable to check it.
    Q:why? A:its take time to create new one and ahhhh i dont want to right now.



    i hope next version is not in beta .

    virustotal:
    lavab0t(flyff)_beta2.zip: virustotal.com/en/file/05e967dd8b9dc15519f639c6ff738a4a7b49a4ebfdccf82a9a 7c7dd73fe2bcf4/analysis/1389644163/
    lavab0t(flyff).exe: virustotal.com/en/file/3e1ca1dc49bb45b17b9c51cf255fcaeff2a190881422183464 96a1a381a46fec/analysis/1389644177/
    mousemove_flyff.exe: virustotal.com/en/file/51446ed0739556e0782d8a52114f3b9b082a9dd6662cf00244 c1968bb3c49113/analysis/

    when im trying to get hp mp fp theres a warning
    didnt found.. make sure the game window is in main screen and nothing blocks the main window

  6. #5
    lavanat0r's Avatar
    Join Date
    Jan 2014
    Gender
    female
    Location
    surfing inside code
    Posts
    21
    Reputation
    10
    Thanks
    117
    My Mood
    Cheerful
    Quote Originally Posted by oloap24 View Post
    when im trying to get hp mp fp theres a warning
    didnt found.. make sure the game window is in main screen and nothing blocks the main window
    hello.
    thaks for your feedback and finding the problem.
    this bot is olny sees the hp, mp, fp when the game is in window mode like you.. and make sure your game is in main window.
    if this dont help.
    this bot it only tested on gpotato flyff.
    how i use this bot: youtube.com/watch?v=db4-f-qRADs. uploading this video right now.
    tell me where your where your game and bot is when you pressed "get hp,mp,fp" .. and what is your game size .. for me its 1440x900.
    and can you send me screenshot of your flyff window .. email:l4v4ph0x(at)riseup(dot)net
    and tell me hows your preocess to pressing "get hp,mp,fp".
    for me its: open,loggin in when i see player and hp bar then >> i open bot >> leaving the game window alone and then pressing "get hp, mp, fp".

    if you can find some bugs then little bit of source code is here:
    /*from bmps*/
    public Bitmap screenShot() {
    Bitmap bmp = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);

    Graphics g = Graphics.FromImage(bmp);

    g.CopyFromScreen(0, 0, 0, 0, Screen.PrimaryScreen.Bounds.Size);

    return bmp;
    }
    /*from bools*/
    public bool findBitmap(Bitmap bmpNeedle, Bitmap bmpHaystack, out Point location) {
    for (int outerX = 0; outerX < bmpHaystack.Width - bmpNeedle.Width; outerX++) {
    for (int outerY = 0; outerY < bmpHaystack.Height - bmpNeedle.Height; outerY++) {
    for (int innerX = 0; innerX < bmpNeedle.Width; innerX++) {
    for (int innerY = 0; innerY < bmpNeedle.Height; innerY++) {
    Color cNeedle = bmpNeedle.GetPixel(innerX, innerY);
    Color cHaystack = bmpHaystack.GetPixel(innerX + outerX, innerY + outerY);

    if (cNeedle.R != cHaystack.R || cNeedle.G != cHaystack.G || cNeedle.B != cHaystack.B) {
    goto notFound;
    }
    }
    }

    location = new Point(outerX, outerY);
    return true;

    notFound:
    continue;
    }
    }

    location = Point.Empty;
    return false;
    }

    private void button1_Click(object sender, EventArgs e) {
    Bitmap bmp = bmps.screenShot();

    bool success = bools.findBitmap(Properties.Resources.part_of_hp, bmp, out player_hp_location);
    bool find_success = true; /*bools.findBitmap(Properties.Resources.part_of_pla yer_hp_in_screen, bmp, out player_hp_in_screen);*/

    if (success == true && find_success == true) {
    checkBox2.Enabled = true;
    checkBox5.Enabled = true;
    checkBox6.Enabled = true;

    hp_x.Text = player_hp_location.X + "";
    hp_y.Text = player_hp_location.Y + "";

    //form2.richTextBox1.Text = form2.richTextBox1.Text + Environment.NewLine + "player hp in screenXY:" + player_hp_in_screen.X + " " + player_hp_in_screen.Y;
    } else {
    MessageBox.Show("didnt found .. make sure the game windows is in main screen and nothing blocks the game window");
    }
    }

  7. #6
    oloap24's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    i'm playing flyff gold (from gpotato) and i'm using a laptop(windows vista) and has a single display. my flyff resolution is 800x600(window mode).
    hp/mp/fb cannot be traced and skills too..
    but the monster and map coordinates are working.
    hmm? what should i do?

    Thanks for replying

  8. #7
    lavanat0r's Avatar
    Join Date
    Jan 2014
    Gender
    female
    Location
    surfing inside code
    Posts
    21
    Reputation
    10
    Thanks
    117
    My Mood
    Cheerful
    Quote Originally Posted by oloap24 View Post
    i'm playing flyff gold (from gpotato) and i'm using a laptop(windows vista) and has a single display. my flyff resolution is 800x600(window mode).
    hp/mp/fb cannot be traced and skills too..
    but the monster and map coordinates are working.
    hmm? what should i do?

    Thanks for replying
    hello.
    good info good info .
    i added bitmaps of your screenshot.
    this bot seems to little bit diffrece because its little bit newer.

    lavab0t(flyff)_problem1.zip: virustotal.com/en/file/890656c0c514e0b1b045373b9f589022ec60e1bd75fed2af15 6d091e0db957db/analysis/1389996456/
    back.exe: virustotal.com/en/file/35d704d1f6693ebbacf48c8da01448fa7c807426dc2b880224 cdb967140cebf5/analysis/1389996483/
    lavab0t(flyff).exe: virustotal.com/en/file/1f29792bf904a9479db1b11b4895475414fd9c9f9787c4bb2d c6e48abd357035/analysis/1389996487/
    mousemove_flyff.exe: virustotal.com/en/file/51446ed0739556e0782d8a52114f3b9b082a9dd6662cf00244 c1968bb3c49113/analysis/
    only_move.exe: virustotal.com/en/file/1135338d13645dbafcfe51595d609d3ddeab2c00a50eb7a99d 1efcd9dabd9cf0/analysis/1389996489/

    try this and give me feedback what happend.
    what screen connection you use dvi,hdmi,vga .. there might me broblem sending out diffrence color signals. for me i use hdmi.

    <b>Downloadable Files</b> Downloadable Files

  9. #8
    Bernard's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Purgatory
    Posts
    26,364
    Reputation
    3488
    Thanks
    3,546
    My Mood
    Lurking
    Rep. Power: 126

    Minion: 11/28/12-3/15/14

  10. #9
    sexyglen's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Did'nt found make sure game screen is on main window and i only have one windows so LOL I'm trying to use it on Ace Flyff private server

  11. #10
    lavanat0r's Avatar
    Join Date
    Jan 2014
    Gender
    female
    Location
    surfing inside code
    Posts
    21
    Reputation
    10
    Thanks
    117
    My Mood
    Cheerful
    hello.
    i'm sorry but it is not for ace.
    it work flyffs ui similar to gold flyff ui.
    but if you want i can make it to ace flyff ui but it takes a time about 2 weeks.

  12. #11
    sexyglen's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by lavanat0r View Post
    hello.
    i'm sorry but it is not for ace.
    it work flyffs ui similar to gold flyff ui.
    but if you want i can make it to ace flyff ui but it takes a time about 2 weeks.
    Why does it take so long ? anyways can you do it ?

  13. #12
    lavanat0r's Avatar
    Join Date
    Jan 2014
    Gender
    female
    Location
    surfing inside code
    Posts
    21
    Reputation
    10
    Thanks
    117
    My Mood
    Cheerful
    Quote Originally Posted by sexyglen View Post
    Why does it take so long ? anyways can you do it ?
    the reason why it take so long or maybe not .. i want to make 3 more functions for it.
    1 killing in area.
    2 run for giants.
    3 pickup rearby items.

Similar Threads

  1. [Outdated] lavab0t(flyff)_nonbeta
    By lavanat0r in forum FlyFF Hacks
    Replies: 31
    Last Post: 04-13-2015, 11:48 AM
  2. [Outdated] lavab0t(flyff)_beta1
    By lavanat0r in forum FlyFF Hacks
    Replies: 10
    Last Post: 06-06-2014, 11:02 AM
  3. Hacks for Flyff
    By hakufu in forum Hack Requests
    Replies: 21
    Last Post: 09-21-2008, 07:02 AM
  4. Flyff Hacks
    By ikki007 in forum Hack Requests
    Replies: 5
    Last Post: 09-10-2008, 01:10 PM
  5. Flyff
    By boneslapz in forum General Game Hacking
    Replies: 10
    Last Post: 08-08-2007, 10:01 AM

Tags for this Thread