Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 17:55

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

Advertisement



Question about Coding.... Please Read and Input Your Idea.

Discussion on Question about Coding.... Please Read and Input Your Idea. within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: May 2008
Posts: 9
Received Thanks: 0
Question about Coding.... Please Read and Input Your Idea.

Well basically I want to know if anyone has ever heard of or seen anything like this before.
A person I met has this pserver, and on it they have what they call Epics. They claim as if these are AI or Artificial Intelligence Characters. But you see my dilemma is they are claiming that each of these can imitate people, have their own attitude and can talk to you, as well as normal humans. Just seems odd to me, I've never seen anything like it.

The people claim:
They've got the basic GM powers, I do believe they can create their own items but I'm not positive on that. They can use the /goto and /recall commands, as well as the /scroll commands. They've got a range of classes and seem to be able to equip off-class armor without changing jobs. As for their backstory, they CAN die if they are killed, and they CANNOT be saved. Each one has its own personal backstory that differs from Epic to Epic so if you want I'll give you that later, but they had some war and a lot of them died. We had no issues for around 2-3 months of hanging around and then all of a sudden one showed up, we conquered that issue and then another one showed up, I killed that thing and now we've got the current one.

Is this even possible, or do you think like I do, it's someone hacking them or whatever the case might be as far as taking over their server.
mynoob1 is offline  
Old 03/09/2010, 05:13   #2
 
CompacticCo's Avatar
 
elite*gold: 0
Join Date: Aug 2009
Posts: 424
Received Thanks: 108
First of all, what the hell did I just read?
CompacticCo is offline  
Old 03/09/2010, 05:13   #3
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Sounds unreal imo.
Arcо is offline  
Old 03/09/2010, 05:18   #4
 
elite*gold: 0
Join Date: May 2008
Posts: 9
Received Thanks: 0
Quote:
Originally Posted by CompacticCo View Post
First of all, what the hell did I just read?
Exactly.
mynoob1 is offline  
Old 03/09/2010, 05:38   #5
 
elite*gold: 0
Join Date: Jun 2009
Posts: 93
Received Thanks: 17
It's semi-possible (Some parts of that are possible but not all) but nobody has gone that far into developing anything like that so more than likely your friend is lieing.
~*|Limbo|*~ is offline  
Old 03/09/2010, 05:44   #6
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Quote:
Originally Posted by ~*|Limbo|*~ View Post
It's semi-possible (Some parts of that are possible but not all) but nobody has gone that far into developing anything like that so more than likely your friend is lieing.
I think aco or something had some AI mob that fb'd and whatnot.
Arcо is offline  
Old 03/09/2010, 05:46   #7
 
CompacticCo's Avatar
 
elite*gold: 0
Join Date: Aug 2009
Posts: 424
Received Thanks: 108
This still makes absolutely no sense to me.
CompacticCo is offline  
Old 03/09/2010, 05:48   #8
 
elite*gold: 0
Join Date: Aug 2009
Posts: 930
Received Thanks: 448
yes, it's possible. whoever programs it has to include lines for it to say, for i doubt it would be possible for it to generate statements of its own.
.Guru is offline  
Old 03/09/2010, 05:57   #9
 
elite*gold: 0
Join Date: Jun 2009
Posts: 93
Received Thanks: 17
Quote:
Originally Posted by .Arco View Post
I think aco or something had some AI mob that fb'd and whatnot.
Yeah the AI Trainer :P Jumps and Fbs at specific Aimbot levels, that's what I meant by semi-possible tbh I think all he listed is possible except the writing, there's just no way to make a bot/AI think for itself and react to someone elses typing in specific way's they can only type pre-thought out messages that's part of there coding.

But yeah nobody has developed an AI character like that yet, maybe sometime in the future there will be - An AI character that moves, jumps around and fb's at different map id's is for sure possible.
~*|Limbo|*~ is offline  
Old 03/09/2010, 06:01   #10
 
elite*gold: 0
Join Date: Aug 2009
Posts: 930
Received Thanks: 448
if someone were to create an AI character of that talent, it would be far more code then any of us could imagine. Pretty much creating a mind of itself
.Guru is offline  
Old 03/09/2010, 09:20   #11
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
Quote:
Originally Posted by ~*|Limbo|*~ View Post
Yeah the AI Trainer :P Jumps and Fbs at specific Aimbot levels, that's what I meant by semi-possible tbh I think all he listed is possible except the writing, there's just no way to make a bot/AI think for itself and react to someone elses typing in specific way's they can only type pre-thought out messages that's part of there coding.

But yeah nobody has developed an AI character like that yet, maybe sometime in the future there will be - An AI character that moves, jumps around and fb's at different map id's is for sure possible.
Well even if it wasn't server side... they could still do a standalone client with input/output for text run through a generic (or custom) chatbot....


