Register for your free account! | Forgot your password?

You last visited: Today at 02:42

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

Advertisement



2FOLD BOT?

Discussion on 2FOLD BOT? within the Conquer Online 2 forum part of the MMORPGs category.

Reply
 
Old   #1
 
trojanX's Avatar
 
elite*gold: 0
Join Date: Jun 2005
Posts: 94
Received Thanks: 5
2FOLD BOT?

I know SV has a version of a this, but i think it would be cool to have JUST a 2FOld bot. Something that instantly attacks whoever u tell it to, or whoever is in your speak 2 box. just a thought. Please get back to me thx guys
trojanX is offline  
Old 01/01/2010, 23:19   #2
 
elite*gold: 20
Join Date: Aug 2007
Posts: 1,749
Received Thanks: 2,198
Seriously, learn to right click
IAmHawtness is offline  
Thanks
1 User
Old 01/01/2010, 23:27   #3
 
trojanX's Avatar
 
elite*gold: 0
Join Date: Jun 2005
Posts: 94
Received Thanks: 5
Quote:
Originally Posted by IAmHawtness View Post
Seriously, learn to right click
Yea, i know how to right click i just think since on my server its always 102014334 turks vs 1 of our side it would be nice. gimme a break. sheesh

and the final answer isss? does it exist? can anyone make one?
trojanX is offline  
Old 01/02/2010, 01:38   #4
 
SyntaxNL's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 324
Received Thanks: 39
PHP Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using JProxyNativeInterface;
using JProxyNativeInterface.PacketAPI;

