Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Programming
You last visited: Today at 12:33

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

Advertisement



About programming language /?

Discussion on About programming language /? within the CO2 Programming forum part of the Conquer Online 2 category.

Reply
 
Old 12/26/2011, 18:10   #16
 
elite*gold: 0
Join Date: Jun 2007
Posts: 18
Received Thanks: 0
Quote:
Originally Posted by andrewxxx View Post
almost all engineering colleges includes c but computer since which got alot of programming language P.S thanks for ur english it can tell where r u from :P
U r right and tell me if u can where i am from ?? :P)
gladx00 is offline  
Old 12/27/2011, 23:38   #17
 
BioHazarxPaul's Avatar
 
elite*gold: 0
Join Date: Nov 2005
Posts: 548
Received Thanks: 93
I enjoyed coding in C++ for my college class but they only teach the basics, its not really close to enough to start coding a server or even understanding a source and how to run it.
BioHazarxPaul is offline  
Old 12/28/2011, 02:02   #18
 
elite*gold: 0
Join Date: Jun 2007
Posts: 18
Received Thanks: 0
Today I learn the basics , Tomorrow I become a Pro !!
gladx00 is offline  
Old 12/28/2011, 02:38   #19
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Quote:
Originally Posted by gladx00 View Post
Today I learn the basics , Tomorrow I become a Pro !!
The question is can you remember what you have learned today, tomorrow?
Also it doesn't take a week to become a good coder, neither a month, but it can take months and years.
I don't have a username is offline  
Old 12/28/2011, 10:49   #20
 
elite*gold: 0
Join Date: Jun 2007
Posts: 18
Received Thanks: 0
Quote:
Originally Posted by I don't have a username View Post
The question is can you remember what you have learned today, tomorrow?
Also it doesn't take a week to become a good coder, neither a month, but it can take months and years.
!! There is nothing done except by hard working So i have to work hard !!
And Just Be optimistic !!!
gladx00 is offline  
Old 01/04/2012, 21:14   #21
 
elite*gold: 0
Join Date: Nov 2011
Posts: 16
Received Thanks: 1
class lame {
var **** = 'fruit loop';
function doodoo(flamed){
return flamed;
}
}
lame->doodoo('Topic');
Degree2Code is offline  
Old 01/04/2012, 23:03   #22
 
Lateralus's Avatar
 
elite*gold: 0
Join Date: May 2005
Posts: 1,892
Received Thanks: 918
Quote:
Originally Posted by Degree2Code View Post
class lame {
var **** = 'fruit loop';
function doodoo(flamed){
return flamed;
}
}
lame->doodoo('Topic');
Lots of syntax errors with this code.
Lateralus is offline  
Old 01/05/2012, 05:44   #23
 
elite*gold: 0
Join Date: Nov 2011
Posts: 16
Received Thanks: 1
depends what lang your coding in "Taa-da"
Degree2Code is offline  
Old 01/05/2012, 06:50   #24
 
12k's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 218
Received Thanks: 33
well, its not PHP, C#, C++, Java, or VB. So what language is it if there isnt any syntax errors haha.
12k is offline  
Old 01/05/2012, 13:53   #25
 
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
Quote:
Originally Posted by Degree2Code View Post
depends what lang your coding in "Taa-da"
No language is like that.

Let's analyze your code.

Code:
class lame {
 var poop = 'fruit loop';
 function doodoo(flamed){
 return flamed;
 }
 }
 lame->doodoo('Topic');
First you have the class lame.
Code:
class lame {
}
It's correct for Java and C#, but if it's C++ you need };.

Now we're back with 2 languages already which is C# and Java and it doesn't fit to any of it. function is a php keyword.

Code:
var poop = 'fruit loop';
var is a keyword in C#, so now we come up with the result that it's a C# code.

All parameters in C# requires an Identifier, because C# is type-strong.
Also you cannot return a datatype, but a datatype value, so the function is not a valid syntax either in any language.
Code:
 function doodoo(flamed){
 return flamed;
 }
Now what we have back is the method call:
Code:
 lame->doodoo('Topic');
