Search found 218 matches

by SSC
Dec 14, 2008 10:34
Forum: Archive
Topic: Bullet Rel Designer
Replies: 2
Views: 1865

yay! rel is still alive =P

seems pretty cool, I assume this is a utility for the next shooter or something? most of the settings dont seem to change anything at least visually though.
by SSC
Dec 12, 2008 8:09
Forum: Beginners
Topic: Any alternative to cls?
Replies: 13
Views: 3115

if you draw over the entire screen then there is really no need for cls, however if you dont you could either use cls, draw a box around the entire screen, or use a different graphics lib (SDL / OpenGL). I honeslty have never tested speed so I can't tell you how fast any of it is.
by SSC
Dec 10, 2008 7:47
Forum: General
Topic: Two out of three inputs only needed to continue
Replies: 1
Views: 1188

you could simply make 2 variables, one that keeps track of how many inputs the user has entered, and one that tracks which 2 inputs has been entered, and when 2 inputs have been entered, tell the program to automatically input the third. Not sure if that helps any, but you should be a little more sp...
by SSC
Nov 30, 2008 13:45
Forum: General
Topic: Can this be done?
Replies: 17
Views: 4654

ah, I understand what you are asking now, using my method with variables also could work but thats less than ideal, I would also like to know if there is another way to do this.
by SSC
Nov 29, 2008 15:09
Forum: General
Topic: Can this be done?
Replies: 17
Views: 4654

Not sure if this would work for . . . whatever it is you need this for but how about this. make a function pointer and inside the function assign it to the function that its in, then have a list of all functions in the program in string format then compare the pointer type to those of other function...
by SSC
Nov 29, 2008 8:48
Forum: General
Topic: Skip remarks and empty lines while reading a file
Replies: 19
Views: 4683

Empty lines should be skipped automatically by the compiler, but for the remarks you can use this. Dim As String fp Dim As String temp_string Open "test.txt" For Input As #1 While Not Eof(1) Line Input #1,temp_string If mid(fp, 1, 1) <> "*" then fp = temp_string Wend Close #1 Thi...
by SSC
Nov 28, 2008 7:39
Forum: Archive
Topic: AVI Reader Object + Audio !!!
Replies: 24
Views: 7528

Sounds like a useful tool, will you eventually add support for mpeg or other formats?
by SSC
Nov 26, 2008 9:45
Forum: General
Topic: Threads and conditional objects...
Replies: 3
Views: 1718

I personally dont use thread conditions, but if you want to use a thread to check if a certain variable has changed you could do this: sub some_thread() do if var_1 = somevalue then var_2 = some_other_value end if sleep 1000 loop until program_end = true end sub this will check once per second (or w...
by SSC
Nov 16, 2008 7:40
Forum: General
Topic: Vista input# bug?
Replies: 6
Views: 2729

A fresh install did the trick, I must have accidentally copied over the new libs when I moved my project folder, thanks ^^
by SSC
Nov 15, 2008 18:23
Forum: General
Topic: Vista input# bug?
Replies: 6
Views: 2729

I am using .20 and I don't recall for sure how I installed it, I think it was from the zip file, I'll try downloading it again after I get off work.
by SSC
Nov 15, 2008 18:00
Forum: General
Topic: Vista input# bug?
Replies: 6
Views: 2729

Vista input# bug?

Code: Select all

open filename for input as #1
input #1, some_string
close
gives me the following error in vista
FbTemp.o:fake:(.text+0xe4) : undefined reference to 'fb_InputString@16'
by SSC
Nov 07, 2008 12:57
Forum: Community Discussion
Topic: MOCKUP of FreeBASIC 1.0 Goals
Replies: 52
Views: 15778

If you want a basic-to-gcc front-end, there is GNU liberty basic (GLBCC). Abandoned since 2002 apparently... I think that the FB project should not abandon QB compatibility, even if a more sophisticated (or C-like ?) version is developed independently. Thats the kind of thinking that will hurt the ...
by SSC
Nov 05, 2008 9:09
Forum: Community Discussion
Topic: MOCKUP of FreeBASIC 1.0 Goals
Replies: 52
Views: 15778

I also agree with jevans, the current FB should be polished up before committing to a 2.0 version, and for that matter if the syntax and code is going to change drastically maybe a rename would be appropriate . . . FB++? heh
by SSC
Oct 27, 2008 7:55
Forum: Archive
Topic: Conquest MapEd Beta
Replies: 3
Views: 2236

Yeah, I have been hearing reports of random crashes, when I try to recreate them I can't, so this should be fun to fix heh. I an redoing the gui handler so that should fix a good majority of the bugs I hope. Thank you for testing it.
by SSC
Oct 26, 2008 18:29
Forum: Archive
Topic: Conquest MapEd Beta
Replies: 3
Views: 2236

Conquest MapEd Beta *Update*

Here is the final beta for the editor, it is 98% funcionally complete, however this is a beta because there are some things that dont quite work right, and a couple of features that are not included. Features not yet included or not yet complete: *Toggling the tile and units selectors and being able...