Anyone interested in becoming apart of a new website and splitting profits 50/50, PM me or reply to this post. I'm building a website, which will draw an IP everyday and attempt to match it to any of the websites visitors. I've built the script, I just have to work on buying tickets. The chances of winning are 1 in 114,719,520. The website will be hosted offshore to avoid any legality issues.

Here is a demo:
Lottery

This is not the current version, this is just proof I am making progress. I am also running a cron to run dailydrawings.php everyday and print the winning IP to lottery.php.
Code:
<?php
$ip = $_SERVER['REMOTE_ADDR']; 
$ip1 = rand(0, 255);
$ip2 = rand(0, 255);
$ip3 = rand(0, 255);
$ip4 = rand(0, 255);

echo "Winning IP: $ip1.$ip2.$ip3.$ip4<br />";
echo "Your IP: $ip<br />";
if ($ip == '$ip1.$ip2.$ip3.$ip4')
{
echo "You've Won!";
}
else
{
echo "You Lost";
}
?>
FYI if 100,000 people play for $1, and we get one winner, we give the winner $50,000 and we keep $50,000 to split between the two of us.

Things we will need:
*Offshore server
*Offshore bank

We have all the money wired offshore and when we get a winner we just wire 50% of the money to the winner and we keep the other 50% to split between the two of us.