-> is used in unsafe context with pointers. Example:
Code:
void something(somedatastruct* data)
{
Console.WriteLine(data->somevalue);
}
' ' is used to define a char. A char can only have one character, so it's not valid either. It would be correct as "Topic".

Other than that nice try.
I don't have a username is offline  
Thanks
1 User
Old 01/05/2012, 14:05   #26
 
turk55's Avatar
 
elite*gold: 130
Join Date: Oct 2007
Posts: 1,652
Received Thanks: 701
Quote:
Originally Posted by Degree2Code View Post
class lame {
var **** = 'fruit loop';
function doodoo(flamed){
return flamed;
}
}
lame->doodoo('Topic');
var name = prompt("What is your name ?");

if (name == Degree2Code)
{
alert("You failed!");
document.writeln("You failed");
}
else {
document.writeln("You are a nice guy/girl.");
}
turk55 is offline  
Old 01/05/2012, 18:13   #27
 
12k's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 218
Received Thanks: 33
class lame {
var $**** = 'fruit loop';
function doodoo($flamed){
return $flamed;
}
}
$lame->doodoo('Topic');

I believe thats what u were going for (PHP). But still didnt construct the class, and still syntax errors :P
12k is offline  
Old 01/05/2012, 19:22   #28
 
elite*gold: 0
Join Date: Nov 2011
Posts: 16
Received Thanks: 1
yup PHP would need $ unless you assigned a value for no $. So your all wrong lookup PHP6 and sorry for confusing you guys on a C#/C++ related topic ;p

PHP5 would be
class youdorks {
var $weak = 'all of you';
function callin($out) return 'juicy fruit';
}

class ha extends youdorks {
var $saving_term = 'inf';
public function shell_fish($dork){ return $dork; }
}

in php6 you don't need $ to assign it. or you could call it php5/javascript/c#/C++ updated into one basic concept.

Above all programming is something that I related to. It's not hard to code up some random retarded lines just to talk on a retarded thread lol
Degree2Code is offline  
Old 01/05/2012, 20:55   #29
 
12k's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 218
Received Thanks: 33
Ah, havent used 6 yet. But still need to construct ur class first unless ur using the __autoload.
12k is offline  
Old 01/05/2012, 21:23   #30
 
elite*gold: 0
Join Date: Nov 2011
Posts: 16
Received Thanks: 1
i'm just poor lol!, but a few other things to remember is all coding is the same with a few minor changes. Either way been there done that at some point.
Degree2Code is offline  
Reply


Similar Threads Similar Threads
[Help] Which programming language
08/02/2011 - General Coding - 5 Replies
Hi guys, So I'm looking for a new programming language to start learning but can't decide which one to pick... I want to be able to eventually write server applications using that language (game servers/ emulators) so I know something like VB ain't gonna do the job. I've looked at C/C++ which obviously would be best choices due to sheer power I'd get however learning and developing curve seems to be too long D: Also I don't really like languages with dependencies like the whole .NET...
Programming language
01/26/2010 - CO2 Programming - 3 Replies
Hi, I haven't connected to elitepvpers for a time, and now I have some free time so I wolud like to learn something. In my university i've learn C and basics of assembler, but I see the better programing languages you recomend to make some bots/hacks are C++,Java.... My question is if I know C already it woul be better to leran C++ or Java which is better to make hacks/bots not only for this game. Thanks
what programming language?
03/31/2008 - General Coding - 2 Replies
anyone know what a programming language which you could monitor what a certain memory address writes to, or an esi of a certain address
what programming language?
03/31/2008 - Conquer Online 2 - 1 Replies
anyone know what a programming language which you could monitor what a certain memory address writes to, or an esi of a certain address
Programming language
12/24/2007 - Conquer Online 2 - 3 Replies
Hello guys. Sorry for my newbish post :P im learning really quick c# and i was wondering how to check the programming language of a program.. like cotools? All i need is to know what the program is written in :P so i could make my 1st bot - autolevel + autoloot.... coz i dont trust those proxies at all. Even v3n0m. I tested it and after 1 day my account password was changed......... DONT TRUST PROXIES PEOPLE!. Is there any program that tells ya the programming language of a program?



All times are GMT +2. The time now is 12:33.


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.