Register for your free account! | Forgot your password?

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

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

Advertisement



Is there any decent programmers here?

Discussion on Is there any decent programmers here? within the CO2 Programming forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
Is there any decent programmers here?

You're not decent, before you can figure this out:
Language = Brainfuck.
BaussHacker is offline  
Thanks
2 Users
Old 09/23/2011, 11:23   #2
 
Chalkie's Avatar
 
elite*gold: 0
Join Date: Nov 2008
Posts: 288
Received Thanks: 197
99 bottles of beer ect ect, use know the song.
Chalkie is offline  
Thanks
2 Users
Old 09/23/2011, 11:36   #3
 
Lateralus's Avatar
 
elite*gold: 0
Join Date: May 2005
Posts: 1,892
Received Thanks: 918
This is what people who have never looked at any code think all code looks like. Seriously.
Lateralus is offline  
Thanks
1 User
Old 09/23/2011, 11:54   #4
 
m7mdxlife's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 920
Received Thanks: 3,514
I believe thats how an egy see's the english language...
m7mdxlife is offline  
Thanks
1 User
Old 09/23/2011, 12:29   #5
 
Benguin's Avatar
 
elite*gold: 0
Join Date: Jul 2010
Posts: 102
Received Thanks: 77
it said Bauss is the best camel everrr
Benguin is offline  
Thanks
2 Users
Old 09/23/2011, 12:39   #6
 
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
Quote:
Originally Posted by Benguin View Post
it said Bauss is the best camel everrr
True story.
BaussHacker is offline  
Old 09/23/2011, 13:26   #7
 
JobvdH's Avatar
 
elite*gold: 0
Join Date: Nov 2010
Posts: 371
Received Thanks: 120
Maybe the egys wants to learn english and type some **** in the hope they finally learned english..
JobvdH is offline  
Old 09/23/2011, 14:05   #8
 
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
Quote:
Originally Posted by JobvdH View Post
Maybe the egys wants to learn english and type some **** in the hope they finally learned english..
You don't get that it's a programming language? lool
The Egy joke died in 1960.
BaussHacker is offline  
Old 09/23/2011, 14:54   #9


 
Korvacs's Avatar
 
elite*gold: 20
Join Date: Mar 2006
Posts: 6,125
Received Thanks: 2,518
You dont actually need to be a decent programmer to know brainfuck, you just need to know brainfuck....
Korvacs is offline  
Old 09/23/2011, 14:56   #10
 
m7mdxlife's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 920
Received Thanks: 3,514
Quote:
Originally Posted by Korvacs View Post
You dont actually need to be a decent programmer to know brainfuck, you just need to know brainfuck....
care to make a guide? o.O
m7mdxlife is offline  
Thanks
1 User
Old 09/23/2011, 15:12   #11
 
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
Quote:
Originally Posted by Korvacs View Post
You dont actually need to be a decent programmer to know brainfuck, you just need to know brainfuck....
"Last Thursday, Urban Müller decided to snort a straight ton of coke laced with acid, and then ate a shroom for good measure. Brainfuck -- an esoteric turing test that isn't even suitable as a programming language -- was born. "

This is where I got this:


So you need to be on coke to understand brainfuck.. hmmm...

I thought about learning it, it's basically all about pointers.

Brainfuck | C equivalent
Code:
> 	++ptr;
< 	--ptr;
+ 	++*ptr;
- 	--*ptr;
. 	putchar(*ptr);
, 	*ptr=getchar();
[ 	while (*ptr) {
] 	}
http://en.wikipedia.org/wiki/Brainfuck
BaussHacker is offline  
Old 09/23/2011, 20:42   #12


 
Korvacs's Avatar
 
elite*gold: 20
Join Date: Mar 2006
Posts: 6,125
Received Thanks: 2,518
Shame that isnt true, and that the real reason it was made was to be able to write the smallest compiler ever made.

Heres hello world:

