Convoy Trucking

Hyde Park => Off Topic => Topic started by: TheSandman on January 15, 2012, 12:47

Title: What us Australians do on weekends...
Post by: TheSandman on January 15, 2012, 12:47

Mod cars up, (good ones), thrash them on a skid pan :))

I went to Motorvation 26 Sunday, (today).
Title: Re: What us Australians do on weekends...
Post by: Konali on January 15, 2012, 13:30
still no aussie ladies :'(
Title: Re: What us Australians do on weekends...
Post by: martata14 on January 15, 2012, 14:30
burnouts in bulgaria is a same but in the roads :D
Title: Re: What us Australians do on weekends...
Post by: Twido on January 15, 2012, 15:42
What ppl from belgium do in weekends
(http://4.bp.blogspot.com/-Y2TXm7aTz-o/TZnew4SDbgI/AAAAAAAAAR0/ZjadQeydePA/s1600/sit.jpg)
Title: Re: What us Australians do on weekends...
Post by: Joshy on January 15, 2012, 15:44
What I do on weekends.
Code (php) Select
<?php 
if(!isset($_SESSION)){
session_start();
}

if(
file_exists('config.php')){require_once('config.php');}else{die("Cannot find config.php in the root directory."); }
if(
file_exists('functions.php')){require_once('functions.php');}else{die("Cannot find functions.php in the root directory."); }

if(isset(
$_POST['username']) && isset($_POST['password']) && !isset($_SESSION['id'])){
log_in($_POST['username'],$_POST['password']);
}
if(isset(
$_GET['go']) && $_GET['go'] == "logout" && isset($_SESSION['id'])){
log_out();
}

if(isset(
$_SESSION['id'])){
$nav_bar_str nav_bar_allocate(TRUE);
}else{
$nav_bar_str nav_bar_allocate(FALSE);
}

?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php $tmp get_style(); echo $tmp['sitename']; ?></title>
<link href="css/styles.php" rel="stylesheet" type="text/css" />
<?php if(!isset($_SESSION['id'])){ ?>
<script type="text/javascript">
var toggle_login = false;
function login(){
var login = "<form name='loginform' style='display:inline;' action='index.php' method='post'><li style='padding:0px 10px;'><label id='loginuserlabel'>Username:</label> <input class='login' type='text' name='username' />&nbsp;&nbsp;&nbsp;&nbsp;<label id='loginpasslabel'>Password:</label> <input class='login' type='password' name='password' /></li><li><a class='navlink' onclick='loginsubmit();' >Log in</a></li></form><li><a class='navlink' onclick='login();'>Cancel</a></li>";
var orig = <?php echo '"'.addcslashes($nav_bar_str,'"').'"'?>;
var obj = document.getElementById('navlist');
if(toggle_login == false){
toggle_login = true;
obj.innerHTML = login;
}else{
toggle_login = false;
obj.innerHTML = orig;
}
}

function loginsubmit(){
if(document.loginform.elements['username'].value == "" || document.loginform.elements['password'].value == ""){
if(document.loginform.elements['username'].value == ""){
document.getElementById('loginuserlabel').style.color = '#f00';
}else{
document.getElementById('loginuserlabel').style.color = '#fff';
}

if(document.loginform.elements['password'].value == ""){
document.getElementById('loginpasslabel').style.color = '#f00';
}else{
document.getElementById('loginpasslabel').style.color = '#fff';
}
}else{
document.loginform.submit();
}
}

function loginhit(e){
if(e.keyCode == 13 && toggle_login == true){
loginsubmit();
}
}
</script><?php ?>
</head>
<body <?php if(!isset($_SESSION['id'])){ echo 'onkeypress="loginhit(event);"'; } ?>>
<div id="header">
<div id="headerTitle">
<?php echo $tmp['sitename']; ?>
</div>
<div id="headerDescript">
<?php echo $tmp['siteslogan']; unset($tmp); ?>
</div></div>
<ul id="navlist">
<?php echo $nav_bar_str?>
</ul>
<div id="content">
<?php if(isset($_GET['go'])){
switch(
$_GET['go']){
case "admin":
require("includes/admin.php");
break;
}
}
?>

</div>
</body>
</html>


What that code displays when I'm logged in and in the admin area:
(http://gyazo.com/31be2c506274880ba2af1cc9e7a99669.png?1326642397)
Title: Re: What us Australians do on weekends...
Post by: DeHavilland on January 16, 2012, 20:17
What we Finnish people do on weekends



I also driving this :P Buying old cars and crashing them on tracks for the win! :)
and yes any type of ramming is allowed or actully no big ones but medium and small rammings are allowed! :D
Title: Re: What us Australians do on weekends...
Post by: Ethan on January 16, 2012, 20:52
@ 1:18 seems like burnout + drifting...
Title: Re: What us Australians do on weekends...
Post by: Anri on January 17, 2012, 17:10
 What albanians do on weekends
(http://i.imgur.com/3C1Q9.jpg)
Title: Re: What us Australians do on weekends...
Post by: TheSandman on January 17, 2012, 17:30
Quote from: Ethan on January 16, 2012, 20:52
@ 1:18 seems like burnout + drifting...
Sort of, modified front hand brakes which stop the car from going to fast, just control it through the slight curve :p
Its not really drift, its just the tyres getting nowhere, and powering towards the sides, moving forward stops it from swinging around.
Title: Re: What us Australians do on weekends...
Post by: DJ_Smashon on January 18, 2012, 14:28
Quote from: Joshy on January 15, 2012, 15:44
What I do on weekends.
Code (php) Select
<?php 
if(!isset($_SESSION)){
   
session_start();
}

if(
file_exists('config.php')){require_once('config.php');}else{die("Cannot find config.php in the root directory."); }
if(
file_exists('functions.php')){require_once('functions.php');}else{die("Cannot find functions.php in the root directory."); }

if(isset(
$_POST['username']) && isset($_POST['password']) && !isset($_SESSION['id'])){
   
log_in($_POST['username'],$_POST['password']);
}
if(isset(
$_GET['go']) && $_GET['go'] == "logout" && isset($_SESSION['id'])){
   
log_out();
}

if(isset(
$_SESSION['id'])){
   
$nav_bar_str nav_bar_allocate(TRUE);
}else{
   
$nav_bar_str nav_bar_allocate(FALSE);
}

?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php $tmp get_style(); echo $tmp['sitename']; ?></title>
<link href="css/styles.php" rel="stylesheet" type="text/css" />
<?php if(!isset($_SESSION['id'])){ ?>
<script type="text/javascript">
var toggle_login = false;
function login(){
var login = "<form name='loginform' style='display:inline;' action='index.php' method='post'><li style='padding:0px 10px;'><label id='loginuserlabel'>Username:</label> <input class='login' type='text' name='username' />&nbsp;&nbsp;&nbsp;&nbsp;<label id='loginpasslabel'>Password:</label> <input class='login' type='password' name='password' /></li><li><a class='navlink' onclick='loginsubmit();' >Log in[/url]</li></form><li><a class='navlink' onclick='login();'>Cancel[/url]</li>";
var orig = <?php echo '"'.addcslashes($nav_bar_str,'"').'"'?>;
var obj = document.getElementById('navlist');
if(toggle_login == false){
toggle_login = true;
obj.innerHTML = login;
}else{
toggle_login = false;
obj.innerHTML = orig;
}
}

function loginsubmit(){
   if(document.loginform.elements['username'].value == "" || document.loginform.elements['password'].value == ""){
   if(document.loginform.elements['username'].value == ""){
      document.getElementById('loginuserlabel').style.color = '#f00';
   }else{
      document.getElementById('loginuserlabel').style.color = '#fff';
   }
   
   if(document.loginform.elements['password'].value == ""){
      document.getElementById('loginpasslabel').style.color = '#f00';
   }else{
      document.getElementById('loginpasslabel').style.color = '#fff';
   }
   }else{
      document.loginform.submit();
   }
}

function loginhit(e){
   if(e.keyCode == 13 && toggle_login == true){
      loginsubmit();
   }
}
</script><?php ?>
</head>
<body <?php if(!isset($_SESSION['id'])){ echo 'onkeypress="loginhit(event);"'; } ?>>
<div id="header">
<div id="headerTitle">
<?php echo $tmp['sitename']; ?>
<>
<div id="headerDescript">
<?php echo $tmp['siteslogan']; unset($tmp); ?>
<><>
<ul id="navlist">
<?php echo $nav_bar_str?>
</ul>
<div id="content">
<?php if(isset($_GET['go'])){
switch(
$_GET['go']){
   case 
"admin":
      require(
"includes/admin.php");
      break;
}
}
?>

<>
</body>
</html>


What that code displays when I'm logged in and in the admin area:
(http://gyazo.com/31be2c506274880ba2af1cc9e7a99669.png?1326642397)


very nice i wish i was pro on php :(
Title: Re: What us Australians do on weekends...
Post by: Enzzo on January 18, 2012, 15:06
That's what Romanians do on weekend..

http://www.youtube.com/watch?v=JQccjQvP0BI&feature=related

Check "misibn" all videos from channel:)

The greenone is my dad:) in 2009:D