Forum Archive. A read-only snapshot of the Warfare Incorporated forums (2003–2020), preserved for historical purposes.  ·  warfareincorporated.com
Warfare Incorporated Forum

Warfare Fan Site
Author Message
Verdagon
Veteran Member
Joined: 05 Oct 2003
Posts: 1047
Location: San Luis Obispo, CA
 Post Posted: Fri Jul 15, 2005 11:54 pm  Post subject: Warfare Fan Site

Hey everyone. Remember Warfarer's Paradise?

I just got verdagon.com back, and I can put it back up. The problem is that nobody ever visited it. So here's the question: If I put it back up, how many people would actually find use of it?

And what features would you like on it if I was to put it up?

:)
PhillipEarl
Mega-Poster


Joined: 12 Jan 2004
Posts: 329
Location: Charlotte, NC
 Post Posted: Sat Jul 16, 2005 9:28 am  

I'd visit! One thing that I would like to see is a custom mission pack review forum - you know, a sort of easily useable guide about which missions are worth downloading, complete with a ratings system! Might be tricky, though - maybe only someone who doesn't author missions should review?

Also, if you post your WI strategies section again, I might even be willing to contribute a general-use strategy guide! (Compiled, of course, from a mix of all the best strats I find posted, with a few of my own! ;) )

Since I also recently found the files where I created all of the vehicles in WI, I would of course be willing to make a generous donation to your custom avatar library!!
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Sat Jul 16, 2005 3:31 pm  

I'd visit it!
Verdagon
Veteran Member
Joined: 05 Oct 2003
Posts: 1047
Location: San Luis Obispo, CA
 Post Posted: Sun Jul 17, 2005 12:56 pm  

Once we get to 15 posts, I'll put it up.

That map database idea sounds good. :)
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Sun Jul 17, 2005 3:28 pm  

This is the 5th post!

10 more to go!
Verdagon
Veteran Member
Joined: 05 Oct 2003
Posts: 1047
Location: San Luis Obispo, CA
 Post Posted: Sun Jul 17, 2005 4:21 pm  

Sorry, I meant votes. lol
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Mon Jul 18, 2005 11:22 pm  

arrrrrh.
Verdagon
Veteran Member
Joined: 05 Oct 2003
Posts: 1047
Location: San Luis Obispo, CA
 Post Posted: Tue Jul 19, 2005 8:24 am  

Yes, "arrrrhhh." indeed.
palm101
Mega-Poster


Joined: 15 Jun 2005
Posts: 308
 Post Posted: Tue Jul 19, 2005 9:52 am  

I voted too!
Verdagon
Veteran Member
Joined: 05 Oct 2003
Posts: 1047
Location: San Luis Obispo, CA
 Post Posted: Tue Jul 19, 2005 6:20 pm  

9 left...
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Thu Jul 21, 2005 2:54 pm  

Common people! 1 more vote left!!!!!! WE NEED THIS VOTE!!!
Verdagon
Veteran Member
Joined: 05 Oct 2003
Posts: 1047
Location: San Luis Obispo, CA
 Post Posted: Sat Jul 23, 2005 6:00 pm  

Wow... I never thought it would get past 10! lol
!HUDRA!
Mega-Poster


Joined: 28 Apr 2005
Posts: 460
Location: Big Bear California
 Post Posted: Sat Jul 23, 2005 8:19 pm  

Ahhhh 1 more...
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Sun Jul 24, 2005 6:41 pm  

Hey verd, just put up the site. Its 14 votes 1 more won't make a difference.
Anonymous
Established Forum User
Joined: 11 Aug 2003
Posts: 72
 Post Posted: Tue Jul 26, 2005 8:16 am  

16 votes o.o
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Tue Jul 26, 2005 10:50 am  

VERDAGON!! 16 VOTES!!!!! PUT UP THE SITE!!!!!!!!!!!!!!!!!!!!!!

Hey verdagon. Check this out. Main.cpp (C++)

#include <iostream>
#include <fstream>
using namespace std;