Not saying it would be easy but VERY possible.

Can't think of the name of the bot atm but remember the standalone bot that existed years ago on co? You wouldn't need anything that complex and regardless of proxy, standalone client or built into source you still have strings which can be manipulated to produce basic responses...

Chatbots ftw.

I honestly can think of no purpose or reason to put THAT MUCH EFFORT into such a thing though... I mean basic ai for boss mobs I can understand... running away, baiting players, using skills, that sort of stuff but adding anything past that just seems pointless.
pro4never is offline  
Old 03/09/2010, 09:57   #12


 
Korvacs's Avatar
 
elite*gold: 20
Join Date: Mar 2006
Posts: 6,125
Received Thanks: 2,518
Yeah i started on a similar system, theres a few ways of doing it, both interal to the server and external, the easiest is to create a special entity which has a bunch of timers and threads running to perform various tasks like interaction, chatting, moving, attacking etc etc, then have it send packets to the packet handler like a normal client would.

The other way would be to create a standalone bot of sorts which again has the above threads and timers running to perform actions and interaction, this is considerably easier in earlier clients because you dont have to deal with both sides of the key exchange and what not, it would also require no modification to your server source.

Personally the second choice would be better if you were to use it all the time, i considered using the first approach for a tutorial/guide to the private server, and possibly an AI Co-op mode for some things.
Korvacs is offline  
Old 03/09/2010, 10:04   #13
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
yahhh... if I had the time and a bit more knowledge a standalone ai bot would be a really fun thing to try to code.
pro4never is offline  
Old 03/09/2010, 17:16   #14
 
ImmuneOne's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 754
Received Thanks: 544
Quote:
Originally Posted by Korvacs View Post
..
Mine goes internal, the fastblade calculations are a bit off though.

'Having a mind of it's own':
Fairly impossible, there are released lists with responses for such bots. What you could do is;

Quote:
Chat:
-> Process output of player
-> Compare the responses
-> Compile input, send back to player.

AI:
-> Create new instance for the AI, you should use the Player/Character class for that.
-> Call a thread for surrounding targets.
-> IF Target < 15 of AI: Call magic spell.
ImmuneOne is offline  
Old 03/09/2010, 21:20   #15
 
elite*gold: 0
Join Date: Mar 2010
Posts: 133
Received Thanks: 22
mind of its own it could do that though it would need some type of input


just like a child it has its mind of its own but it learns from others

you could make it go learn seeprate
like let ur ai bot go and hunt by itself and make it compare which mobs might have a better drop calculation.
herekorvac is offline  
Reply


Similar Threads Similar Threads
[Question]GUI Intereface Input Text.
06/08/2010 - CO2 Private Server - 5 Replies
Hey, needing help on my source(USES GUI) i made it GUI but i don't understand how do i do the input text? Like elite-coemu it starts up server and when u press start it inputs the text in the text box Like so if i put console.writeline("Bleh"); Or Database.LoadMobs; I want it to input that text in the text box any ideas?
Idea! Read here.
05/03/2010 - Conquer Online 2 - 0 Replies
I have an idea for a program, However my lack of programming skills will not allow me to make such program because my brain isnt what it use to be in my younger days. The idea will save guild's countless hours in searching and recruiting. It is a Guild Recruiter, A simple mouse macro attached to a more complex macro. (for clicking players and such without running around like Paris Hilton on crack) Im bringing this up because it would be an awesome project to show off your programming...
NEW IDEA WITH WPE ;) PLS READ
05/18/2009 - Archlord - 6 Replies
Ok , i was messing today around with duping things but all i got Was a stupid fake item , someone chalenged me to dupe a shoker Necklace , and i did it but it was fake (the idea is that u cant Trade it so its useless , neither trade nor auction) , then i got a new idea , why dupe items and make money, why not try and equip to yourself some lv 85 neck and armor which is cheap and strong . So heres my idea : - i was messing around with wpe recording packages while trying to equip a shoker...
New Idea ...please read if you think you can help
07/16/2008 - Dekaron - 5 Replies
ok so i was thinking the other day about how great it was when i could go to nunvice and get a ton of argates using the glitch. well we all know by now that they must've fixed the glitch. but since the usa folder works, maybe there is a way to make the glitch work again:eek::D. ok so i dont have any idea if this will work and i dont wanna waste any time or memory so i thought i would ask the leetest leet haxors over here at my favorite hack site elitepvpers! so here is the idea.......... ...
XP idea(read plz :))
11/26/2007 - Archlord - 8 Replies
ok i know XP is server sidE( cant be changed) buuuuuuuut is losing 3% XP server side? if not could .ini files change it to say gain 100% when die? :)



All times are GMT +2. The time now is 17:55.


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.