Search found 32 matches
- Nov 01, 2005 3:55
- Forum: Archive
- Topic: FreeBASIC MUD
- Replies: 17
- Views: 9299
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 ...
- Oct 26, 2005 17:29
- Forum: Projects
- Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
- Replies: 58
- Views: 37048
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...
- Oct 25, 2005 5:45
- Forum: Projects
- Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
- Replies: 58
- Views: 37048
- Oct 24, 2005 22:31
- Forum: Projects
- Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
- Replies: 58
- Views: 37048
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 ...
- Oct 20, 2005 9:11
- Forum: Projects
- Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
- Replies: 58
- Views: 37048
- Oct 19, 2005 12:32
- Forum: Projects
- Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
- Replies: 58
- Views: 37048
- Oct 07, 2005 3:17
- Forum: General
- Topic: DOD 5220.22-M
- Replies: 20
- Views: 7369
- Oct 06, 2005 15:09
- Forum: Community Discussion
- Topic: What types of Projects are needed to help boost Free BASIC's
- Replies: 32
- Views: 14048
- Oct 06, 2005 15:00
- Forum: General
- Topic: OPENing files.. We need an option..
- Replies: 22
- Views: 5860
- Oct 06, 2005 12:48
- Forum: General
- Topic: OPENing files.. We need an option..
- Replies: 22
- Views: 5860
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
- Sep 30, 2005 15:18
- Forum: Windows
- Topic: I like tomater juice.
- Replies: 45
- Views: 20414
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 ...
- Sep 30, 2005 5:46
- Forum: Windows
- Topic: I like tomater juice.
- Replies: 45
- Views: 20414
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...
- Sep 29, 2005 14:30
- Forum: Windows
- Topic: I like tomater juice.
- Replies: 45
- Views: 20414
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...
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...
- Sep 29, 2005 12:44
- Forum: Community Discussion
- Topic: Operating System
- Replies: 56
- Views: 21592
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....