Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Rappelz
You last visited: Today at 01:19

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



C# Bot, In Progress Looking For Help

Discussion on C# Bot, In Progress Looking For Help within the Rappelz forum part of the MMORPGs category.

Reply
 
Old 04/18/2012, 05:11   #31
 
elite*gold: 0
Join Date: Nov 2011
Posts: 22
Received Thanks: 5
Public Release
This release is the full project expect for the battle bot.
It will be able to change camera, path, repeat, and show some in game data.
Also List work now.

NOTE: If Any updates happen from (Date Posted (4/18/2012)) the bot may not function correctly.
Making it stand though updates is the new focus.

NOTE: Designed to be used in the US. Wont work on other verisons of the game.

Setup:
- Using SandBoxie (Or a sand box program), Run Rappelz
- Log in a account
- Load a Hero
- Run RappelzXBot.exe

Download Is also attached to this post.


(You have to type the code in and hit download , and then do both steps twice)

Dont have Sandboxie?



@ marekrndr :
Sounds great.
Attached Files
File Type: zip Bot Beta 1.1.zip (148.7 KB, 87 views)
rover2341 is offline  
Thanks
1 User
Old 04/19/2012, 13:44   #32
 
elite*gold: 0
Join Date: Apr 2012
Posts: 389
Received Thanks: 11
is it a bot who is working on the oficial server of only for privat?
Unbeatablegamer is offline  
Old 04/20/2012, 01:07   #33
 
elite*gold: 0
Join Date: Nov 2011
Posts: 22
Received Thanks: 5
What sever will this work on?
Its built for the official server. I am Located in the US. I am not sure if it will work on a server if its not in the US.

It may work on a private server if they have the same version as the current official version.

Has this been Tested?
Tested on my computer, and a few times on my friends laptop.

How Long will this program work?
It should work intill next update.
It may work after that. I am working on making it hold though most updates at the moment.
If I got it right, it should all hold though the next update. (Pitch might or might not hold)
rover2341 is offline  
Thanks
1 User
Old 04/20/2012, 02:56   #34
 
Diablofarmer's Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 1,456
Received Thanks: 290
doesnt work on my win7 64bit - europe servers
Diablofarmer is offline  
Old 04/20/2012, 14:36   #35
 
elite*gold: 17
Join Date: Apr 2010
Posts: 1,284
Received Thanks: 493
schade das es kein bot für eu gibt das ist echt doof...

