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.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 »
481
Programming Help / Re: C++ short delay when using CIN
« on: July 23, 2014, 11:30:03 pm »
I am not going to open another topic, but I have a slightly O/T question 
it concerns dynamic memory allocation,
what happens if you use NEW but don't use DELETE and you exit your program. Will the OS automatically free any memory allocated by your CPP, or will the memory not be freed.
Let's say for example
What happens if I let the program exit or forcibly exit and don't use delete ? Will 5000 bytes of RAM be lost in space unless I restart windows or use a RAM freeing tool or will the OS automatically free it upon exit ?
Again this is a question out of curiosity, as I know better than to not free RAM I allocate
BTW, I'm assuming that once the process ends the memory allocated along with it is freed, but just want to make sure
2) (yes it's a 2 part question). What's the command so I find out HOW MUCH RAM was allocated ? In the example above I know that 5000 bytes were allocated as char = 1 byte, right ? for an int it would have been 4 * 5000, etc. so how do I find out, in the example above, how much RAM was allocated.
Thanks
and eds don't worry about it, I was wondering why my code was modified was afraid maybe I switched to a parallel universe

it concerns dynamic memory allocation,
what happens if you use NEW but don't use DELETE and you exit your program. Will the OS automatically free any memory allocated by your CPP, or will the memory not be freed.
Let's say for example
Code: (cpp) [Select]
char* resMem = new char[5000];
What happens if I let the program exit or forcibly exit and don't use delete ? Will 5000 bytes of RAM be lost in space unless I restart windows or use a RAM freeing tool or will the OS automatically free it upon exit ?
Again this is a question out of curiosity, as I know better than to not free RAM I allocate

BTW, I'm assuming that once the process ends the memory allocated along with it is freed, but just want to make sure

2) (yes it's a 2 part question). What's the command so I find out HOW MUCH RAM was allocated ? In the example above I know that 5000 bytes were allocated as char = 1 byte, right ? for an int it would have been 4 * 5000, etc. so how do I find out, in the example above, how much RAM was allocated.
Thanks

and eds don't worry about it, I was wondering why my code was modified was afraid maybe I switched to a parallel universe

482
General ENIGMA / Re: Fun with imge_single
« on: July 23, 2014, 10:40:52 pm »
Anything that slows down or has potential of slowing down ENIGMA for users who do not need those or don't use those functions is counter productive IMO. I canceled one of my past pull requests by concern of it slowing down. Don't assume people won't notice, perhaps things become more noticeable when your game is very complex and requires every bit of juice squeezed out. These type of functions that are not really used much should not be forced but made optional through the use of extension IMO.
483
Programming Help / Re: C++ short delay when using CIN
« on: July 23, 2014, 10:37:04 pm »
Why did you change my code there ?
Why 2 returns ? The example I gave is fine.
Could it have to do with the fact I am running Windows 7 64bit ?
I've made tons of console apps in my days, in QB, and the input prompt was instant. Shocked that it takes 1 second ! LOL.
BTW this was just a question out of curiosity.
Majority of my upcoming projects won't use CIN, but will take commands directly from command line. Though it's kinda odd, I also remember working with batch files back in the days and it was instant too....
I have a PC with Windows XP on it I will go try running it there, if CIN prompt is instant (no delay) then it's a windows7 or windows7 64bit thing.
Why 2 returns ? The example I gave is fine.
Could it have to do with the fact I am running Windows 7 64bit ?
I've made tons of console apps in my days, in QB, and the input prompt was instant. Shocked that it takes 1 second ! LOL.
BTW this was just a question out of curiosity.
Majority of my upcoming projects won't use CIN, but will take commands directly from command line. Though it's kinda odd, I also remember working with batch files back in the days and it was instant too....
I have a PC with Windows XP on it I will go try running it there, if CIN prompt is instant (no delay) then it's a windows7 or windows7 64bit thing.

484
Programming Help / C++ short delay when using CIN + file access discussion
« on: July 23, 2014, 08:56:25 pm »
This question is for C++ users, I noticed when using cin in my projects there is a noticeable pause of 1 second before the cursor appears.
Example, when making a program that displays a menu followed by a cin, when running the menu would display instantly, but there is a delay before the cursor appears, it's as if the cin takes time to "start". Why is this ?
Yes even on the release compile, same thing. I mean 1 second ? WTH! When I coded BASIC and used INPUT it was instant.
Example, when making a program that displays a menu followed by a cin, when running the menu would display instantly, but there is a delay before the cursor appears, it's as if the cin takes time to "start". Why is this ?
Code: (cpp) [Select]
#include <iostream>
using namespace std;
int x = 0;
int main()
{
cout << "-Options-" << endl;
cout << "1. Pack with encryption" << endl;
cout << "2. Pack without encryption" << endl;
cin >> x;
return 0;
}
Yes even on the release compile, same thing. I mean 1 second ? WTH! When I coded BASIC and used INPUT it was instant.
485
Proposals / Re: Modifying the way we select objects
« on: July 23, 2014, 11:59:29 am »
Indeed make sure you allow objects to layer on top of each other, (example you use many different TILES and lay 1 object ontop of the areas where you will check collision.
486
General ENIGMA / Re: New functions available in the rooms editor.
« on: July 22, 2014, 03:48:46 pm »
that was brilliant ! 
Amazing.......Now we have features that even GMS doesn't have......
The coloured area and following view boundary can be really helpful when making scrolling games.......
Thanks.

Amazing.......Now we have features that even GMS doesn't have......
The coloured area and following view boundary can be really helpful when making scrolling games.......
Thanks.
487
Developing ENIGMA / Re: Android
« on: July 21, 2014, 04:50:37 pm »
There are more to be done than just the graphics system, there are specific functions that need to be added, virtual keys, in app advertising, tilt and other mobile/tablet specific features, and of course the apps would have to be signed/app store compliant. Not placing any bets on ENIGMA ever being on par with other game making tools in terms of android exports.
488
Developing ENIGMA / Re: Android
« on: July 21, 2014, 03:16:03 pm »
I'm confused about this, you are adding an export option for ENIGMA ? Doesn't that require GLES implemented ? to my knowledge it's not completed, or is it something else?
The day that ENIGMA will be able to spit out store compliant android apps will be amazing. That will really boost its popularity as more developers will use it instead of having to spend $199 for the Android export + another $299 for the YYC, which is sheer rip-off IMO.
The day that ENIGMA will be able to spit out store compliant android apps will be amazing. That will really boost its popularity as more developers will use it instead of having to spend $199 for the Android export + another $299 for the YYC, which is sheer rip-off IMO.
489
Works in Progress / Re: Kimi Kini
« on: July 21, 2014, 03:13:15 pm »
Wasn't anything important it was a bit of humour/joke at the cartoon comment
but deleted it....I have to think 1000 times before writing anything around here anymore.
Wasn't important.
but deleted it....I have to think 1000 times before writing anything around here anymore.
Wasn't important.
490
General ENIGMA / Re: Indentation Styles
« on: July 20, 2014, 04:39:01 pm »
Ever since I started coding I have always used tabs.
As far as how people indent that seems to vary. Some start the bracket on the same line, others start it on a new line and anything between it indented. Personally that's what I do, makes code more readable / cleaner, in my view.
As far as how people indent that seems to vary. Some start the bracket on the same line, others start it on a new line and anything between it indented. Personally that's what I do, makes code more readable / cleaner, in my view.
491
Off-Topic / Re: Religious wars in the programming community
« on: July 20, 2014, 01:45:39 pm »
Means Too Long Didn't Read 

492
Off-Topic / Re: Religious wars in the programming community
« on: July 20, 2014, 01:27:02 pm »This whole topic is really TL;DR; am I supposed to be doing something about it? I don't see any 72-point type, so it's looking tame enough.
LOL you mean this ?
493
Off-Topic / Re: On a distant future
« on: July 20, 2014, 01:26:06 pm »I was mostly teasing. But no, I don't particularly like Facebook.
Neither do I.

But you do like Google though



I hope I still live to the day where gaming will reach that level (VR, holographic projections, movement) at least it would get people off their arses and move a little.
Mind you technology does exist but it's way out of reach and expensive.
494
Off-Topic / Re: Religious wars in the programming community
« on: July 20, 2014, 11:54:54 am »
I honestly was going to stop discussing this, but since you felt the need to add in your venom and your clueless, bloody ignorant, highly inflammatory, derogatory remarks below, I just can't sit there and not defend everything in them, you just forced my hand....
You think you have me figured out ? what the bloody hell is this, am I on trial here or is this a discussion ? Why would anybody in their right mind open topics on religion and yet feel the need to persecute and attack everyone who has beliefs ? Just because my religion and many religions have rapists, pedophiles and scammers in them does not give you the right to attack and label everyone in the same basket as I'm quite sure not EVERY pedophile / rapist / murderer is of a religion either.
You know nothing about me, and that goes for anybody else here. I am not the one here who started the whole religious topics, I'm the first person who said it was not a good idea to discuss religion on open forums, as lot of context can be lost in the writing or interpreted differently, if you knew me for years, in person you'd NEVER have guessed that I did believe in anything
But I still took part in said discussion because I thought people had an open mind here, guess I was wrong......
Don't BLOODY dare call me religious, you know nothing about me. You lot have a very disrespectful and arrogant stance against people with faith/beliefs, all labeling us into one group. I already made it clear how I feel about religion. I already made it clear that I am not even practicing my bloody religion or I wouldn't even be here arguing with you lot ! I don't go to church, haven't been in one in ages......... I'm the WORST of the worst examples of a religious person, so get the bloody hell over it already - ONE THING though I fully respect other people's religion or beliefs or non beliefs, I don't go around telling people to convert or this is right or wrong, unlike many of you atheists who always find a way to be on the defensive and utterly disrespect others with your rubbish.
In regards to science, again you are wrong. I DON'T want science to be wrong to suit my beliefs, quite the opposite, I'd be the first one to acknowledge any scientific explanations for thing. I'm an open minded person, and will never deny facts and science. However, since there is big money and big industries involved, there is obviously corruption, so one has to be careful being brainwashed both ways.
I like to question and see both sides of things.......when there is no definitive answer......I'm open to the possibility of some theories that our consciousness and EVERYTHING about our life is nothing more than electrical and chemical reactions in our brain, but also open to the possibility that there is more to life than our physical body and its physiological aspect/processes.
Did you eve bother read when I mention possibility ? Did I at any time say my views were the right ones and made conclusions ? NO.........Note the keyword possibility. I do have my beliefs in certain areas, but I DID mention I was on the fence on many things yet. Do I believe we are the only life out there in the open ? No. Do I believe in alien ? ghosts ? I never said I did........Do I believe our lives have meaning and that we are more than flesh ? I do....... PLEASE make the distinction , I did not SAY there IS something........... Some people go out there and turn their beliefs into facts and spread their crap on websites, tv shows, and write books, at no point in time did I do that.
can't a person express his views without being attacked around here !?!?!? Just because some of you had allegedly traumatic experiences doesn't mean you have to attack those who have beliefs especially when I was sympathetic and open to everything some of you said about your views (eds, did I ever bash you when you made your vicious comments ? No I even acknowledged and agreed with you in many areas!)
Wasn't I the one who mentioned that there is corruption/brainwash both sides ? Not all my remarks in regards to religion was kind, but you never bothered reading my bloody posts, as all you and others were doing is dissecting what you wanted to and finding ways to contradict and to go on the attack. WTH hate, is this a discussion or a religion war !?!?!?!?!?!? Is this atheists vs. believers ? I can't believe this.
Have you studied science ? Please share mate. If you think science has answers to everything, you probably did not pay attention in class. YES science has answers now that it did not 400 years ago, obviously, I'm not that fucking ignorant to deny it, but instead you degraded me and assumed that I would, who the bloody hell do you take me for ? You think I'm some bloody monk or religious freak wearing his rosary and sitting in a chair all day praising the Lord ? You mate are clueless if you think so.
And, no denying that perhaps science will come up with some answers, and I will be happy if they do! Wasn't I the first person who mentioned that I believe we are wasting our money spending billions on SETI or space programs, instead we should spend money where appropriate, medicine, humanity, etc, instead of spending billions searching for ETs ? I mentioned this more than once....... I do like the science aspect, I'm that person with an open mind. Many people in the scientific community also have beliefs sometimes many contradicting views with their own field ! How do I know ? I KNOW because many people in the field are close to me, I've worked with them, I've studied with them..... But not all are open about it. Do some doctors also have beliefs ? YES, I've come across some, yet they have to stick to what they know. Some doctors do believe in OBEs/NDEs, DESPITE medicine that can reproduce and explain many of its aspect (YES, wasn't I the first who acknowledged that ?) However, there are certain things yet unexplained. Doctors who work in the field have seen many things, and some do have beliefs, does it make them bad doctors ? No.
Essentially, the term BELIEF is used because there is no PROOF. It goes both ways.
What I stated were FACTS....In medicine, they don't have answers to everything, they might know a lot of "how" but can't always explain the "why". If we had all the answers, why the hell are there billions of $ spent on medical research, space exploration, space program, NASA, etc......it would be pointless to spend all that money for nothing don't you think ?
Wasn't I the FIRST person in this topic to admit that science thinks they have found the area of our brain responsible for our beliefs in a supreme being, (God area of the brain)........? FUNNY you might have skipped that ! Mind you these explanation don't negate any other possibilities out there, we might have some pieces of the puzzle, but the puzzle is far from being solved.
Wasn't I the first person to also mention all the hoaxes and scam behind religion and how it is used for corruption and brainwash around the world ? Would a religious closed minded person mention these words ? NEVER, so give me a break with your rubbish because your remarks are derogatory and unfair, and I can stoop to that level too if need be if I have to defend against such toss.
It stopped until you started it again.... Nice job Harri !
You had to add in your venom, so you expect me to sit there and not respond to it ?
LOL ! More tosspot remarks.
Because I have given many examples and acknowledged this, if you bothered reading. I mentioned many times that science made advances, and has answers, but not to everything. I already gave a solid argument. Billions are spent on research each year, wouldn't that be pointless if we had answers to everything ?
What does it have to do with this ?
Science does not have ALL answers, otherwise we'd be way more advanced don't you think ? There would be no need to spend billions/trillions of $ on medical research, exploration, etc. Sure compared to 400 years ago there are lot of answers, never denied that.....and sure in the future we will probably know more, again depending on how much of it is blocked by corruption. I'm even willing to admit that perhaps science knows more than it lets out, and simply blocked by money and major influences.
Do I believe we can cure more diseases than currently possible ? YES....... Do I believe some people higher up know things they are not sharing ? YES....... DESPITE all that, I don't think we have answers to everything.
and we never will crack the complete mystery of life itself.
If so I will acknowledge these answers the same as I do now. Won't change my beliefs though. I do go around preaching or changing people or scamming.....I don't bother anybody ! That's what separates a religious fanatic against someone with beliefs and open minded, I think you labeled me wrong mate.
If I didn't know better I could turn the tables and mention "You, just like other arrogant, self centered, condescending, disrespectful atheists......." would you like that ? I guess not. But I do know better because I know a lot of atheists, and luckily some are very respectful, open minded, and some of them have best friends who have beliefs and even some practicing their religion........We are all humans for FUCKsake.
Again, LOL, generalising. Seems you lot have been brainwashed into thinking every person with beliefs or practicing their religion are fanatics.
Do I tell you to stop "NOT believing" and believe in something ? NO, do I tell you how to live your life ? No, so don't bloody tell me what I SHOULD or SHOULD NOT believe in,
it's your CHOICE to be an atheist......the same reason why some people are GAY and some people are LESBIANS.......Can you tell a GAY person to stop being GAY because it is "wrong"
You could've fooled me !
You seem to have problems with people thinking out of the box, open minded, open to POSSIBILITIES. Can faith/belief help people ? YES, is there use for that YES! Why the hell do you think placebos are used in studies, how can you explain they are effective to some extent ? What about all that think positive, believe in yourself crap........ Mind over matter right ? Seems to tie in well with what science knows about the brain and the connection between some of the things it could not answer before.
So is there something wrong with believing in something "more" our "outside" the box, no........it's healthy just so long as you don't attempt to change others or ruin your life over it and those of others...... UNFORTUNATELY, this might not be the case for a large % of people...........PROOF is in the news all over.......look what's happening in the middle east and other countries.
So perhaps this is why you lot are putting us all in the same basket. Still does not justify your shite remarks earlier though.
lol, if it's not popular the way you expect it, it's a far bigger issue than language. There is no excuse.......Forums can be moderated you know ? There is a nice thing called an admin area, and admin privileges, that's what moderating is for, and that's what RULES are for.
On that note, you can keep your vicious attacks and remarks against my character I will defend them, but one thing I will not respond to is anything about religion, God, etc. unless it is done without the constant blatant disrespect. One thing I do notice however, the dissing always seems to come from the "non believer" atheist side......at least on this forum
So am I supposed to just "STOP" and accept all this rubbish ? especially when it has turned from an open debate to a TRIAL and personal attacks ?
You think you have me figured out ? what the bloody hell is this, am I on trial here or is this a discussion ? Why would anybody in their right mind open topics on religion and yet feel the need to persecute and attack everyone who has beliefs ? Just because my religion and many religions have rapists, pedophiles and scammers in them does not give you the right to attack and label everyone in the same basket as I'm quite sure not EVERY pedophile / rapist / murderer is of a religion either.
You know nothing about me, and that goes for anybody else here. I am not the one here who started the whole religious topics, I'm the first person who said it was not a good idea to discuss religion on open forums, as lot of context can be lost in the writing or interpreted differently, if you knew me for years, in person you'd NEVER have guessed that I did believe in anything

But I still took part in said discussion because I thought people had an open mind here, guess I was wrong......

Don't BLOODY dare call me religious, you know nothing about me. You lot have a very disrespectful and arrogant stance against people with faith/beliefs, all labeling us into one group. I already made it clear how I feel about religion. I already made it clear that I am not even practicing my bloody religion or I wouldn't even be here arguing with you lot ! I don't go to church, haven't been in one in ages......... I'm the WORST of the worst examples of a religious person, so get the bloody hell over it already - ONE THING though I fully respect other people's religion or beliefs or non beliefs, I don't go around telling people to convert or this is right or wrong, unlike many of you atheists who always find a way to be on the defensive and utterly disrespect others with your rubbish.
In regards to science, again you are wrong. I DON'T want science to be wrong to suit my beliefs, quite the opposite, I'd be the first one to acknowledge any scientific explanations for thing. I'm an open minded person, and will never deny facts and science. However, since there is big money and big industries involved, there is obviously corruption, so one has to be careful being brainwashed both ways.
I like to question and see both sides of things.......when there is no definitive answer......I'm open to the possibility of some theories that our consciousness and EVERYTHING about our life is nothing more than electrical and chemical reactions in our brain, but also open to the possibility that there is more to life than our physical body and its physiological aspect/processes.
Did you eve bother read when I mention possibility ? Did I at any time say my views were the right ones and made conclusions ? NO.........Note the keyword possibility. I do have my beliefs in certain areas, but I DID mention I was on the fence on many things yet. Do I believe we are the only life out there in the open ? No. Do I believe in alien ? ghosts ? I never said I did........Do I believe our lives have meaning and that we are more than flesh ? I do....... PLEASE make the distinction , I did not SAY there IS something........... Some people go out there and turn their beliefs into facts and spread their crap on websites, tv shows, and write books, at no point in time did I do that.
can't a person express his views without being attacked around here !?!?!? Just because some of you had allegedly traumatic experiences doesn't mean you have to attack those who have beliefs especially when I was sympathetic and open to everything some of you said about your views (eds, did I ever bash you when you made your vicious comments ? No I even acknowledged and agreed with you in many areas!)
Wasn't I the one who mentioned that there is corruption/brainwash both sides ? Not all my remarks in regards to religion was kind, but you never bothered reading my bloody posts, as all you and others were doing is dissecting what you wanted to and finding ways to contradict and to go on the attack. WTH hate, is this a discussion or a religion war !?!?!?!?!?!? Is this atheists vs. believers ? I can't believe this.
Have you studied science ? Please share mate. If you think science has answers to everything, you probably did not pay attention in class. YES science has answers now that it did not 400 years ago, obviously, I'm not that fucking ignorant to deny it, but instead you degraded me and assumed that I would, who the bloody hell do you take me for ? You think I'm some bloody monk or religious freak wearing his rosary and sitting in a chair all day praising the Lord ? You mate are clueless if you think so.
And, no denying that perhaps science will come up with some answers, and I will be happy if they do! Wasn't I the first person who mentioned that I believe we are wasting our money spending billions on SETI or space programs, instead we should spend money where appropriate, medicine, humanity, etc, instead of spending billions searching for ETs ? I mentioned this more than once....... I do like the science aspect, I'm that person with an open mind. Many people in the scientific community also have beliefs sometimes many contradicting views with their own field ! How do I know ? I KNOW because many people in the field are close to me, I've worked with them, I've studied with them..... But not all are open about it. Do some doctors also have beliefs ? YES, I've come across some, yet they have to stick to what they know. Some doctors do believe in OBEs/NDEs, DESPITE medicine that can reproduce and explain many of its aspect (YES, wasn't I the first who acknowledged that ?) However, there are certain things yet unexplained. Doctors who work in the field have seen many things, and some do have beliefs, does it make them bad doctors ? No.
Essentially, the term BELIEF is used because there is no PROOF. It goes both ways.
What I stated were FACTS....In medicine, they don't have answers to everything, they might know a lot of "how" but can't always explain the "why". If we had all the answers, why the hell are there billions of $ spent on medical research, space exploration, space program, NASA, etc......it would be pointless to spend all that money for nothing don't you think ?
Wasn't I the FIRST person in this topic to admit that science thinks they have found the area of our brain responsible for our beliefs in a supreme being, (God area of the brain)........? FUNNY you might have skipped that ! Mind you these explanation don't negate any other possibilities out there, we might have some pieces of the puzzle, but the puzzle is far from being solved.
Wasn't I the first person to also mention all the hoaxes and scam behind religion and how it is used for corruption and brainwash around the world ? Would a religious closed minded person mention these words ? NEVER, so give me a break with your rubbish because your remarks are derogatory and unfair, and I can stoop to that level too if need be if I have to defend against such toss.
Damn this topic was busy. Won't elaborate on anything as it all stopped
It stopped until you started it again.... Nice job Harri !

