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 :Cyoutube downloader works fine
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.
to download the mp3, it seems i have to buy the song to download it from amazon mp3 :Cyoutube downloader works fine
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.At first I didn't realize why people were being mean to you in this thread.
I hope this song helps you in your struggles with life.
Discuss.
You can release the source code but no executables. People will have to build it themselves.Sure, sure.
I believe I said rounds.I haven't got that far yet.
Then go ahead.I started it two or three hours ago and have been working on it on and off:
You cannot generate a model.False.
DrenDran, do your research.What?
There is no standard way to send passports through the internet that I know of.That's what I meant.
if (joinedClan == 0)syntax error, line one
{
superCool = 9001
}
else
{
superCool = -9999999
}
Interested in joining the WTAA?No.
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![]()
![]()
![]()
I love Lego Universe
yes i like lego universeYou two are friends.
No, only you.So this can be done over the internet still though?
You're not taking part in a legal contract, I am.
#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;
}