rover can create one for the Eu please`?
the US Bots doesnt work on Eu version-.-
.SpeedLinK is offline  
Old 04/20/2012, 19:07   #36
 
elite*gold: 0
Join Date: Nov 2011
Posts: 22
Received Thanks: 5
Can you update for my server?

Short Answer: No, at least for now. To Much work, as it needs weekly updates.

Long Answer: Here's the deal, The reason it isnt working is because my memory reading functions read the current Us Versions memory (client side) and then puts it into the bot.

I don't have a EU Version. and if i did, i could get it to work.

But, currently I am still fighting to get the US Version to hold up though most updates. I have made alot of progress. As 90% of the data reading holds though the updates.

So For now the answer is no, I am not gonna take the time to keep updating a EU Version.




Ok...But I still Want to use the bot what do i do?

In a month or so Ill Open source the bot.

But you still would need to find the data in memory (Hardest part) and plug it into the bot.
Heres a guide i made for people working on the bot with me.
Its @ rappelz-x-bot.rappelz-x-bot.forumotion. com/t16-memory-reading-with-cheat-engine-program
(Remove the space by the . com)
It doesn't go into the advanced stuff but it would get you started/



Ok I Am interested, what would i need to collect?

If you wanted to use this bot you would need to make a class(s) that use these interfaces. And you would have to get to code how to get the data.

(In the open source, ill leave my memory reading class, but you still have to find the pointer paths, or how you get the data with it)

Then you could plug it into the open source project. Some of these data is easy to find, some is much harder if you want it to work after the game closes and the game updates.

I am still working on these my self, some of these are pretty hard, at least to have them stay up though updates.


Code:
namespace RappelzInterfaces
{
    public interface CameraInterface
    {
        double Yaw
        {
            get;
        }
        double Pitch
        {
            get;
        }
    }

    public interface LocationInterface
    {
        double X
        {
            get;
        }
        double Y
        {
            get;
        }
    }

    public interface PetInterface
    {
        int HP
        {
            get;
        }
        int HPMax
        {
            get;
        }

        int MP
        {
            get;
        }
        int MPMax
        {
            get;
        }
       
    }

    public interface PlayerInterface
    {
        int Level
        {
            get;
        }

        int HP
        {
            get;
        }
        int HPMAX
        {
            get;
        }

        int MP
        {
            get;
        }
        int MPMAX
        {
            get;
        }

        int BagSpace
        {
            get;
        }
        int BagSpaceMax
        {
            get;
        }
    }

    public interface ScreenInterface
    {
        int ResolutionX
        {
            get;
        }
        int ResolutionY
        {
            get;
        }
        bool ScreenIsWindowed
        {
            get;
        }
    }

    public interface TargetInterface
    {
        string Name
        {
            get;
        }
        int Level
        {
            get;
        }
        double HP
        {
            get;
        }
        double HPMax
        {
            get;
        }
    }
}
rover2341 is offline  
Thanks
2 Users
Old 04/24/2012, 21:08   #37
 
elite*gold: 0
Join Date: Apr 2012
Posts: 2
Received Thanks: 0
i recently developed a driver much better than sandboxie, and allow you to have control rappelz much better without dependence of sandboxie anymore . But he is still in phase test . one week if you still work on bot rappelz i will contacting you for much detail (execuse my english)
tobi046 is offline  
Old 04/25/2012, 21:13   #38
 
elite*gold: 0
Join Date: Apr 2009
Posts: 17
Received Thanks: 3
If this project is still going on I would love to help out, I work at a software firm doing C# and WPF with WCF and MVVM. Im sure I could lend a hand and would also love to use it myself.
one2fight is offline  
Old 08/22/2012, 14:30   #39
 
elite*gold: 0
Join Date: Aug 2011
Posts: 11
Received Thanks: 1
rover when i log into the account and chose a hero and start the bot an error shows up

"Rappelz Bot requires a hero be loaded before srarting. "

is this is the latest bot ?

i mean did you finished your goal ?

if nott i would like to say what we waiting for is a bot can change the lvl and bringe more rappelz money
and Thank U very Much
AssassinShadow is offline  
Reply


Similar Threads Similar Threads
Progress Bar
12/02/2010 - Technical Support - 1 Replies
Hallo, Habe einen Injektor für Warrock gecoed mit Vb 2008 er geht auf 32-Bit! Wenn ich nun warRock starten Injektet es aber mann siehst die Progress bar nicht wie sie von 0% auf 100% geht-.- I NEED HELP THX Screen: Pic-Upload.de - Kostenlos Bilder & Fotos hochladen DAnke Im Voruas
Bar Progress HP Pet
09/11/2010 - Last Chaos - 0 Replies
$HPPETLEISTE = GUICtrlCreateProgress(25, 255, 225, 10) GUICtrlSetBkColor(-1, 16777215) $PETHP = GUICtrlCreateLabel("HP Pet", 25, 240, 40, 15) $INPUTHPPET = GUICtrlCreateLabel("0", 70, 240, 50, 15) Global $AV_HPPET= Global $HPPET2 = 0
PROGRESS IN TALISMAN
01/18/2010 - Conquer Online 2 - 3 Replies
Plz people...i heard and i have seen people who using a hack or somethink like that for socketing tallisman at 2 soc for free... it makes 2 soc in like 6-7 hours...plz if someone know aboute this let me know at this forum... and plz post the name at my e-mail [email protected] :) :) :)
Hax Bot New Bot (still in progress)
09/25/2009 - Silkroad Online - 57 Replies
- Attacking monsters 100% - Skills 100% - Buffs 100% - Sitting down based on HP 100% - Sitting down based on MP 100% - Auto login (type your info once and wait) 100% - Inventory parsed (this includes - movement, swap, combine, pickup - for guild, player, pet, storage) 100% - Minimize to tray 100% - Going clientless 100% - Going client 100%
Progress GG ???
01/13/2009 - Lineage 2 - 1 Replies
Hey all first i'd like to say hello to all since this is one of my first posts :P. Anyway, i,ve been doing a little research about .des files. and i figured out that its encrypted with a way of coding called cryptography. It kinda creates a key for the encrypted file. Now for the real developers among us, i,ve got a wiki site where u can explore it and hopefully find a way to by pass gg and share it with us. for interlude, hellbound gracia w/e. Just any kind of client gg. Well i did my...



All times are GMT +2. The time now is 01:19.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.