Powered by Invision Power Board


Pages: (7) « First ... 2 3 [4] 5 6 ... Last » ( Go to first unread post ) Reply to this topicStart new topicStart Poll

> [MOD] Casino, play 2 games and win or lose upload
marcoonline
Posted: Apr 30 2005, 11:01 AM
Quote Post


Power User
***

Group: Power Users
Posts: 40
Member No.: 3,548
Joined: 11-March 05



QUOTE (Ascii @ Apr 30 2005, 10:21 AM)
@ masters

remember if you uncomment the moderators only Admins and the sysop is allowed to play.


i just got one think left
user posted image

who do i fix that nasty negative number.
It's should show up in MB and not kb

dit you have a script for this top 10 players

it looks nice so ather users can see how it works


--------------------
user posted image
PMEmail PosterUsers Website
Top
misterb
Posted: Apr 30 2005, 11:44 AM
Quote Post


Power User
***

Group: Power Users
Posts: 75
Member No.: 1,444
Joined: 17-December 04



One question: is it possible to cheat? cause one of my users won 12.05 GB in 2 tries... or is he just lucky?


--------------------
Your bunny wrote...
PMEmail Poster
Top
marcoonline
Posted: Apr 30 2005, 12:01 PM
Quote Post


Power User
***

Group: Power Users
Posts: 40
Member No.: 3,548
Joined: 11-March 05



i think he god lucky becase i cant cheat it i try it whit backspace and won play again i won play again after pageback and i lost so i think there is no cheating possble


--------------------
user posted image
PMEmail PosterUsers Website
Top
MorbusMors
Posted: Apr 30 2005, 12:32 PM
Quote Post


Member
**

Group: Members
Posts: 15
Member No.: 2,185
Joined: 7-January 05



Hmm,
Bei mir zeigt er immer noch an, dass ich 0,00kb gewonnen oder verloren hab.
Auch wenn ich z.B. 2GB Einsatz gesetzt hab.
Mein Code:

CODE

<?php
//ob_start("ob_gzhandler");
require_once("include/bittorrent.php");
dbconn(false);
loggedinorreturn();
parked();

//////////////////////////////////config
//////who is able to play just
//$player = UC_PEASANT;
//$player = UC_USER;
$player = UC_POWER_USER;
//$player = UC_VIP;
//$player = UC_UPLOADER;
//$player = UC_MODERATOR;
//$player = UC_ADMINISTRATOR;
//$player = UC_SYSOP;
$mb_basic=1024*1024;
$max_download_user = $mb_basic*1024*25; //// 25 GB
$max_download_global = $mb_basic*$mb_basic*2.5; //// 2.5 TB :-)
$required_ratio = 0.4; ///i think you know this
$max_trys = 50; ///50 games and no more

//////////////////this is the funny part
$user_everytimewin_mb = $mb_basic * 70; ////// means users that wins under 70 mb get a cheat_value of 0 -> win every time
$cheat_value = 1; // higher value -> less winner
$cheat_breakpoint = 2; ////very important value -> if (win MB > max_download_global/cheat_breakpoint)
$cheat_value_max = 5; ////// then cheat_value = cheat_value_max -->> i hope you know what i mean. ps: must be higher as cheat_value.
$cheat_ratio_user = 0.4; ///if casino_ratio_user > cheat_ratio_user -> $cheat_value = rand($cheat_value,$cheat_value_max)
$cheat_ratio_global = 0.4; /// same as user just global
$win_amount = 3; // how much do the player win in the first game eg. bet 300, win_amount=3 ---->>> 300*3= 900 win
$win_amount_on_number = 6; // same as win_amount for the number game
$show_real_chance = false; ///shows the user the real chance true or false
$bet_value1 = $mb_basic * 20; ///this is in MB but you can also choose gb or tb :-)
$bet_value2 = $mb_basic * 50;
$bet_value3 = $mb_basic * 100;
$bet_value4 = $mb_basic * 250;
$bet_value5 = $mb_basic * 500;
$bet_value6 = $mb_basic * 1024;
$bet_value7 = $mb_basic * 2048;

//////////////////////////////////config end

if (get_user_class() <= $player)
stderr("Sorry ".$CURUSER["username"], "Der SysOp erlaubt deinem Rang nicht in dem Casino zu spielen");