int main()
{
cout << "Please enter the filename to encrypt/decrypt..." << endl;
char IFilename[256];
cin.getline( IFilename, 256, '\n' );

ifstream IFile;
IFile.open( IFilename, ios::in | ios::binary );

if( !IFile )
{
cout << "TRY AGAIN, RETARD! ENTER A VALID NAME, JERKWAD!" << endl;
system("pause");
return 1;
}

cout << "Please enter the filename to output to..." << endl;
char OFilename[256];
cin.getline( OFilename, 256, '\n' );

ofstream OFile;
OFile.open( OFilename, ios::out | ios::binary );

if( !OFile )
{
cout << "YOU'RE A FRICHEN IDIOT! INVALID OUTPUT FILE!" << endl;
system("pause");
return 1;
}

char Key[256];
cout << "Please enter a key. No longer than 255 characters..." << endl;
cin.getline( Key, 256, '\n' );

int KeyLength = strlen( Key );

if( KeyLength == 0 )
{
cout << "If no key, no encryption will take place." << endl;
system("pause");
return 1;
}

for( unsigned long Byte = 0; ; Byte++ )
{
char Current;
IFile.read( (char*)&Current, sizeof( char ) );
Current ^= Key[ Byte % KeyLength ];
OFile.write( (char*)&Current, sizeof( char ) );

if( !IFile ) break;
}

IFile.close();
OFile.close();

cout << "Encryption/Decryption complete." << endl;
return 0;
}

Ah ha
Verdagon
Veteran Member
Joined: 05 Oct 2003
Posts: 1047
Location: San Luis Obispo, CA
 Post Posted: Wed Jul 27, 2005 10:27 am  

Hey, thats my 2040-bit encryption program! Feel free to use it, *evil laugh*

16 votes... the site is going up then. I'll try to find the source... In the meantime, think of things to put on it.
Anonymous
Established Forum User
Joined: 11 Aug 2003
Posts: 72
 Post Posted: Thu Jul 28, 2005 1:24 pm  

Wait a minute, you told us that u were gunna put up the site, but you didn't have the source code for it?

Put a game review on ur website.
Verdagon
Veteran Member
Joined: 05 Oct 2003
Posts: 1047
Location: San Luis Obispo, CA
 Post Posted: Thu Jul 28, 2005 4:15 pm  

Well you see the problem here is that my mom broke my computer, which had the backups on it. I don't know if they'll still be on it when it comes back... but either way, we'll have a warfarer's paradise.
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Thu Aug 11, 2005 10:05 am  

Site up yet??? How much does it cost just to put up a domain name without space?

17 votes now!!!
alfex
Die-hard Fan


Joined: 16 Mar 2004
Posts: 534
Location: La Conner, WA USA
 Post Posted: Thu Aug 11, 2005 11:30 pm  

It costs nothing for a domain name at www.godaddy.com

It costs $8/yr. for a .com domain name.

Hosting costs nothing if you have an internet connection. All ISPs give users space (~10-20 Meg) as part of your internet access.

I see no reason for anyone not to have a web presence now a days.
Verdagon
Veteran Member
Joined: 05 Oct 2003
Posts: 1047
Location: San Luis Obispo, CA
 Post Posted: Fri Aug 12, 2005 2:51 pm  

My sister is having problems with her boyfriend, so I'm not gonna get the backups back for a long time. I'll start on a new one then.

What do you guys want on it?
!HUDRA!
Mega-Poster


Joined: 28 Apr 2005
Posts: 460
Location: Big Bear California
 Post Posted: Fri Aug 12, 2005 9:53 pm  

MP sceduales! MP/SP maps! Player tablet (displays how mutch the player won and lost)
Anonymous
Established Forum User
Joined: 11 Aug 2003
Posts: 72
 Post Posted: Tue Aug 16, 2005 7:02 pm  

A LINK TO WIN A MILLION DOLLARS INSTANTLY!!!

I forgot to log in:: guitarist809;;
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Thu Sep 01, 2005 7:12 pm  

Someone keeps doing that and acting like me!!
!HUDRA!
Mega-Poster


Joined: 28 Apr 2005
Posts: 460
Location: Big Bear California
 Post Posted: Fri Sep 02, 2005 3:33 pm  

Am I stupid?






