Current Project: Alien Vs. Predators

A little update for those of you that like to know, the current project I'm working with Asha_LaPoe, a very skilled iconer. Once I seen the screen shots I knew it was a project I'd have to get involved with. Anyways, the owner doesn't want me hosting publicly yet, so if you're interested in testing comment below and be sure to leave your MSN so I may contact you.

Website: http://avp.killergames.info
Hub: http://www.byond.com/games/Asha_LaPoe/AlienvsPredator
Teaser Video: http://www.youtube.com/watch?v=c6RDUmb3Pck
Screen shot:

Posted by Killer22 on Saturday, October 18, 2008 12:46PM - 9 comments / Members say: yea +1, nay -1
(Edited on Saturday, October 18, 2008 02:35PM)

Talk about me xD

Woot! After running a search for my key in community, I've found a bunch of posts that have my key listed in them!

http://www.byond.com/members/ KamaroUchiha?command=view_post&post=48972

http://www.byond.com/members/ DDT?command=view_post&post=2800

http://www.byond.com/members/ Absimilis?command=view_post&post=34666

http://www.byond.com/members/ Oronar?command=view_post&post=32439

http://www.byond.com/members/ Kage92?command=view_post&post=42957

http://www.byond.com/members/ BYONDStrategy?command=view_post&post=30251

All of those posts relate to me in some way. There's much more I have to mention! After searching in community, I wondered if I could find any huds that mentioned me and here they are:

http://www.byond.com/games/Yurgeta/GameCentral
http://www.byond.com/games/MagicBLC13/ KingdomHeartsTheHeartWithin
http://www.byond.com/games/Asha_LaPoe/AlienvsPredator
http://www.byond.com/games/Torla2217/InuyashasRevenge3
http://www.byond.com/games/Killer19300/KHDOS

Woot! Go me and my getting mentioned. Also, for all of those in the Life As A Killer guild, I'm allowing everyone to create posts for my guild so be happy and try not to spam nonsense ;)

[Edit:] Let us not for get one other post of course: http://www.byond.com/members/ BYONDAction?command=view_post&post=49421

Congrats to the winners of the BYOND Action contest. Thought I did not make 1st or 2nd place I'm proud to tell all of you I did however make 4th place. Now originally I had intended to release Fishing For Fun as a library however trying to mix Windows w\Linux didn't work out so well and lead me to reformatting my computer again.

Posted by Killer22 on Friday, October 17, 2008 06:31PM - 3 comments / Members say: yea +0, nay -0
(Edited on Friday, October 17, 2008 06:48PM)

Killer Games

New website launched! http://killer22.dyndns.info/

Tell me what you think ;)

Posted by Killer22 on Friday, October 10, 2008 05:25PM - 0 comments / Members say: yea +0, nay -0

Installing BYOND + DMCGI on Ubuntu 8.04

Alright, I've looked at quite a bit of guides and it still took me a while to figure out which files to edit to get it all to work right. So I decided to build this guide to help anyone in need.

First off, lets open up terminal ( Appilications > Accessories > Terminal ).

Then, lets edit sources.list and add Stephen001's repository (see more about this here: http://www.byond.com/members/LinuxGuild?command=view_comments&post=47883)

sudo gedit /etc/apt/sources.list
//and at the bottom we want to add: 
deb http://home.sevon.co.uk/byond/ubuntu hardy non-free


Now we're going to install LAMP+BYOND to enable DMCGI ussage.
sudo apt-get update
sudo apt-get install apache2
sudo apt-get install php5 libapache2-mod-php5
sudo apt-get install mysql-server
sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin
sudo apt-get install byond-core
wget http://www.byond.com/download/gcc/libstdc++.so.5
sudo mv libstdc++.so.5 /lib
export LD_LIBRARY_PATH=/byond/bin


Now everything we need has been installed, now we just need to configure a few files. First, lets edit 'mime.conf'
sudo gedit /etc/apache2/mods-available/mime.conf

//Find 'AddHandler cgi-script .cgi' and change it to 'AddHandler cgi-script .cgi .dmb'
AddHandler cgi-script .cgi .dmb


Now lets edit 'dir.conf'
sudo gedit /etc/apache2/mods-available/dir.conf

//add index.dmb to the end of directory index so it looks like:
DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm index.dmb


Finally lets edit 'default'

sudo gedit /etc/apache2/sites-available/default

//Since there's a bit to add, I'm just going to copy and paste the entire file
NameVirtualHost *
<VirtualHost *>
    ServerAdmin webmaster@localhost
    
    DocumentRoot /var/www/
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/>
        Options Indexes FollowSymLinks MultiViews ExecCGI
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /var/www/
    <Directory "/var/www">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined
    ServerSignature On

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>


Now we have succesfully installed BYOND and DMCGI... now we just have to test it. Download to desktop: http://www.byond.com/members/Killer22/files/index.dmb And in termal lets do this...
mv /home/[username]/Desktop/index.dmb /var/www
chmod 755 /var/www/index.dmb

Now lets test the site, goto http://127.0.0.1/index.dmb (Note: If the page continuously refreshes, then it's not setting cookies correctly. I'm also having this problem.)

Congrats, you've succesfully installed BYOND+DMCGI.

Posted by Killer22 on Thursday, October 09, 2008 01:31AM - 0 comments / Members say: yea +1, nay -0
(Edited on Friday, October 10, 2008 12:56AM)

Website Launched

I've launched my new website for my game: http://pokemon.servegame.org/

Don't expect much ;)

Posted by Killer22 on Saturday, September 27, 2008 07:18PM / Members say: yea +1, nay -2

Killer22

Joined: Mar 14, 05

Home page Email

Blog Calendar

September 2009
Su Mo Tu We Th Fr Sa
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30      
 
«Jan  

My demos