Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - DrenDran

Pages: 1 ... 1186 1187 1188 1189 1190 [1191] 1192 1193 1194 1195 1196 ... 1445
17851
Suggestions & Requests / Re: Music request.
« on: December 18, 2010, 06:14:55 PM »
to download the mp3, it seems i have to buy the song to download it from amazon mp3 :C
youtube downloader works fine

17852
Off Topic / Re: Light up the Sky - The Afters
« on: December 18, 2010, 06:09:55 PM »
So i know this forum doesn't take well to christianity, But when i heard this song i felt it was appropriate to share it, the song is called Light up the Sky By the afters. After the things i've been through these past couple days, This song really opened my eyes, and it helped me get through all the Haters.

I hope this song helps you in your struggles with life.

Discuss.
At first I didn't realize why people were being mean to you in this thread.
Then I looked at who you are.

AHAHAHAHAHAHAH

17853
General Discussion / Re: [SYJ] Blockland Brick Maker
« on: December 18, 2010, 06:05:33 PM »
You can release the source code but no executables. People will have to build it themselves.
Sure, sure.

17854
General Discussion / [SYJ] Blockland Brick Maker
« on: December 18, 2010, 06:02:17 PM »
At the moment it can make regular bricks and print bricks, ramp or round bricks will be added soon.
Work is happening on it very fast, I only started this a few hours ago.

Video:
http://www.youtube.com/watch?v=-XLqo7Rqhpw
(Sorry the video is so fast and you don't actually get to see the print brick be printed on.)

Should I release it with source code?
( C++ )

17855
I believe I said rounds.
I haven't got that far yet.

17856
Then go ahead.
I started it two or three hours ago and have been working on it on and off:
http://www.youtube.com/watch?v=V2xdPQaZnFk
So far it does print bricks and normal bricks fine.

17857
You cannot generate a model.
False.
You can generate any file.

17859
Clan Discussion / Re: Blockland Air Force[BLAF]
« on: December 18, 2010, 12:34:23 PM »
I also hate you.

17860
General Discussion / Re: Dedicated Hosting Service [REQUESTING PAYMENT]
« on: December 18, 2010, 12:11:55 PM »
There is no standard way to send passports through the internet that I know of.
That's what I meant.

17861
Clan Discussion / Re: WTAA Now accepting!
« on: December 18, 2010, 12:11:31 PM »
if (joinedClan == 0)
{
     superCool = 9001
}
else
{
     superCool = -9999999
}
 :cookieMonster:
syntax error, line one
Interested in joining the WTAA?

All you do is set your clan tags to WTAA(your name here) MEM

And then notify me! Simple as that!

Join The WTAA today!

(WTAA=Worlds, Tactical, Assault, Army)


(Its a military partially against Roblox even though no war is possible between full games but who cares join anyway!!)

(Come to our side...we have cookies  :cookie: :cookie: :cookie: :cookieMonster:
No.

17862
Drama / Re: DO YOU LIKE LEGO UNIVERSE?
« on: December 18, 2010, 12:09:53 PM »

17863
General Discussion / Re: Guess what I've got?!
« on: December 18, 2010, 12:08:36 PM »
I don't get it, it looks like a stuffty overpowered weapon.

17864
General Discussion / Re: Dedicated Hosting Service [REQUESTING PAYMENT]
« on: December 18, 2010, 12:08:08 PM »
No, only you.

You're not taking part in a legal contract, I am.
So this can be done over the internet still though?

17865
(in c++ )
Here, I made a simple console brick maker (I know how to make graphic programs of course, but why bother with a gui if you're just entering text) that can make simple, non-special bricks:
Code: [Select]
#include <iostream>
#include <fstream>
#include <zip.cpp>
#include <zip.h>

using namespace std;

string fnam = "";
string dim = "";
string ndim = "";

int szipadd(HZIP hz,string in)
{
    return ZipAdd(hz,in.c_str(),in.c_str());
}

string cget()
{
    string tmp = "";
    cin>>tmp;
    return tmp;
}

string ask(string question)
{
    cout<<question<<"\n";
    return cget();
}

int main()
{
    cout<<"Syerjchep Blockland Brick Creator\n";
    cout<<"Version 1\n\n\n";

    cout<<"Would you like to make a normal, no print, no texture, not round, brick?\n";
    string in = cget();
    if(in == "yes" || in == "y")
    {
        cout<<"You choose yes.\n";

        while(true)
        {
            string l = ask("What do you want the length of the brick to be:");
            string w = ask("What do you want the width of the brick to be:");
            string h = ask("What do you want the height of the brick to be:");

            dim = l+" "+w+" "+h;
            ndim = l+"x"+w+"x"+h;

            cout<<"The dimensions of this brick will be:\n";
            cout<<dim<<"\n";

            string t = ask("Is this okay?");
            if(t == "y" || t == "yes")
            {
                cout<<"You entered yes, continuing.\n";
                break;
            }
            else cout<<"You entred no, choose again...\n";
        }

        ofstream disc("description.txt");
        disc<<"A normal brick with the deminsions: "<<dim<<"\n";
        disc<<"Author: Drendran, Syerjchep\n";
        disc.close();

        ofstream blb((ndim+"brick.blb").c_str());
        blb<<dim<<"\n";
        blb<<"BRICK\n";
        blb.close();

        ofstream scs("server.cs");
        scs<<"datablock fxDTSBrickData (brick"+ndim+"BrickData)\n";
        scs<<"{\n";
        scs<<"brickFile = \"./"+ndim+"brick.blb\";\n";
        scs<<"category = \"Bricks\";\n";
        scs<<"uiName = \""+ndim+" Brick\";\n";
        scs<<"subCategory = \"Custom Bricks\"\n";
        scs<<"};\n";
        scs.close();

        HZIP hz = CreateZip(("Brick_"+ndim+".zip").c_str(),0);
        szipadd(hz,"description.txt");
        szipadd(hz,(ndim+"brick.blb").c_str());
        szipadd(hz,"server.cs");
        CloseZip(hz);

        remove("server.cs");
        remove("description.txt");
        remove((ndim+"brick.blb").c_str());
    }
    else cout<<"You choose no: This program does not yet support special bricks.\n";

    cout<<"Input anything to exit.\n";
    cget();

    return 0;
}

Pages: 1 ... 1186 1187 1188 1189 1190 [1191] 1192 1193 1194 1195 1196 ... 1445