Kodewerx
https://www.kodewerx.org/forum/

Baphomet's AR CodeShop Download
https://www.kodewerx.org/forum/viewtopic.php?f=11&t=727
Page 1 of 2

Author:  Baphomet [ Mon Feb 12, 2007 1:18 pm ]
Post subject:  Baphomet's AR CodeShop Download

download it here: http://www.megaupload.com/?d=GPWDSQE7

Author:  kickenchicken57 [ Mon Feb 12, 2007 1:28 pm ]
Post subject: 

why don't you head over to http://www.110mb.com and sign up for a free account. That way you can host your own stuff and it wont get deleted.

Author:  Baphomet [ Mon Feb 12, 2007 1:29 pm ]
Post subject: 

Well, I think megaupload will stay there.

Author:  Sniping Ferret [ Mon Feb 12, 2007 3:40 pm ]
Post subject: 

It's already gone...

Author:  A_Random_Person [ Mon Feb 12, 2007 5:18 pm ]
Post subject: 

No, its still there.

Author:  Jarrett619 [ Mon Feb 12, 2007 5:33 pm ]
Post subject: 

i cant find the download on that site and the one you sent me was corrupt

Author:  Jarrett619 [ Mon Feb 12, 2007 5:42 pm ]
Post subject: 

nvm i redownloaded and it worked fine the one you sent me that is ^_^

Author:  A_Random_Person [ Mon Feb 12, 2007 5:42 pm ]
Post subject: 

Look for the "Please enter "(whatever letters)" here: enter the letters in the box and click download.

Author:  Baphomet [ Fri Mar 02, 2007 10:42 am ]
Post subject: 

Sorry to remove the link, I wasn't sure it was ready to be released. I fixed a few bugs and put the link back up. New features are on their way. When I'm done, my program will rival kickenchicken's.

Author:  Link2999 [ Fri Mar 02, 2007 11:19 am ]
Post subject: 

Baphomet wrote:
Sorry to remove the link, I wasn't sure it was ready to be released. I fixed a few bugs and put the link back up. New features are on their way. When I'm done, my program will rival kickenchicken's.


And also when your done the app will be on GS...

Author:  kickenchicken57 [ Fri Mar 02, 2007 11:59 am ]
Post subject: 

so, make sure to include lots of things that say "Rune is GAY" and "Rune does his dead cat! and the cat likes it!" make sure its embedded into the program. It may prevent it from getting onto GSC

Author:  cady_driver [ Fri Mar 02, 2007 5:44 pm ]
Post subject: 

Sorry but can anyone tell me how to download it?

Author:  Baphomet [ Sat Mar 03, 2007 12:08 pm ]
Post subject: 

I don't care if rune takes it. Its full of KodeWerx links and thank yous. I doubt he'll want it like this. But if he takes it, I'd expect my name to stay on it. As long as nothing is removed when they post it. I really don't care if they host it.


@cady: You put the security code in and hit download.

Author:  cady_driver [ Sat Mar 03, 2007 12:58 pm ]
Post subject: 

Thanks its working know!

Author:  IronJoey27 [ Sun Mar 04, 2007 1:16 pm ]
Post subject: 

your program is awesome im even satisfied it ports for you

Author:  Hells Guardian [ Wed Mar 07, 2007 4:40 pm ]
Post subject: 

One question what does the program work with? No I'm not here to take it but I am looking to use it myself.

Author:  Shadow23 [ Wed Mar 07, 2007 4:52 pm ]
Post subject: 

This is probably a n00b question...but, what does this do?

Author:  Dualscreenman [ Wed Mar 07, 2007 5:07 pm ]
Post subject: 

Hells Guardian wrote:
One question what does the program work with? No I'm not here to take it but I am looking to use it myself.

It works with Windows, and it will work in Linux/Mac if you run it under Wine.

Author:  Modman [ Wed Mar 07, 2007 9:12 pm ]
Post subject: 

I'm more interested in Baphomet's sig code. Quite an interesting piece of work there.

Author:  IronJoey27 [ Wed Mar 07, 2007 9:18 pm ]
Post subject: 

i dont get it lol

Author:  James0x57 [ Fri Mar 09, 2007 6:45 pm ]
Post subject: 

Modman wrote:
I'm more interested in Baphomet's sig code. Quite an interesting piece of work there.
Looks like a memory dump. And there's a ';' that seems a bit out of place in the imbeded for loop though..

Author:  Baphomet [ Tue Mar 20, 2007 8:30 am ]
Post subject: 

Try compiling my sig in Windows. It should print 0s and 1s on the console screen in a green font. In Linux or Mac it will print 0s and 1s but not in a green font...

Author:  Modman [ Wed Mar 21, 2007 10:23 am ]
Post subject: 

Yeah, it does. rand()%2 prints any number lower than 2 and greater or equal to 0. Replace 2 with any number to get some interesting results.

For those of you too lazy to compile, http://www.megaupload.com/?d=V25TRRRF.

Author:  dlong [ Wed Mar 21, 2007 12:18 pm ]
Post subject: 

Twilight Spectre wrote:
Modman wrote:
I'm more interested in Baphomet's sig code. Quite an interesting piece of work there.
Looks like a memory dump. And there's a ';' that seems a bit out of place in the imbeded for loop though..


1.) No.
2.) No.
3.) Learn C.

What interests me is that iostream is #included, but not used, and print() is used without stdio.h/cstdio.

Author:  James0x57 [ Wed Mar 21, 2007 12:38 pm ]
Post subject: 

I'm going to study C over summer break. And maybe C-sharp? What's the opinion on that?

Author:  brkirch [ Wed Mar 21, 2007 1:38 pm ]
Post subject: 

dlong wrote:
What interests me is that iostream is #included, but not used, and print() is used without stdio.h/cstdio.


It looks like it was originally written in C++, as "cstdlib" and "iostream" are C++ header files. IMO it would make more sense if it were written like this:
Code:
#include <cstdlib>
#include <iostream>
using namespace std;

int main(int argc, char *argv[])
{

   system("color 0A");
   for(int i=0;;i=rand()%2){
   for(long x=0;x<600000;x++);
   cout << i;
   system("pause");
   return 0;
}

Author:  dlong [ Wed Mar 21, 2007 1:47 pm ]
Post subject: 

Regardless, it shouldn't compile as written.

Author:  kickenchicken57 [ Wed Mar 21, 2007 6:08 pm ]
Post subject: 

Twilight Spectre wrote:
I'm going to study C over summer break. And maybe C-sharp? What's the opinion on that?


If you want to fit in, go for C. If you want to be like me go for both and give C# a try :) its nice for Rapid App development and used alot in the software industry. C is more used in the hacking community and in game systems such as GBA and NDS. all languages have their own uses.

Author:  Parasytic_In_Theory [ Wed Mar 21, 2007 6:11 pm ]
Post subject: 

Hey, where is Baphomet's Stat Point Modifier?
I want that one, Sorry, KC, I just don't feel like downloading that .net framewerx.

Author:  kickenchicken57 [ Wed Mar 21, 2007 6:33 pm ]
Post subject: 

he didn't make one, just me ;)
::sigh:: one day I'll beak down and use C for you guy's sake.

Page 1 of 2 All times are UTC - 8 hours [ DST ]
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/