Code:
+++++ +++++             initialize counter (cell #0) to 10
[                       use loop to set the next four cells to 70/100/30/10
    > +++++ ++              add  7 to cell #1
    > +++++ +++++           add 10 to cell #2 
    > +++                   add  3 to cell #3
    > +                     add  1 to cell #4
    <<<< -                  decrement counter (cell #0)
]                   
> ++ .                  print 'H'
> + .                   print 'e'
+++++ ++ .              print 'l'
.                       print 'l'
+++ .                   print 'o'
> ++ .                  print ' '
<< +++++ +++++ +++++ .  print 'W'
> .                     print 'o'
+++ .                   print 'r'
----- - .               print 'l'
----- --- .             print 'd'
> + .                   print '!'
> .                     print '\n'
Korvacs is offline  
Old 09/23/2011, 21:43   #13
 
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
Quote:
Originally Posted by Korvacs View Post
Shame that isnt true, and that the real reason it was made was to be able to write the smallest compiler ever made.

Heres hello world:

Code:
+++++ +++++             initialize counter (cell #0) to 10
[                       use loop to set the next four cells to 70/100/30/10
    > +++++ ++              add  7 to cell #1
    > +++++ +++++           add 10 to cell #2 
    > +++                   add  3 to cell #3
    > +                     add  1 to cell #4
    <<<< -                  decrement counter (cell #0)
]                   
> ++ .                  print 'H'
> + .                   print 'e'
+++++ ++ .              print 'l'
.                       print 'l'
+++ .                   print 'o'
> ++ .                  print ' '
<< +++++ +++++ +++++ .  print 'W'
> .                     print 'o'
+++ .                   print 'r'
----- - .               print 'l'
----- --- .             print 'd'
> + .                   print '!'
> .                     print '\n'
I know it isn't true. Look at the source :P Just had to share the lol.
BaussHacker is offline  
Old 09/24/2011, 02:37   #14
 
pwerty's Avatar
 
elite*gold: 0
Join Date: Jul 2010
Posts: 55
Received Thanks: 11
ffs its Criss Angel .. please sign my post.
pwerty is offline  
Thanks
1 User
Old 09/24/2011, 11:11   #15
 
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
I think I might know a way to do this somehow. By parsing it all and converting it to C, however it wouldn't work that well. It would still be a ****** up code.
BaussHacker is offline  
Reply


Similar Threads Similar Threads
sa mga programmers.......
03/09/2024 - Grand Chase Philippines - 5 Replies
gawa nman sana kayo ng fragment hack hehehehhe ang hirap ng drop ngaun kahit saan.... 2frags per finish
I need a programmers help!
04/09/2010 - CO2 Programming - 3 Replies
:D...... can anyone create a bot for DexterityCO, its like a auto npc answerer in just seconds or milisec its for the npc named "sevensages" i need it to be clicked faster... and is it possible that you can create an auto gold loot w/o getting close to the gold and in a wide looting range? and you can put gold up to 999B instead of 1B is it possible? i really need this kind of bots and i really need your help thanks... :handsdown::handsdown::handsdown:!
Looking for programmers
05/11/2009 - World of Warcraft - 0 Replies
PrimaryGaming is looking for 1 or 2 MYSQL programmers (Windows & if possible Linux) for a private WoW server. If you are interested please contact me or TheMule for more details via mIRC or Ventrilo, our contact info can be found here. PG Team
All About Programmers
10/22/2008 - CO2 Programming - 35 Replies
I've made this topic to discuss people's opinions and stereotypes about programmers as a whole (opinions about individuals aren't helpful). I've always wondered what people thought about programmers and what they expect us to act like. This is a very, very 'out-there' thread but I think it sorta sticks to the forum topic :D Here are a few questions that come to mind when I think about programmers: Do you think of everyday problems in terms of programing? Are all programmers irritable...
any programmers please look
11/28/2006 - Conquer Online 2 - 14 Replies
ok i have a question not sure if possible maybe it is maybe its not.is there any way for a trojin to hit a flying archer.maybe some sort of programable thing that can be done for it im not sure what is server side and what is client side but i would like some input on this so i dont waist a bunch of my time on something that is imposible.



All times are GMT +2. The time now is 16:23.


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.