<script>
<header name="War Of The Worolds 1.5">
<scriptversion>
1.3
</scriptversion>
<author>
Hudra, the01, TRL
</author>
<description>
War Of The Worolds 1.5!
This mod includes the folowing:
New systems
New trent outfit
New ships for sale (juni's defender...)
A new comodety (nomad power cell)
New music for space
New affects for jumping (new lights, music)
500m, 1k cruse speed option (500m for races)
New menu (new music)
new jumpgates/holes (Dyson airlock, hypergate)
New mouse colors
A changed Hud
New tradelane affects
___________The_Story__________
Long ago when the Allience jumped to SERIUS sector nomads watched our every move from Omicron Alpha and Gamma to the Unknowns and the order systems. When nomads planed the attacked on the colonies Edison Trent, Juni and the order defeated the nomad attack but the nomads still wanted the destruction of the colonies... Now nomads launch a superattck that found and colonized alot of systems and from those systems they will be making thair attack against the colonies... Now YOU musit fight against the nomads and destroy them, Join the battle with the next "moddern" battlefield.
</description>
<options default="1:1">
<option name="How fast you want your cruse speed to be?" savesafe="true">
<item id="4" name="Normal">
</item>
<item id="1" name="500kps">
</item>
<item name="1000kps">
</item>
</option>
</options>
</header>

<data file="data\constants.ini" method="sectionappend">
<section>
[EngineEquipConsts]
</section>
<source>
CRUISING_SPEED = 500
</source>
</data>

<data file="data\constants.ini" method="sectionappend">
<section>
[PhySysConsts]
</section>
<source>
ANOM_LIMITS_MAX_VELOCITY = 500
</source>
</data>

<data file="data\constants.ini" method="sectionappend" options="1:2">
<section>
[EngineEquipConsts]
</section>
<source>
CRUISING_SPEED = 1000
</source>
</data>

<data file="data\constants.ini" method="sectionappend" options="1:2">
<section>
[PhySysConsts]
</section>
<source>
ANOM_LIMITS_MAX_VELOCITY = 1000
</source>
</data>
P.Kitty
Die-hard Fan


Joined: 27 Jul 2005
Posts: 585
Location: AZ, no DST
 Post Posted: Fri Sep 02, 2005 8:13 pm  

The site sounds cool. When it's up what will the url be?
alfex
Die-hard Fan


Joined: 16 Mar 2004
Posts: 534
Location: La Conner, WA USA
 Post Posted: Mon Sep 05, 2005 11:19 am  

There were and still are some sites dedicated to Warfare Inc. Here's the list:

http://games.groups.yahoo.com/group/blsolstice/

http://pirlwww.lpl.arizona.edu/~perry/Warfare/

http://xesismo.proboards22.com/index.cgi#WarfareIncorporated

http://wf-clan.50webs.com/



Good luck with some of them. The moderators have been sleeping lately. I moderate the first one on Yahoo with another player named blsolstice. Play tonight??
P.Kitty
Die-hard Fan


Joined: 27 Jul 2005
Posts: 585
Location: AZ, no DST
 Post Posted: Mon Sep 05, 2005 2:46 pm  

I've only got a tungsten e, (no bluetooth nor wi-fi) so I'm not sure I can
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Tue Sep 06, 2005 8:47 pm  

try using Softick PPP! google that.
P.Kitty
Die-hard Fan


Joined: 27 Jul 2005
Posts: 585
Location: AZ, no DST
 Post Posted: Tue Sep 06, 2005 9:27 pm  

it seems to work but I cna't find anyone to play me
warfare wiz
Semi-frequent Poster


Joined: 14 Aug 2004
Posts: 36
 Post Posted: Tue May 23, 2006 4:52 pm  

i voted
guitarist809
Veteran Member


Joined: 08 Jan 2005
Posts: 1234
 Post Posted: Wed May 24, 2006 5:28 am  

Woah 22 votes :D

it 'tis the LAST DAY OF SCHOOL FOR ME!!!
alfex
Die-hard Fan


Joined: 16 Mar 2004
Posts: 534
Location: La Conner, WA USA
 Post Posted: Fri Nov 07, 2008 10:47 pm  

Where is Verdagon?

:cry:
Tarcin
WI Forum Novice
Joined: 04 Feb 2009
Posts: 1
 Post Posted: Wed Feb 04, 2009 8:26 am  

maybe make a strategy wiki on it?
alfex
Die-hard Fan


Joined: 16 Mar 2004
Posts: 534
Location: La Conner, WA USA
 Post Posted: Wed Feb 04, 2009 8:40 am  

Cool idea. But how to host it?

Volunteers?