Quote
but just wanted Darkstar to think more about what he is saying in terms of science. I already mentioned that if you asked something that science can explains now, but couldn't 400 years ago to one of the earliest scientists, he won't be able to answer.
LOL ! More tosspot remarks.
Because I have given many examples and acknowledged this, if you bothered reading. I mentioned many times that science made advances, and has answers, but not to everything. I already gave a solid argument. Billions are spent on research each year, wouldn't that be pointless if we had answers to everything ?
What does it have to do with this ?
Quote
And the fact he isn't able to answer doesn't means science isn't able to answer. So if there is something science can't answer about brains right now, then how does that mean science can't answer it in general?
Science does not have ALL answers, otherwise we'd be way more advanced don't you think ? There would be no need to spend billions/trillions of $ on medical research, exploration, etc. Sure compared to 400 years ago there are lot of answers, never denied that.....and sure in the future we will probably know more, again depending on how much of it is blocked by corruption. I'm even willing to admit that perhaps science knows more than it lets out, and simply blocked by money and major influences.
Do I believe we can cure more diseases than currently possible ? YES....... Do I believe some people higher up know things they are not sharing ? YES....... DESPITE all that, I don't think we have answers to everything.
and we never will crack the complete mystery of life itself.
Quote
And if I ask you - if in 50 years they can answer your questions regarding brains, then will you suddenly think science can answer everything that is answerable?
If so I will acknowledge these answers the same as I do now. Won't change my beliefs though. I do go around preaching or changing people or scamming.....I don't bother anybody ! That's what separates a religious fanatic against someone with beliefs and open minded, I think you labeled me wrong mate.
Quote
You, just like many religious people today
If I didn't know better I could turn the tables and mention "You, just like other arrogant, self centered, condescending, disrespectful atheists......." would you like that ? I guess not. But I do know better because I know a lot of atheists, and luckily some are very respectful, open minded, and some of them have best friends who have beliefs and even some practicing their religion........We are all humans for FUCKsake.
Quote
and in previous decades, cling to yet unexplained as cause for science to be wrong. Because not that science is wrong, but because they NEED it to be wrong.
Again, LOL, generalising. Seems you lot have been brainwashed into thinking every person with beliefs or practicing their religion are fanatics.
Quote
They NEED it to be wrong or lacking, because otherwise there is no room for belief. So it's not really anything to do with science, it's about ones own inability to let go of his/her own beliefs.
Do I tell you to stop "NOT believing" and believe in something ? NO, do I tell you how to live your life ? No, so don't bloody tell me what I SHOULD or SHOULD NOT believe in,
it's your CHOICE to be an atheist......the same reason why some people are GAY and some people are LESBIANS.......Can you tell a GAY person to stop being GAY because it is "wrong"

