Jump to content

gamer dude

Members
  • Content Count

    77
  • Joined

  • Last visited

Posts posted by gamer dude


  1. Hey

     

    Guys/Girls as you know the wind was bad today and last night with the max of 56mph of gust! Met office have issued Severe weather warnings for Yorkshire & Humber.. Click Here For Weather

     

     

    Here is a image i took while walking home..

     

    picturevkb.th.jpg[/img]

     

    UPDATE I am going to send this image to the The Star ^

    |

     

     

    Post your images on what has happened to you.

     

    Thanks,

    Gamer Dude


  2. Here is some of the table structer for the database.

    -- Table structure for table `grpgusers`

    --

     

    CREATE TABLE `grpgusers` (

    `id` int(10) NOT NULL auto_increment,

    `username` varchar(75) NOT NULL default '0',

    `password` varchar(75) NOT NULL default '0',

    `exp` int(30) NOT NULL default '0',

    `money` int(30) NOT NULL default '1000',

    `bank` int(30) NOT NULL default '0',

    `whichbank` int(2) NOT NULL default '0',

    `hp` int(10) NOT NULL default '50',

    `energy` int(10) NOT NULL default '10',

    `nerve` int(10) NOT NULL default '5',

    `workexp` int(10) NOT NULL default '0',

    `strength` int(10) NOT NULL default '10',

    `defense` int(10) NOT NULL default '10',

    `speed` int(10) NOT NULL default '10',

    `battlewon` int(10) NOT NULL default '0',

    `battlelost` int(10) NOT NULL default '0',

    `battlemoney` int(20) NOT NULL default '0',

    `crimesucceeded` int(10) NOT NULL default '0',

    `crimefailed` int(10) NOT NULL default '0',

    `crimemoney` int(20) NOT NULL default '0',

    `points` bigint(20) NOT NULL default '0',

    `rmdays` tinyint(5) NOT NULL default '0',

    `signuptime` int(20) NOT NULL default '0',

    `lastactive` int(20) NOT NULL default '0',

    `awake` int(5) NOT NULL default '100',

    `email` varchar(75) NOT NULL default '',

    `jail` int(1) NOT NULL default '0',

    `hospital` int(1) NOT NULL default '0',

    `hwho` varchar(30) NOT NULL,

    `hwhen` varchar(30) NOT NULL,

    `hhow` varchar(30) NOT NULL,

    `house` int(3) NOT NULL default '0',

    `gang` int(10) NOT NULL default '0',

    `quote` text NOT NULL,

    `avatar` varchar(50) NOT NULL,

    `city` int(3) NOT NULL default '1',

    `admin` int(1) NOT NULL default '0',

    `searchdowntown` int(3) NOT NULL default '100',

    `job` int(5) NOT NULL,

    `ip` int(20) NOT NULL,

    `eqweapon` int(20) NOT NULL,

    `eqarmor` int(20) NOT NULL,

    `potseeds` int(20) NOT NULL,

    `marijuana` int(20) NOT NULL,

    `cocaine` int(20) NOT NULL,

    `style` int(3) NOT NULL,

    PRIMARY KEY (`id`)

    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=98 ;

     

    -- --------------------------------------------------------


  3. From Database? my database is mysql

     

    If not this is some of it from my php file Register.php

     

    //insert the values

    if (!isset($message)){

    $result= mysql_query("INSERT INTO `grpgusers` (ip, username, password, email, signuptime, lastactive)".

    "VALUES ('".$_SERVER['REMOTE_ADDR']."', '$username', '$password', '$email', '$signuptime', '$signuptime')");

    echo Message('Your account has been created successfully! Redirecting to login page in 5 seconds. <meta http-equiv="refresh" content="5;url=login.php">');

     

    if ($_POST['referer'] != ""){

    $result= mysql_query("INSERT INTO `referrals` (`when`, `referrer`, `referred`)".

    "VALUES ('$signuptime', '".$_POST['referer']."', '".$username."')");

    }

     

    die();

    }

    }

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.