$query ="select * from casino where userid = '".$CURUSER["id"]."'";
$result = mysql_query($query) or die (mysql_error());
if(mysql_affected_rows()!=1)
{
mysql_query("INSERT INTO casino (userid, win, lost, trys, date) VALUES(" . $CURUSER["id"] . ",0,0,0, '" . get_date_time() . "')") or mysql_error();
//stderr("Hi ".$CURUSER["username"], "This is the first time you try to play at the Casino please refresh the site");
$result = mysql_query($query); ///query another time to get the new user, if the stderr is uncomment
}

$row = mysql_fetch_array($result);
$user_win = $row["win"];
$user_lost = $row["lost"];
$user_trys = $row["trys"];
$user_date = $row["date"];
$user_enableplay = $row["enableplay"];

if($user_enableplay=="no")
stderr("Sorry ".$CURUSER["username"]," du wurdest vom Casino gesperrt");

if($user_trys > $max_trys)
stderr("Sorry ".$CURUSER["username"]," deine Spielzeit ist zu ende");

if(($user_win - $user_lost) > $max_download_user)
stderr("Sorry ".$CURUSER["username"]," Du hast den mindest Download für einen User erreicht");

if ($CURUSER["downloaded"] > 0)
  $ratio = number_format($CURUSER["uploaded"] / $CURUSER["downloaded"], 2);
else
  if ($CURUSER["uploaded"] > 0)
    $ratio = 999;
  else
    $ratio = 0;
if($ratio < $required_ratio)
 stderr("Sorry ".$CURUSER["username"]," deine Ratio ist unter ".$required_ratio);  

$global_down2 = mysql_query(" select (sum(win)-sum(lost)) as globaldown, sum(win) as win, sum(lost) as lost from casino") or die (mysql_error());
$row = mysql_fetch_array($global_down2);
$global_down = $row["globaldown"];
$global_win = $row["win"];
$global_lost = $row["lost"];

if ($user_win > 0)
  $casino_ratio_user = number_format($user_lost / $user_win, 2);
else
  if ($user_lost > 0)
    $casino_ratio_user = 999;
  else
    $casino_ratio_user = 0;
   
if ($global_win > 0)
  $casino_ratio_global = number_format($global_lost / $global_win, 2);
else
  if ($global_lost > 0)
    $casino_ratio_global = 999;
  else
    $casino_ratio_global = 0;

//get users that bet the first time or win very less :-)
if($user_win < $user_everytimewin_mb)
 $cheat_value = 0;
else
{
 //i think this is a god idea GLOBAL
 if($global_down > ($max_download_global / $cheat_breakpoint))
  $cheat_value = $cheat_value_max;
 if($casino_ratio_global < $cheat_ratio_global)
  $cheat_value = rand($cheat_value,$cheat_value_max);

 //i think this is a god idea for EACH USER
 if(($user_win - $user_lost) > ($max_download_user / $cheat_breakpoint))
  $cheat_value = $cheat_value_max;
 if($casino_ratio_user < $cheat_ratio_user)
  $cheat_value = rand($cheat_value,$cheat_value_max);
}

if($global_down > $max_download_global)
stderr("Sorry ".$CURUSER["username"],"but global max win is above ".mksize($max_download_global));


////////////////////////////////////////////////////////////////////////////////////////////////