Quote
tkg - I have no problems with you or anyone else.
You could've fooled me !

So is there something wrong with believing in something "more" our "outside" the box, no........it's healthy just so long as you don't attempt to change others or ruin your life over it and those of others...... UNFORTUNATELY, this might not be the case for a large % of people...........PROOF is in the news all over.......look what's happening in the middle east and other countries.
So perhaps this is why you lot are putting us all in the same basket. Still does not justify your shite remarks earlier though.
Quote
I don't like when 90% of topics in ENIGMA is filled with useless profanity though, as it kind of discredits the project.
But as I don't care about its popularity, then I don't care about the language used.
lol, if it's not popular the way you expect it, it's a far bigger issue than language. There is no excuse.......Forums can be moderated you know ? There is a nice thing called an admin area, and admin privileges, that's what moderating is for, and that's what RULES are for.
On that note, you can keep your vicious attacks and remarks against my character I will defend them, but one thing I will not respond to is anything about religion, God, etc. unless it is done without the constant blatant disrespect. One thing I do notice however, the dissing always seems to come from the "non believer" atheist side......at least on this forum

So am I supposed to just "STOP" and accept all this rubbish ? especially when it has turned from an open debate to a TRIAL and personal attacks ?

495
Works in Progress / Re: Norse Adventures planing stage
« on: July 19, 2014, 08:26:49 pm »
even if you take someone's art, it was a single frame, you still made it into an animation, that takes skill, nothing wrong with that as long as you credit the original author of the still image, and take credit for the animation.
Some people are great with art, but not both (meaning animation).
I'd love to make walking and climbing sprites for my platforms but suck majorly when it comes to that.
Some people are great with art, but not both (meaning animation).
I'd love to make walking and climbing sprites for my platforms but suck majorly when it comes to that.