Search found 1723 matches

by notthecheatr
Jan 19, 2011 6:44
Forum: Projects
Topic: Procedural block world project
Replies: 310
Views: 114220

Neat idea. I've often thought that the biggest downfall of Minecraft is that it's written in Java. Who the hell tries to write a 3d game in Java? It runs ridiculously slow on any computer that isn't a speed demon computer, and considering that the graphics are retro-style (read: crap, but we don't c...
by notthecheatr
Sep 29, 2010 21:57
Forum: Community Discussion
Topic: Desire to make a jukebox proggie
Replies: 11
Views: 2844

FreeBASIC doesn't support inheritance at any rate so it probably doesn't matter too much. Many of the other features of OOP are available however, and I'd recommend learning them as programming with encapsulation makes a lot of things much, much easier. But it's your choice. I'm trying to figure out...
by notthecheatr
Sep 29, 2010 1:54
Forum: Community Discussion
Topic: Back 2 BASIC Issue #2!
Replies: 19
Views: 4782

Me likey, but I must admit that I rather miss when it was all on one page. I was able to save it for offline reading later on when that was the case. Perhaps you could put a ZIP downloadable form? Not all of us have reliable internet available 24/7, i.e. some of us live in Nowhereville, USA :(
by notthecheatr
Oct 04, 2009 21:06
Forum: Libraries Questions
Topic: libxml2 (free XML library)
Replies: 1
Views: 2056

I doubt there will be any new compiler releases very soon; most of the devs are on hiatus because of real life things. It might not be as hard to convert the headers as you think. There's a program called SWIG used to do most of the work for you; you can find out more about libraries in this thread:...
by notthecheatr
Oct 04, 2009 20:29
Forum: Community Discussion
Topic: A mini-game in progress...
Replies: 9
Views: 3558

This has to be one of the most epically awesome things I have ever seen.
by notthecheatr
Oct 04, 2009 20:23
Forum: Community Discussion
Topic: Is D.J.Peters (Joshy) still floating around somewhere?
Replies: 2
Views: 2230

Ah, I see. Remember FreeSound? I was wondering if you had ever done anything more with it, since it was a pretty useful library a while back. I need some way to mix some sounds and then output to WAV files. Since you're probably not programming any more nowadays, I'll probably try to figure out how ...
by notthecheatr
Sep 24, 2009 20:04
Forum: Archive
Topic: Embedding ScriptBasic in FreeBASIC
Replies: 45
Views: 11461

I love Lua, but I'll certainly take a look at this.

Basic syntax is always a nice thing, and being able to embed it in FreeBASIC is extremely helpful.
by notthecheatr
Sep 24, 2009 19:56
Forum: General
Topic: difference between null an 0?
Replies: 9
Views: 2924

Though they are generally stored the same way (to a computer, NULL == 0), it's good to keep the distinction in mind. NULL literally means nothing; whereas 0 signifies the number 0. NULL may have different equivalents in different types; it means no number at all (rather than 0), or no characters at ...
by notthecheatr
Sep 24, 2009 19:52
Forum: Beginners
Topic: Questions about Constants
Replies: 9
Views: 2855

If you want a preferences settings, you need to store them as variables, not constants. I'd recommend using a UDT, as jevans suggested. This also allows you to pass them about to various parts of the program, instead of using global variables, which are usually considered poor practice. For storing ...
by notthecheatr
Sep 24, 2009 19:47
Forum: Beginners
Topic: Finding Malware & Hidden Changes
Replies: 8
Views: 2732

Spybot Search and Destroy comes with something called the Teatimer, which will alert you any time something tries to change your registry, and asks your permission to make that change. You can enable programs you trust to make changes without your permission, and programs you don't trust you can kee...
by notthecheatr
Sep 03, 2009 16:13
Forum: Projects
Topic: FbEdit, new IDE for FreeBASIC written in FreeBASIC
Replies: 964
Views: 241668

Ah, really?

Fantastic o_O
by notthecheatr
Sep 03, 2009 16:10
Forum: Community Discussion
Topic: A Serious Article Debating the Pros and Cons of FreeBASIC
Replies: 218
Views: 53191

I was always interested in contributing to the compiler, but two things conspire against me: -My lack of knowledge about the way the compiler works, or how to add things to it or fix things in it. Hell, I don't even know how to compile it from the SVN, though I suspect that would be the easiest part...
by notthecheatr
Sep 02, 2009 18:30
Forum: General
Topic: Fixing some small errors, HELP!
Replies: 6
Views: 2880

Cool. I wonder if this is the first time anyone's ever used FreeBASIC to try to cheat in an MMORPG ? Now I want this program to work =P I don't know what things like Mid(Chr(1)+"tp.dat",2,6) are supposed to do - it seems a very roundabout way of just saying saying "tp.dat". o_O W...
by notthecheatr
Sep 02, 2009 18:19
Forum: Projects
Topic: FbEdit, new IDE for FreeBASIC written in FreeBASIC
Replies: 964
Views: 241668

Small feature request: I often put FBEdit on a flash drive so I can program on computers where I can't install FreeBASIC. The problem is that different computers have different drive setups. So I'll set the paths in FBEdit to go to the G:\ drive (e.g., G:\Program Files\FBEdit) but later I'll go to a...