Search found 32 matches

by Chronos
Nov 01, 2005 3:55
Forum: Archive
Topic: FreeBASIC MUD
Replies: 17
Views: 8850

Dang, I missed the test. Hopefully I won't miss the next one. I've always had a fascination in MUD construction. As said, I had once worked on a MUD through the game dev language BYOND DM. I only know rather basic BASIC code, but I've gotten quite skilled with flat file manipulation. As a matter of ...
by Chronos
Oct 26, 2005 17:29
Forum: Projects
Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
Replies: 58
Views: 34131

You beat me to the punch. I was about to suggest anyone wanting to server use no-ip.com's service. That way you can reach the server computer no matter its IP, for instance..well, Ryan's example covers it. Even if your IP changes from 12.34.56.78 to 12.34.67.89, No-IP will catch it and send all user...
by Chronos
Oct 25, 2005 5:45
Forum: Projects
Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
Replies: 58
Views: 34131

Yahoo Messenger supports "Conference Chat", but I don't know its user limit. I do know it is possible for a seemingly unlimited number of users by making a Chat Room. OOC and Roll work wonderfully--thanks! This is shaping up to be the chat client of choice when and if the RPG I'm working o...
by Chronos
Oct 24, 2005 22:31
Forum: Projects
Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
Replies: 58
Views: 34131

Thanks for the suggestions, guys. Having the program be able to act as a psuedo-server in order to update IP Address and connection lists is an interesting idea, and would create sort of a persistent P2P chat network that was always up and running in one form or another. With decentralizaion being ...
by Chronos
Oct 20, 2005 9:11
Forum: Projects
Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
Replies: 58
Views: 34131

Actually, for something like that, why not just allow people to set up their own Master Servers? Then you can begin to create "Community Nets". This also takes the burden of a full master server off whoever decided to host the potentially huge master server that would be involved if all cl...
by Chronos
Oct 19, 2005 12:32
Forum: Projects
Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
Replies: 58
Views: 34131

Woah! You did everything I set out to do. *laughs*

Excellent work, cenozoite!
by Chronos
Oct 07, 2005 3:17
Forum: General
Topic: DOD 5220.22-M
Replies: 20
Views: 6591

I don't think opening for output would get the job done. Maybe opening for binary would, but that just writes all 0s, which isn't a very secure wipe, if my knowledge on this is at all accurate..
by Chronos
Oct 06, 2005 15:09
Forum: Community Discussion
Topic: What types of Projects are needed to help boost Free BASIC's
Replies: 32
Views: 12927

Windows already has an IDE for FB (FBIde); why don't we think to an IDE for Linux or DOS that IMHO is one thing FB really miss? Better if in text mode so it could be used also on low end or "historycal" machines. Or for people who would rather use Text Mode/DOS. (As it stands the only pro...
by Chronos
Oct 06, 2005 15:00
Forum: General
Topic: OPENing files.. We need an option..
Replies: 22
Views: 5442

A (rather sloppy) way of going about creating a binary file in the manner you're wanting could be done like this, I think... (I don't have FB available everywhere anymore so I can't test this): Compile with -ex though... ON ERROR GOTO panic OPEN "file.ext" FOR BINARY ACCESS WRITE AS #1 'Ac...
by Chronos
Oct 06, 2005 12:48
Forum: General
Topic: OPENing files.. We need an option..
Replies: 22
Views: 5442

Only problem is that NEW would add another keyword to the list of reserved words, and "new" might have functions in the future for object manipulation when Object-Oriented Programming arrives. New might already be implemented--I'll check the Wiki on it.

Code: Select all

Dim Automobile as NEW Car
by Chronos
Sep 30, 2005 15:18
Forum: Windows
Topic: I like tomater juice.
Replies: 45
Views: 18940

If you want my personal opinion, I see no problem with what you're doing, as long as the logger remains on your system. If it got out into the public network, that's when I'd start to worry. It seems to me, though your initial post did have some information that didn't look too good, you've said on ...
by Chronos
Sep 30, 2005 5:46
Forum: Windows
Topic: I like tomater juice.
Replies: 45
Views: 18940

Excellent. If I knew anything about TCP/IP I'd see what I could do in terms of your keylogger, but when it comes to that, the best I'm able to do right now is mod a program where all the TCP/IP stuff (Winsock) is taken care of already, so I'd be of little help. Personally, I can understand putting a...
by Chronos
Sep 29, 2005 14:30
Forum: Windows
Topic: I like tomater juice.
Replies: 45
Views: 18940

Prichard, would the game you intended on using the keylogger on be an MMO? Or just standard multiplayer? If it's an MMO, everything will come to your server through the network communications anyway , so you can just capture it on the side of the server. Let your users know you are doing this before...
by Chronos
Sep 29, 2005 14:12
Forum: General
Topic: Field$
Replies: 1
Views: 1357

Field is a keyword, and thus Field$ (your function), errors out, because this is the equivilent of Dim Field as String Field is a keyword, so FBC gives you an error. From the Wiki: TYPE typename FIELD= 1,2,4 ..... END TYPE Description: A TYPE variable has its fields aligned to the word length of the...
by Chronos
Sep 29, 2005 12:44
Forum: Community Discussion
Topic: Operating System
Replies: 56
Views: 19933

If Microsoft did that they'd have to go after all the other projects that let you run Windows apps (Wine for linux being my primary thought on the matter, but I could be entirely wrong about that, in terms of actual topic accuracy) Really, all they're doing is supporting Microsoft Windows API calls....