if((($_POST["color"]=="red"||$_POST["color"]=="Schwarz")||($_POST["number"]=="1"||$_POST["number"]=="2"||$_POST["number"]=="3"||$_POST["number"]=="4"||$_POST["number"]=="5"||
$_POST["number"]=="6"))&&($_POST["betmb"]==$bet_value1||$_POST["betmb"]==$bet_value2||$_POST["betmb"]==$bet_value3||$_POST["betmb"]==$bet_value4||$_POST["betmb"]==$bet_value5||
$_POST["betmb"]==$bet_value6||$_POST["betmb"]==$bet_value7))  
{
if($_POST["number"])
{
$win_amount = $win_amount_on_number;
$cheat_value = $cheat_value+5;
$winner_was = $_POST["number"];
}
else
$winner_was = $_POST["color"];

$win = $win_amount*$betmb;

if($CURUSER["uploaded"] < $betmb)
stderr("Sorry ".$CURUSER["username"]," aber du hast noch keine  ".mksize($betmb)." hochgeladen");

stdhead();


if(rand(0,$cheat_value)==$cheat_value)
{
stdmsg("Juhu ".$CURUSER["username"],"Du hast es geschafft und ".mksize($win)." gewonnen denn ".$winner_was." war das Richtige");
mysql_query("UPDATE users SET uploaded = uploaded + ".$win." WHERE id=".$CURUSER["id"]) or sqlerr();
mysql_query("UPDATE casino SET date = '".get_date_time()."', trys = trys + 1, win = win + ".$win." WHERE userid=".$CURUSER["id"]) or sqlerr();
}
else
{
if($_POST["number"])
{
 do
 {
  $fake_winner = rand(1,6);
 }
 while($_POST["number"]==$fake_winner);
}
else
{
 if($_POST["color"]=="Schwarz")
  $fake_winner= "\"Rot\"";
 else
  $fake_winner= "\"Schwarz\"";
}


stdmsg("Sorry ".$CURUSER["username"]," Du hast ".mksize($betmb)." verloren denn ".$fake_winner." und nicht ".$winner_was." war das Richtige");
mysql_query("UPDATE users SET uploaded = uploaded - ".$betmb." WHERE id=".$CURUSER["id"]) or sqlerr();
mysql_query("UPDATE casino SET date = '".get_date_time()."', trys = trys + 1 ,lost = lost + ".$betmb." WHERE userid=".$CURUSER["id"]) or sqlerr();
}

}
else
{

stdhead();
print("<h1>Willkommen, <a href=userdetails.php?id=$CURUSER[id]>$CURUSER[username]</a>!</h1>\n");

print("<table  cellspacing=0 cellpadding=3 width=400>\n");
print("<tr><td colspan=2 cellspacing=0 cellpadding=5>");
echo("<h1>Spiel 1:</h1>");

print("<form name=casino method=post action=$phpself>");
print("<table class=message width=100% cellspacing=0 cellpadding=5>\n");
 tr("Auf Farbe wetten:","<input type=submit value='Wetten!' >",1);
 tr("Schwarz",'<input name="color" type="radio" checked value="Schwarz">',1);
 tr("Rot",'<input name="color" type="radio" value="red">',1);
 tr("Einsatz",'
 <select name="betmb">
 <option value="'.$bet_value1.'">'.mksize($bet_value1).'</option>
<option value="'.$bet_value2.'">'.mksize($bet_value2).'</option>
<option value="'.$bet_value3.'">'.mksize($bet_value3).'</option>
<option value="'.$bet_value4.'">'.mksize($bet_value4).'</option>
<option value="'.$bet_value5.'">'.mksize($bet_value5).'</option>
<option value="'.$bet_value6.'">'.mksize($bet_value6).'</option>
<option value="'.$bet_value7.'">'.mksize($bet_value7).'</option>
 </select>',1);

if($show_real_chance)
 $real_chance=$cheat_value+1;
else
 $real_chance=2;
tr("Deine Chance","1 : ".$real_chance,1);
tr("Gewinn",$win_amount."x den Einsatz",1);
echo('</table><br>');
print("</form>");

echo("<h1>Spiel 2:</h1>");
print("<form name=casino2 method=post action=$phpself>");
print("<table class=message width=100% cellspacing=0 cellpadding=5>\n");
 tr("Auf Zahlen setzen:","<input type=submit value='Setzen!' >",1);
 tr("Nummer",'<input name="number" type="radio" checked value="1">1&nbsp;&nbsp;<input name="number" type="radio" value="2">2&nbsp;&nbsp;<input name="number" type="radio" value="3">3',1);
 tr("",'<input name="number" type="radio" value="4">4&nbsp;&nbsp;<input name="number" type="radio" value="5">5&nbsp;&nbsp;<input name="number" type="radio" value="6">6',1);
 tr("Einsatz",'
 <select name="betmb">
 <option value="'.$bet_value1.'">'.mksize($bet_value1).'</option>
<option value="'.$bet_value2.'">'.mksize($bet_value2).'</option>
<option value="'.$bet_value3.'">'.mksize($bet_value3).'</option>
<option value="'.$bet_value4.'">'.mksize($bet_value4).'</option>
<option value="'.$bet_value5.'">'.mksize($bet_value5).'</option>
<option value="'.$bet_value6.'">'.mksize($bet_value6).'</option>
<option value="'.$bet_value7.'">'.mksize($bet_value7).'</option>
 </select>',1);

if($show_real_chance)
 $real_chance=$cheat_value+5;
else
 $real_chance=6;
tr("Deine Chance","1 : ".$real_chance,1);
tr("Gewinn",$win_amount_on_number."x den Einsatz",1);
echo('</table><br>');
print("</form>");
print("</td></tr></table><br>");

print("<table  cellspacing=0 cellpadding=3>\n");
print("<tr><td>");
print("<h1>User Stats</h1>\n");
print("<table class=message  cellspacing=0 cellpadding=5>\n");
 tr("Du kannst gewinnen",mksize($max_download_user),1);
 tr("gewonnen",mksize($user_win),1);
 tr("verloren",mksize($user_lost),1);
 tr("Verhältnis",$casino_ratio_user,1);
echo('</table>');
print("</td><td>");
print("<h1>Allg. Stats</h1>\n");
print("<table class=message  cellspacing=0 cellpadding=5>\n");
 tr("Gesammt Gewinn",mksize($max_download_global),1);
 tr("gewonnen",mksize($global_win),1);
 tr("verloren",mksize($global_lost),1);
 tr("Verhältnis",$casino_ratio_global,1);
echo('</table>');
print("</td></tr>");
echo('</table>');



}
stdfoot();
?>
PMEmail Poster
Top
Ascii
Posted: Apr 30 2005, 12:54 PM
Quote Post


Power User
***

Group: Power Users
Posts: 59
Member No.: 4,145
Joined: 1-April 05



ok hast du die tabelle erstellt.

did you create the db table.

Sry for the german part
PMEmail PosterUsers Website
Top
MorbusMors
Posted: Apr 30 2005, 12:58 PM
Quote Post


Member
**

Group: Members
Posts: 15
Member No.: 2,185
Joined: 7-January 05



Jo hab ich

Sorry, mein Englisch ist sehr schlecht

yes i've created the db table and it updates the games, but not the wins or loses

This post has been edited by MorbusMors on Apr 30 2005, 01:40 PM
PMEmail Poster
Top
MorbusMors
Posted: Apr 30 2005, 01:53 PM
Quote Post


Member
**

Group: Members
Posts: 15
Member No.: 2,185
Joined: 7-January 05



Ich glaub ich weiß woran es liegt,

$win ist ja $win_amount*$betmb

aber bei mir ist $betmb nicht definiert.
Hui, und das jetzt in Englisch sagen wink.gif biggrin.gif

I think I know why it won't work,

$win is defined with $win_amount*$betmb

but $betmb is not defied by me

Hope you'll understand me biggrin.gif

Morbus
PMEmail Poster
Top
Disketnik
Posted: Apr 30 2005, 02:33 PM
Quote Post


Code Guru
****

Group: Members
Posts: 24
Member No.: 1,372
Joined: 13-December 04



can someone translate this into english?
PMEmail Poster
Top
Disketnik
Posted: Apr 30 2005, 03:21 PM
Quote Post


Code Guru
****

Group: Members
Posts: 24
Member No.: 1,372
Joined: 13-December 04



i get this error at second game at number 1
SQL Error
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id=32' at line 1
PMEmail Poster
Top
VooDooTo
Posted: May 1 2005, 12:07 AM
Quote Post


Destructive Admin
***

Group: Power Users
Posts: 100
Member No.: 4,184
Joined: 3-April 05



WoW nice mod . I'll try it now . Great work guys from Germany . Thank you !
PMEmail PosterUsers Website
Top
macosbrain
  Posted: May 1 2005, 06:33 AM
Quote Post


Power User
***

Group: Power Users
Posts: 45
Member No.: 3,966
Joined: 27-March 05



@MorbusMors
$betmb is defined it is in the post when you click on the button.

edit:

ok i am ready. at first thanx to misterb for the casino player the script was the basic. for the following scripts.

casino_player.php
CODE

<?

require "include/bittorrent.php";
dbconn(false);
loggedinorreturn();
ob_start("ob_gzhandler");

if (get_user_class() >= UC_ADMINISTRATOR)
$edit = 1;


$res2 = mysql_query("select count(*) from casino") or die(mysql_error());
$row2 = mysql_fetch_array($res2);
$count = $row2[0];


$perpage = 50;

list($pagertop, $pagerbottom, $limit) = pager($perpage, $count, $_SERVER["PHP_SELF"] ."?" );

$res = mysql_query("select users.id as userid,users.username, users.downloaded,users.uploaded,casino.win,casino.lost from casino inner join users on casino.userid = users.id  ORDER BY (casino.win - casino.lost) DESC $limit") or sqlerr();

stdhead("Players");



if (mysql_num_rows($res) == 0)
print("<p align=center><b>No players</b></p>\n");
else
{
print("<p align=center><b><h1>Results</h1></b></p>\n");
print("<p align=center><a href=casino.php>Back</a></p>\n");
echo $pagertop;
print("<table border=1 cellspacing=0 cellpadding=5>\n");


if($edit==0)
print("<tr><td class=colhead>Username</td><td class=colhead align=left>Uploaded</td><td class=colhead align=left>Downloaded</td><td class=colhead align=left>Ratio</td><td class=colhead align=left>Won</td><td class=colhead align=left>Lost</td><td class=colhead align=left>Tries</td><td class=colhead align=left>Total</td>\n");
else
print("<tr><td class=colhead>Username</td><td class=colhead align=left>Uploaded</td><td class=colhead align=left>Downloaded</td><td class=colhead align=left>Ratio</td><td class=colhead align=left>Won</td><td class=colhead align=left>Lost</td><td class=colhead align=left>Tries</td><td class=colhead align=left>Total</td><td class=colhead align=left>edit user</td>\n");


while ($arr = mysql_fetch_assoc($res))
{
$rez = mysql_query("select * from casino where userid=$arr[userid]");
$arz = mysql_fetch_array($rez);
if ($arr["downloaded"] > 0)
{
     $ratio = number_format($arr["uploaded"] / $arr["downloaded"], 3);
     $ratio = "<font color=" . get_ratio_color($ratio) . ">$ratio</font>";
  }
  else
     if ($arr["uploaded"] > 0)
       $ratio = "Inf.";
else
$ratio = "---";
$uploaded =mksize($arr["uploaded"]);
$downloaded = mksize($arr["downloaded"]);
if ($CURUSER[id] == $arr[userid])
$bg = "bgcolor=#c0c0c0";
else
$bg = "";

if($edit==0)
print("<tr><td $bg><a href=userdetails.php?id=$arr[userid]><b>$arr[username]</b></a></td><td align=left $bg>$uploaded</td><td align=left $bg>$downloaded</td><td align=left $bg>$ratio</td><td align=left $bg>".mksize($arz[win])."</td><td align=left $bg>".mksize($arz[lost])."</td><td align=left $bg>$arz[trys]</td><td align=left $bg>".mksize($arz[win]-$arz[lost])."</td></tr>\n");
else
print("<tr><td $bg><a href=userdetails.php?id=$arr[userid]><b>$arr[username]</b></a></td><td align=left $bg>$uploaded</td><td align=left $bg>$downloaded</td><td align=left $bg>$ratio</td><td align=left $bg>".mksize($arz[win])."</td><td align=left $bg>".mksize($arz[lost])."</td><td align=left $bg>$arz[trys]</td><td align=left $bg>".mksize($arz[win]-$arz[lost])."</td><td align=left $bg><form name=edit-player method=post action=casino_player_edit.php><input type=hidden name=userid value=$arr[userid]> <input class=btn type=submit value=edit ></form></td></tr>\n");

}
print("</table>\n");
}


stdfoot();

?>



casino_player_edit.php
CODE

<?

require "include/bittorrent.php";
dbconn(false);
loggedinorreturn();
ob_start("ob_gzhandler");

if (get_user_class() <= UC_ADMINISTRATOR)
stderr("Sorry ".$CURUSER["username"], "The ADMINISTRATOR do not allow your class to edit the casino play");

$result = mysql_query("select * from casino where userid = '".$userid."'") or die(mysql_error());
if (mysql_num_rows($result) == 0)
stderr("Sorry","No players with the userid $userid</b></p>\n");
else
{
$row = mysql_fetch_array($result);
 $user_win = $row["win"];
 $user_lost = $row["lost"];
 $user_trys = $row["trys"];
 $user_date = $row["date"];
 $user_enableplay = $row["enableplay"];
stdhead();

if($_POST["userid"]!=NULL&&$_POST["won"]!=NULL&&$_POST["lost"]!=NULL&&$_POST["trys"]!=NULL&&$_POST["date"]!=NULL&&$_POST["enableplay"]!=NULL)
{
 $dif_win = $won - $user_win;   ///// this is tricky
 $dif_lost = $lost - $user_lost; ///// this is tricky
 $up = $dif_win - $dif_lost;   ///// this is tricky
 mysql_query("UPDATE users SET uploaded = uploaded + ".$up." WHERE id=".$userid) or sqlerr();
 mysql_query("UPDATE casino SET date = '".$date."', trys = ".$trys." ,lost = ".$lost.",win = ".$won.",enableplay= '".$enableplay."' WHERE userid=".$userid) or sqlerr();

 stdmsg("Stats for user ".$userid." are now updated" ,"sorry but no problems occured :-)");

}
else
{
  if ($user_win > 0)
    $casino_ratio_user = number_format($user_lost / $user_win, 2);
  else
    if ($user_lost > 0)
      $casino_ratio_user = 999;
    else
      $casino_ratio_user = 0;
     
  if($user_enableplay=="yes")
  {
   $select="<option value=yes checked >yes</option>";
   $select.="<option value=no>no</option>";
  }
  else
  {
   $select="<option value=yes >yes</option>";
   $select.="<option value=no checked>no</option>";
  }

 
 print("<h1>Welcome, you are now able to edit user nr. <a href=userdetails.php?id=$userid>$userid</a>!</h1>\n");
 print("<p align=center><a href=casino.php>Back</a></p>\n");
 print("<form name=edit-player method=post action=$phpself><input type=hidden name=userid value=$userid>");
 print("<table  cellspacing=0 cellpadding=3 width=400>\n");
 tr("user ratio:",$casino_ratio_user,1);
 tr("user won:","<input type=text name=won value='$user_win' >&nbsp;&nbsp;".mksize($user_win),1);
 tr("user lost:","<input type=text name=lost value='$user_lost' >&nbsp;&nbsp;".mksize($user_lost),1);
 tr("user play ","<input type=text name=trys value='$user_trys' >&nbsp;&nbsp;<b>games</b>",1);
 tr("last access:","<input type=text name=date value='$user_date' >",1);
 tr("allow user to play:",'<select name="enableplay">'.$select.'</select> ',1);
 print("<tr><td colspan=2 align=center><input type=submit value='change user stats'></td></tr>");
 print("</table>\n");
 print("</form>");
}
}
stdfoot();
?>



This post has been edited by macosbrain on May 1 2005, 09:10 AM


--------------------
macosbrain.com is my site
PMEmail Poster
Top
Traasje
Posted: May 1 2005, 12:05 PM
Quote Post


Power User
***

Group: Power Users
Posts: 139
Member No.: 1,392
Joined: 14-December 04



user posted image

i don't win nor lose :-(
does anybody have already an idea?
PMEmail Poster
Top
Traasje
Posted: May 1 2005, 12:08 PM
Quote Post


Power User
***

Group: Power Users
Posts: 139
Member No.: 1,392
Joined: 14-December 04



@macosbrain...

when i click to edit an user i get this:
Sorry
No players with the userid
PMEmail Poster
Top
Masters
Posted: May 1 2005, 12:29 PM
Quote Post


Power User
***

Group: Power Users
Posts: 60
Member No.: 2,627
Joined: 27-January 05



How fix show -2,097,152.00 kB -2,00Gb

This post has been edited by Masters on May 1 2005, 12:35 PM
PMEmail Poster
Top
Traasje
Posted: May 1 2005, 12:34 PM
Quote Post


Power User
***

Group: Power Users
Posts: 139
Member No.: 1,392
Joined: 14-December 04



when i try game 2 i get this:
Sorry Traasje
you lost 0.00 kB because 4 and not 1 was the winner
mySQL Error
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id=2' at line 1
PMEmail Poster
Top
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

Topic OptionsPages: (7) « First ... 2 3 [4] 5 6 ... Last » Reply to this topicStart new topicStart Poll

 



[ Script Execution time: 0.0678 ]   [ 12 queries used ]   [ GZIP Enabled ]