namespace 
TFBAimbotPlugin
{
    public class 
MainPlugin
    
{
        public static 
JPacketProcessHelper hlpServer;
        static 
MainPlugin()
        {
            
hlpServer = new JPacketProcessHelper();
            
hlpServer.OnJump += new JOnEntityJumpCallback(hlpServer_OnJump);
        }

        static 
bool hlpServer_OnJump(IntPtr nativeClientuint UIDint Xint Yint OldXint OldY)
        {
            
JNativeGameClient Client = new JNativeGameClient(nativeClient);
            if (
/*Client.Stamina > 30 && */TFBAimbotField(Client))
            {
                if (
Client.UID != UID)
                {
                    if (
JStandardLibrary.FastDistance2D(Client.XClient.YXY) <= 3)
                    {
                        
Client.CastMagic(UID60000);
                    }
                }
                else
                {
                    var 
targets from chr in Client.Screen.Objects
                                  where 
(JStandardLibrary.FastDistance2D(Client.XClient.Ychr.Xchr.Y) <= 3)
                                  
select chr.UID;
                    if (
targets.Count() > 0)
                    {
                        
Client.CastMagic(targets.ElementAt(0), 60000);
                    }
                }
            }
            return 
true;
        }
        public static 
bool TFBAimbotField(JNativeGameClient Client)
        {
            
object m_Obj Client.Variables["tfbAimbot"];
            if (
m_Obj == null)
                return default(bool);
            return (bool)
m_Obj;
        }
        public static 
void ClientCommand(IntPtr nativeInstancestring Fromstring Tostring Message)
        {
            
JNativeGameClient Client = new JNativeGameClient(nativeInstance);
            try
            {
                
string[] cmd Message.Split(' ');
                
cmd[0] = cmd[0].ToLower();
                if (
cmd[0] == "/tfbaimbot")
                {
                    
Client.Variables["tfbAimbot"] = !TFBAimbotField(Client);
                    
Client.SendClientMessage("Twofold Aimbot (On): " TFBAimbotField(Client).ToString(), JNativeDialogType.TopLeft);
                }
            }
            catch (
Exception e)
            {
                
Client.SendClientMessage("[Proxy Error - TFB Aimbot] " e.MessageJNativeDialogType.TopLeft);
            }
        }
        public static 
bool ServerToClient(IntPtr nativeInstancebyte[] Packet)
        {
            return 
hlpServer.Process(nativeInstancePacket);
        }
    }

Now you can make your own one!
let's see how long it him takes to find out this is pretty useless.
SyntaxNL is offline  
Old 01/02/2010, 01:40   #5
 
trojanX's Avatar
 
elite*gold: 0
Join Date: Jun 2005
Posts: 94
Received Thanks: 5
Quote:
Originally Posted by SyntaxNL View Post
PHP Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using JProxyNativeInterface;
using JProxyNativeInterface.PacketAPI;

namespace 
TFBAimbotPlugin
{
    public class 
MainPlugin
    
{
        public static 
JPacketProcessHelper hlpServer;
        static 
MainPlugin()
        {
            
hlpServer = new JPacketProcessHelper();
            
hlpServer.OnJump += new JOnEntityJumpCallback(hlpServer_OnJump);
        }

        static 
bool hlpServer_OnJump(IntPtr nativeClientuint UIDint Xint Yint OldXint OldY)
        {
            
JNativeGameClient Client = new JNativeGameClient(nativeClient);
            if (
/*Client.Stamina > 30 && */TFBAimbotField(Client))
            {
                if (
Client.UID != UID)
                {
                    if (
JStandardLibrary.FastDistance2D(Client.XClient.YXY) <= 3)
                    {
                        
Client.CastMagic(UID60000);
                    }
                }
                else
                {
                    var 
targets from chr in Client.Screen.Objects
                                  where 
(JStandardLibrary.FastDistance2D(Client.XClient.Ychr.Xchr.Y) <= 3)
                                  
select chr.UID;
                    if (
targets.Count() > 0)
                    {
                        
Client.CastMagic(targets.ElementAt(0), 60000);
                    }
                }
            }
            return 
true;
        }
        public static 
bool TFBAimbotField(JNativeGameClient Client)
        {
            
object m_Obj Client.Variables["tfbAimbot"];
            if (
m_Obj == null)
                return default(bool);
            return (bool)
m_Obj;
        }
        public static 
void ClientCommand(IntPtr nativeInstancestring Fromstring Tostring Message)
        {
            
JNativeGameClient Client = new JNativeGameClient(nativeInstance);
            try
            {
                
string[] cmd Message.Split(' ');
                
cmd[0] = cmd[0].ToLower();
                if (
cmd[0] == "/tfbaimbot")
                {
                    
Client.Variables["tfbAimbot"] = !TFBAimbotField(Client);
                    
Client.SendClientMessage("Twofold Aimbot (On): " TFBAimbotField(Client).ToString(), JNativeDialogType.TopLeft);
                }
            }
            catch (
Exception e)
            {
                
Client.SendClientMessage("[Proxy Error - TFB Aimbot] " e.MessageJNativeDialogType.TopLeft);
            }
        }
        public static 
bool ServerToClient(IntPtr nativeInstancebyte[] Packet)
        {
            return 
hlpServer.Process(nativeInstancePacket);
        }
    }

Now you can make your own one!
let's see how long it him takes to find out this is pretty useless.
Well since im no programmer your right this is useless. lol jackass smartass. ha ok so i guess there is not one?
trojanX is offline  
Old 01/02/2010, 01:47   #6
 
SyntaxNL's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 324
Received Thanks: 39
Bots are around.
My own works great (Private use ofcourse)
SyntaxNL is offline  
Old 01/02/2010, 05:07   #7
 
elite*gold: 0
Join Date: Mar 2007
Posts: 78
Received Thanks: 5
Quote:
Originally Posted by SyntaxNL View Post
PHP Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using JProxyNativeInterface;
using JProxyNativeInterface.PacketAPI;

namespace 
TFBAimbotPlugin
{
    public class 
MainPlugin
    
{
        public static 
JPacketProcessHelper hlpServer;
        static 
MainPlugin()
        {
            
hlpServer = new JPacketProcessHelper();
            
hlpServer.OnJump += new JOnEntityJumpCallback(hlpServer_OnJump);
        }

        static 
bool hlpServer_OnJump(IntPtr nativeClientuint UIDint Xint Yint OldXint OldY)
        {
            
JNativeGameClient Client = new JNativeGameClient(nativeClient);
            if (
/*Client.Stamina > 30 && */TFBAimbotField(Client))
            {
                if (
Client.UID != UID)
                {
                    if (
JStandardLibrary.FastDistance2D(Client.XClient.YXY) <= 3)
                    {
                        
Client.CastMagic(UID60000);
                    }
                }
                else
                {
                    var 
targets from chr in Client.Screen.Objects
                                  where 
(JStandardLibrary.FastDistance2D(Client.XClient.Ychr.Xchr.Y) <= 3)
                                  
select chr.UID;
                    if (
targets.Count() > 0)
                    {
                        
Client.CastMagic(targets.ElementAt(0), 60000);
                    }
                }
            }
            return 
true;
        }
        public static 
bool TFBAimbotField(JNativeGameClient Client)
        {
            
object m_Obj Client.Variables["tfbAimbot"];
            if (
m_Obj == null)
                return default(bool);
            return (bool)
m_Obj;
        }
        public static 
void ClientCommand(IntPtr nativeInstancestring Fromstring Tostring Message)
        {
            
JNativeGameClient Client = new JNativeGameClient(nativeInstance);
            try
            {
                
string[] cmd Message.Split(' ');
                
cmd[0] = cmd[0].ToLower();
                if (
cmd[0] == "/tfbaimbot")
                {
                    
Client.Variables["tfbAimbot"] = !TFBAimbotField(Client);
                    
Client.SendClientMessage("Twofold Aimbot (On): " TFBAimbotField(Client).ToString(), JNativeDialogType.TopLeft);
                }
            }
            catch (
Exception e)
            {
                
Client.SendClientMessage("[Proxy Error - TFB Aimbot] " e.MessageJNativeDialogType.TopLeft);
            }
        }
        public static 
bool ServerToClient(IntPtr nativeInstancebyte[] Packet)
        {
            return 
hlpServer.Process(nativeInstancePacket);
        }
    }

Now you can make your own one!
let's see how long it him takes to find out this is pretty useless.
Cool I've been learning c++ and i actually understand that but Its useless unless you have jproxy
redshadow is offline  
Old 01/03/2010, 02:02   #8
 
gabrola's Avatar
 
elite*gold: 0
Join Date: Dec 2006
Posts: 1,039
Received Thanks: 1,335
1. Learn to program and do it yourself.
2. To the above poster, it isn't useless, if you have a basic idea on how to create a proxy, this is a great guide
gabrola is offline  
Old 01/03/2010, 19:46   #9
 
DarkLord4u's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 211
Received Thanks: 74
Quote:
Originally Posted by SyntaxNL View Post
PHP Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using JProxyNativeInterface;
using JProxyNativeInterface.PacketAPI;

namespace 
TFBAimbotPlugin
{
    public class 
MainPlugin
    
{
        public static 
JPacketProcessHelper hlpServer;
        static 
MainPlugin()
        {
            
hlpServer = new JPacketProcessHelper();
            
hlpServer.OnJump += new JOnEntityJumpCallback(hlpServer_OnJump);
        }

        static 
bool hlpServer_OnJump(IntPtr nativeClientuint UIDint Xint Yint OldXint OldY)
        {
            
JNativeGameClient Client = new JNativeGameClient(nativeClient);
            if (
/*Client.Stamina > 30 && */TFBAimbotField(Client))
            {
                if (
Client.UID != UID)
                {
                    if (
JStandardLibrary.FastDistance2D(Client.XClient.YXY) <= 3)
                    {
                        
Client.CastMagic(UID60000);
                    }
                }
                else
                {
                    var 
targets from chr in Client.Screen.Objects
                                  where 
(JStandardLibrary.FastDistance2D(Client.XClient.Ychr.Xchr.Y) <= 3)
                                  
select chr.UID;
                    if (
targets.Count() > 0)
                    {
                        
Client.CastMagic(targets.ElementAt(0), 60000);
                    }
                }
            }
            return 
true;
        }
        public static 
bool TFBAimbotField(JNativeGameClient Client)
        {
            
object m_Obj Client.Variables["tfbAimbot"];
            if (
m_Obj == null)
                return default(bool);
            return (bool)
m_Obj;
        }
        public static 
void ClientCommand(IntPtr nativeInstancestring Fromstring Tostring Message)
        {
            
JNativeGameClient Client = new JNativeGameClient(nativeInstance);
            try
            {
                
string[] cmd Message.Split(' ');
                
cmd[0] = cmd[0].ToLower();
                if (
cmd[0] == "/tfbaimbot")
                {
                    
Client.Variables["tfbAimbot"] = !TFBAimbotField(Client);
                    
Client.SendClientMessage("Twofold Aimbot (On): " TFBAimbotField(Client).ToString(), JNativeDialogType.TopLeft);
                }
            }
            catch (
Exception e)
            {
                
Client.SendClientMessage("[Proxy Error - TFB Aimbot] " e.MessageJNativeDialogType.TopLeft);
            }
        }
        public static 
bool ServerToClient(IntPtr nativeInstancebyte[] Packet)
        {
            return 
hlpServer.Process(nativeInstancePacket);
        }
    }

Now you can make your own one!
let's see how long it him takes to find out this is pretty useless.
You are always talking about your boots (private of course ) but u never share anything with the comunity ... why even bother to tell us about them..
DarkLord4u is offline  
Old 01/03/2010, 20:19   #10
 
SyntaxNL's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 324
Received Thanks: 39
Quote:
Originally Posted by DarkLord4u View Post
You are always talking about your boots (private of course ) but u never share anything with the comunity ... why even bother to tell us about them..
Why share when no one is able to contribute to this community? I'm not gonna start giving everybody free bots, proxies and whatever more because this is a leeching community.
I really can't care about how many "Thanks" i receive(d). Useless ****.
SyntaxNL is offline  
Old 01/04/2010, 02:18   #11
 
gabrola's Avatar
 
elite*gold: 0
Join Date: Dec 2006
Posts: 1,039
Received Thanks: 1,335
Seriously there's no reason to release **** around here.
Leechers are still getting some bots so there's no need to whine
gabrola is offline  
Old 01/04/2010, 12:17   #12
 
DarkLord4u's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 211
Received Thanks: 74
Quote:
Originally Posted by SyntaxNL View Post
Why share when no one is able to contribute to this community? I'm not gonna start giving everybody free bots, proxies and whatever more because this is a leeching community.
I really can't care about how many "Thanks" i receive(d). Useless ****.
Im not saying u should give your boots or proxies or w/e ..
You are just messing around with ppl who wants to get something (as u guys call them leechers). How do u think that guy feel when he's asking about a boot or w/e he's asking and u tell him u got one but your not gone share with him...
DarkLord4u is offline  
Old 01/05/2010, 00:52   #13
 
gabrola's Avatar
 
elite*gold: 0
Join Date: Dec 2006
Posts: 1,039
Received Thanks: 1,335
Quote:
Originally Posted by DarkLord4u View Post
Im not saying u should give your boots or proxies or w/e ..
You are just messing around with ppl who wants to get something (as u guys call them leechers). How do u think that guy feel when he's asking about a boot or w/e he's asking and u tell him u got one but your not gone share with him...
If someone asks me for a boot, I'll give him a pair of boots, maybe a pair of socks too
gabrola is offline  
Old 01/05/2010, 09:08   #14
 
DarkLord4u's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 211
Received Thanks: 74
Quote:
Originally Posted by gabrola View Post
If someone asks me for a boot, I'll give him a pair of boots, maybe a pair of socks too
I was talking with SyntaxNL .... Dunno about u or don't care care ..
DarkLord4u is offline  
Old 01/05/2010, 15:05   #15
 
SyntaxNL's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 324
Received Thanks: 39
Quote:
Originally Posted by DarkLord4u View Post
I was talking with SyntaxNL .... Dunno about u or don't care care ..
It's 'bot(s)" not "boots" and you were talking to me, not with me.
Asking about something is different than begging. I hope you know the difference also.
There are maybe 10 people who actually release stuff to this community and you know what happens the next day? You'll end up with a full PM Inbox asking about aimbot, teleporting, lottery hack and whatever more.

People aren't satisfied with what they can have within this community so don't blame the programmers for not releasing stuff.
Learn how to code yourself is my advice.
SyntaxNL is offline  
Reply




All times are GMT +2. The time now is 02:42.


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.