Search found 43 matches

by stpendl
Sat Jul 09, 2022 8:00 am
Forum: Using Just BASIC Files
Topic: Missing resources
Replies: 1
Views: 6695

Re: Missing resources

Can you give some examples?
In some cases the files are part of the JB distribution, so you already have them.
In other cases they are downloadable through an external link in the post.
Some internet sites might also have been brought down by its owner, so you might be lucky and get the resources ...
by stpendl
Thu Sep 05, 2013 10:49 pm
Forum: Broken Code
Topic: SHOOTING ANIMATION HELP!!!
Replies: 1
Views: 8067

Re: SHOOTING ANIMATION HELP!!!

Hi,

this forum is just used for sharing code that is to big to fit into a post or needs additional files.

Since you already started two other threads on the main forum, I would advice you to read the replies there.

BTW, posting one question to multiple forums doesn't help you getting a better ...
by stpendl
Fri Sep 14, 2012 5:49 am
Forum: Broken Code
Topic: A Drawing Tool
Replies: 2
Views: 12399

Re: A Drawing Tool

This forum is for uploading huge source code files, discussion is taking place at http://justbasic.conforums.com/

To get help you need to register at http://justbasic.conforums.com/

BTW, your code doesn't seem to be complete.
by stpendl
Fri Jun 29, 2012 8:17 pm
Forum: Broken Code
Topic: Changing Lot Numbers in a CSV file depending on sequence
Replies: 2
Views: 8447

Re: Changing Lot Numbers in a CSV file depending on sequence

This is a files archive, so people are seldom here for discussion.

It is better to post the problem at http://justbasic.conforums.com/ and only upload the file here for reference.
by stpendl
Sat Jan 14, 2012 2:58 pm
Forum: Games
Topic: tower defense
Replies: 7
Views: 7753

Re: tower defense

cassiope01 wrote:A version with Maze Editor...
It would be nice to not include the error.log file.

May be you could use the Community Code Zip ;)
by stpendl
Thu Jan 06, 2011 2:46 pm
Forum: Games
Topic: GUI for building game structure
Replies: 2
Views: 4686

Allow the user to select the location of Just BASIC in addition to select the location of the created data files.

Putting user created files into an installation folder of an application is against the Windows migration guidelines.
by stpendl
Wed Dec 29, 2010 5:24 pm
Forum: Games
Topic: Tetris
Replies: 2
Views: 5393

It would be so much easier, if the source code would be included in the ZIP archive, copy and paste of such a long code is a pain.

In addition people will be annoyed by having to scroll such a long way to see the archive, which after downloading does not contain the source code.

There is no ...
by stpendl
Sun Jul 18, 2010 5:38 pm
Forum: Games
Topic: Circle Collision test...
Replies: 2
Views: 4771

Attached find the original example at Processing.org translated in to JB.

There is one using only graphics commands and one with sprites.
by stpendl
Tue Jun 01, 2010 11:08 pm
Forum: Open Source - Community Projects
Topic: A* Pathfinding Library
Replies: 6
Views: 12634

I would replace CHR$(0) by a space in the display routine.

Sub Path.Print
' Display the loaded world map
Con(Path.StartX,Path.StartY) = asc("S")
Con(Path.EndX,Path.EndY) = asc("E")

For y = 1 To Path.Height
line$ = ""
For x = 1 To Path.Width
if Con(x,y) = 0 then
line$ = line$;" "
else ...
by stpendl
Tue Jun 01, 2010 11:04 pm
Forum: Open Source - Community Projects
Topic: A* Pathfinding Library
Replies: 6
Views: 12634

I think, that the path found:
++++++++++++++++++++++++++
+ +
+ PPPPPPPPP +
+ P+++++++P +
+ P+PPPP+ P +
+ PPP+ P+ P PPP PPP+
+ + + S+ PPP+PP PP+P+
+ ++++++++++ +PP PP+ P+
+ + +PPPPP+ P+
+ +++++++++ +++++ P+
+ + P+
+ +++++ PPPPPPP+
+ + P+++++++
+ ++PPPP +
+ + +P E +
++++++++++++++++++++++++++

is ...
by stpendl
Tue Jun 01, 2010 8:24 am
Forum: Open Source - Community Projects
Topic: A* Pathfinding Library
Replies: 6
Views: 12634

I favor the following display routine, since it indicates the start and end of the path too.

Sub Path.Print
' Display the loaded world map
Con(Path.StartX,Path.StartY) = asc("S")
Con(Path.EndX,Path.EndY) = asc("E")

For y = 1 To Path.Height
line$ = ""
For x = 1 To Path.Width
line$ = line ...
by stpendl
Wed Mar 24, 2010 9:49 am
Forum: Games
Topic: "Shorter path" procedure for a game... "Quori
Replies: 4
Views: 7029

Nice demo, so the next program will be a maze :lol:
by stpendl
Thu Oct 08, 2009 7:54 pm
Forum: Games
Topic: Platform Game Demo
Replies: 5
Views: 9616

It will be more confusing for people, if you separate the resources from the other files.
by stpendl
Sat Sep 26, 2009 7:45 am
Forum: Games
Topic: Platform Game Demo
Replies: 5
Views: 9616

Thanks for the update :lol:
by stpendl
Wed Sep 09, 2009 9:31 am
Forum: Programming Tools
Topic: JB Advanced Collision Tutorial
Replies: 4
Views: 13210

Thanks for the update :)