Welcome Guest, Not a member yet? Register   Sign In
DX Auth 1.0.6 (Authentication library)
#54

[eluser]tdktank59[/eluser]
setup a many to many relationship with users to roles in other words...
Hope this clears a few things up.
I never thought it out for this system... However in theory it should work with little modification

NOTE: I set this up this way to be able to run from an admin panel so that's why there's the permission_class and _method tables to be referenced in the admin panel so even a not so smart person could setup new permissions

Quote:Users
{
user_id
username
password
email_address
}

user_to_role
{
user_id
role_id
}

role
{
role_id
role_name
role_description
}

role_uri_rescriction
{
id
role_id
class
method (function)
}

Code:
-- phpMyAdmin SQL Dump
-- version 2.11.6
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Dec 02, 2008 at 06:43 PM
-- Server version: 5.0.51
-- PHP Version: 5.2.6

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

--
-- Database: `fourtwo1_offroadwars`
--

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

--
-- Table structure for table `group`
--

CREATE TABLE IF NOT EXISTS `group` (
  `group_id` int(10) unsigned NOT NULL auto_increment,
  `group_name` varchar(255) NOT NULL,
  `group_desciption` text,
  PRIMARY KEY  (`group_id`),
  UNIQUE KEY `group_name` (`group_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `group`
--

INSERT INTO `group` (`group_id`, `group_name`, `group_desciption`) VALUES
(0, 'Public', 'Public Group, Everyone not logged in is assigned to this group by default'),
(1, 'Members', 'Registered Members'),
(2, 'Moderators', 'Moderators'),
(3, 'Administrators', 'Administrators'),
(4, 'Super Administrators', 'Super Administrators');

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

--
-- Table structure for table `group_module_permission`
--

CREATE TABLE IF NOT EXISTS `group_module_permission` (
  `group_id` int(10) unsigned NOT NULL default '0',
  `class_id` int(10) unsigned NOT NULL default '0',
  `method_id` int(10) unsigned NOT NULL default '0',
  `permission` tinyint(1) NOT NULL default '0',
  UNIQUE KEY `group_module_permission` (`group_id`,`class_id`,`method_id`,`permission`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `group_module_permission`
--

INSERT INTO `group_module_permission` (`group_id`, `class_id`, `method_id`, `permission`) VALUES
(0, 1, 1, 1),
(0, 1, 2, 1),
(0, 1, 3, 1),
(0, 1, 4, 1);

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

--
-- Table structure for table `permission_class`
--

CREATE TABLE IF NOT EXISTS `permission_class` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `class` varchar(255) NOT NULL,
  `description` text NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `permission_class`
--

INSERT INTO `permission_class` (`id`, `class`, `description`) VALUES
(1, 'authentication', '');

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

--
-- Table structure for table `permission_method`
--

CREATE TABLE IF NOT EXISTS `permission_method` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `class_id` int(10) unsigned NOT NULL default '0',
  `method` varchar(255) NOT NULL,
  `description` text NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `permission_method`
--

INSERT INTO `permission_method` (`id`, `class_id`, `method`, `description`) VALUES
(1, 1, 'index', ''),
(2, 1, 'login', ''),
(3, 1, 'register', ''),
(4, 1, 'process_login', '');

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

--
-- Table structure for table `user`
--

CREATE TABLE IF NOT EXISTS `user` (
  `user_id` int(10) unsigned NOT NULL auto_increment,
  `username` varchar(255) NOT NULL,
  `email_address` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `register_date` int(10) unsigned NOT NULL,
  `account_status` int(11) NOT NULL default '1',
  `account_status_reason` text NOT NULL,
  PRIMARY KEY  (`user_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `user`
--

INSERT INTO `user` (`user_id`, `username`, `email_address`, `password`, `register_date`, `account_status`, `account_status_reason`) VALUES
(1, 'administrator', '[email protected]', 'this was a password', 1224537739, 1, 'Your account is active. If you experience any problems please contact an administrator.');
-- --------------------------------------------------------

--
-- Table structure for table `user_group`
--

CREATE TABLE IF NOT EXISTS `user_group` (
  `user_id` int(10) unsigned NOT NULL,
  `group_id` int(10) unsigned NOT NULL default '1',
  UNIQUE KEY `user_group` (`user_id`,`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_group`
--

INSERT INTO `user_group` (`user_id`, `group_id`) VALUES
(1, 4);


Messages In This Thread
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 04:14 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 04:16 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 04:56 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 05:09 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 07:30 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 07:34 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 07:34 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 07:45 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 07:59 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 08:00 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 08:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 08:23 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 08:53 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 09:35 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 10:36 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 10:41 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 10:54 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 10:57 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 11:00 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 11:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 11:04 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 11:10 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 11:45 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 04:24 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 07:27 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 08:11 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 10:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 10:06 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 10:10 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-01-2008, 10:16 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 12:06 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 03:36 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 09:28 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 09:44 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 01:04 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 01:25 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 02:03 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 02:10 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 02:48 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 02:58 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 03:05 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 03:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 03:08 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 03:14 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 03:20 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 03:53 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 04:15 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 04:22 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 04:46 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 04:49 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 05:05 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 05:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 05:42 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 05:47 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 08:23 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 10:26 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 10:32 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 10:41 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-02-2008, 10:43 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 04:49 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 08:26 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 08:39 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 09:41 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 10:52 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 01:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 01:49 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 03:35 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 03:57 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 04:32 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 04:42 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 04:57 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 10:22 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-03-2008, 10:48 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 12:33 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 06:23 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 06:47 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 07:21 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 07:28 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 07:36 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 07:43 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 07:51 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 12:01 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 12:39 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 12:44 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 12:59 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 01:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 01:09 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 01:14 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 03:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 03:14 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 03:29 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 03:51 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 04:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 04:15 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 04:25 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-04-2008, 05:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-05-2008, 10:53 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-05-2008, 11:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-05-2008, 11:35 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-05-2008, 11:38 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-05-2008, 02:34 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-05-2008, 04:23 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-05-2008, 04:28 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-05-2008, 04:34 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-05-2008, 04:37 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-07-2008, 01:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-08-2008, 03:54 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-08-2008, 04:00 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-08-2008, 04:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-08-2008, 04:09 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-08-2008, 04:14 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-08-2008, 04:43 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 04:03 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 04:15 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 04:19 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 08:45 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 11:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 12:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 12:48 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 01:43 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 01:46 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 01:47 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 02:42 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 03:16 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 05:26 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 10:01 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 10:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 10:05 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-09-2008, 10:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-10-2008, 01:04 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-10-2008, 01:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-10-2008, 01:18 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-10-2008, 01:23 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 12:56 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 01:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 01:20 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 02:24 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 02:50 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 02:53 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 03:17 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 03:20 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 03:54 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 04:47 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 04:49 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 05:27 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 09:06 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 10:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-11-2008, 10:49 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-12-2008, 01:08 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-12-2008, 01:57 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-12-2008, 10:41 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-13-2008, 02:23 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-13-2008, 04:19 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-13-2008, 12:09 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-13-2008, 08:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-14-2008, 04:03 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-14-2008, 05:44 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-14-2008, 10:13 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-14-2008, 10:15 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-14-2008, 11:52 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 12:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 12:55 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 04:57 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 06:54 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 02:55 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 05:03 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 07:35 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 07:39 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 07:41 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-15-2008, 11:51 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 12:52 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 02:05 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 02:06 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 04:41 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 08:13 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 08:15 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 08:20 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 08:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 08:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 09:04 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 09:06 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 09:11 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 10:02 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 03:09 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 04:38 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 08:57 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 08:59 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 09:10 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-16-2008, 09:11 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-17-2008, 02:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-17-2008, 02:16 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-17-2008, 02:17 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-17-2008, 02:18 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-17-2008, 02:20 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-18-2008, 07:30 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-18-2008, 10:02 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-18-2008, 10:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-18-2008, 10:33 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-18-2008, 11:30 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-18-2008, 11:36 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-19-2008, 11:03 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-19-2008, 12:47 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-19-2008, 03:30 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-19-2008, 03:44 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-19-2008, 03:51 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-19-2008, 04:05 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-19-2008, 04:28 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-19-2008, 06:50 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-19-2008, 10:33 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 07:44 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 11:00 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 01:10 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 06:54 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 08:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 08:04 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 08:05 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 08:08 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 09:24 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2008, 11:29 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 04:59 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 07:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 08:57 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 08:59 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 09:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 09:03 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 09:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 12:04 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 12:14 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 01:01 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 01:32 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 01:59 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 02:00 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 02:03 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 02:14 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 02:37 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 04:10 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 10:34 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-21-2008, 10:45 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 02:30 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 10:49 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 12:55 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 12:56 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 12:57 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 01:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 01:16 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 01:24 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 01:25 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 01:28 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 01:31 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 01:34 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 02:04 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 02:29 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-22-2008, 03:01 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-23-2008, 09:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-23-2008, 09:35 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-23-2008, 09:41 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-23-2008, 10:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-24-2008, 02:07 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-24-2008, 02:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-24-2008, 04:51 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-24-2008, 10:48 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-24-2008, 11:16 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-25-2008, 12:04 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-27-2008, 03:41 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-28-2008, 11:03 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-29-2008, 09:56 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 06:36 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 06:49 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 07:06 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 08:21 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 09:00 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 09:11 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 09:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 09:15 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 09:23 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 09:47 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-30-2008, 09:59 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-31-2008, 04:36 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-31-2008, 05:00 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-31-2008, 05:04 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-31-2008, 05:13 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-31-2008, 06:17 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-31-2008, 06:49 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-01-2009, 06:54 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-01-2009, 06:57 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-02-2009, 02:02 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-02-2009, 01:33 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-02-2009, 01:35 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-02-2009, 01:39 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-02-2009, 01:46 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-02-2009, 01:49 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-04-2009, 09:41 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-05-2009, 01:33 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-06-2009, 01:59 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-06-2009, 07:24 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-08-2009, 11:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-10-2009, 04:19 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-12-2009, 12:14 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-12-2009, 06:50 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-12-2009, 05:50 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-13-2009, 09:56 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-14-2009, 04:45 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-14-2009, 08:20 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-14-2009, 11:26 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-15-2009, 10:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-16-2009, 03:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-17-2009, 04:50 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-17-2009, 06:35 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-17-2009, 08:38 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-17-2009, 10:33 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-17-2009, 09:36 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-18-2009, 09:20 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-21-2009, 09:38 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-23-2009, 11:00 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-23-2009, 01:30 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-24-2009, 06:38 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-24-2009, 06:17 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-25-2009, 10:52 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-25-2009, 07:10 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-25-2009, 10:29 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-26-2009, 03:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-27-2009, 01:31 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-27-2009, 10:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-28-2009, 12:20 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-28-2009, 12:27 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-28-2009, 12:34 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-28-2009, 12:43 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-28-2009, 03:18 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-28-2009, 03:33 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-31-2009, 12:19 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-31-2009, 03:38 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-31-2009, 05:51 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2009, 04:25 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2009, 04:30 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2009, 08:31 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2009, 11:49 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2009, 12:42 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2009, 05:17 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2009, 09:42 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-05-2009, 01:18 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-05-2009, 03:19 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-05-2009, 03:32 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-05-2009, 07:09 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-06-2009, 12:50 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-06-2009, 07:05 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-06-2009, 02:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-06-2009, 02:37 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-08-2009, 12:11 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-08-2009, 12:29 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-08-2009, 05:14 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-09-2009, 02:13 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-09-2009, 12:44 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-09-2009, 12:53 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-09-2009, 12:57 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-09-2009, 01:00 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-12-2009, 07:49 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-16-2009, 08:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-16-2009, 03:19 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-20-2009, 02:18 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-21-2009, 11:15 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 10:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 10:33 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 10:43 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 10:46 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 02:21 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 02:40 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 02:43 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 02:49 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 02:51 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-23-2009, 03:35 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-24-2009, 02:11 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-24-2009, 03:19 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-24-2009, 03:24 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-24-2009, 03:26 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-26-2009, 01:43 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-26-2009, 04:27 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-26-2009, 04:32 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-26-2009, 04:45 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-28-2009, 08:34 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-28-2009, 10:10 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-02-2009, 02:52 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-02-2009, 03:51 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-02-2009, 11:42 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-03-2009, 09:45 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-05-2009, 08:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-10-2009, 01:59 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-10-2009, 04:55 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-11-2009, 11:52 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-12-2009, 03:38 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-12-2009, 03:46 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-12-2009, 08:16 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-12-2009, 08:40 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-13-2009, 03:50 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-14-2009, 12:06 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-14-2009, 12:32 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-15-2009, 06:30 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-15-2009, 06:46 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-15-2009, 07:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-15-2009, 07:20 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-16-2009, 04:30 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-16-2009, 06:27 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-16-2009, 11:13 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-16-2009, 11:15 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-17-2009, 12:40 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-17-2009, 02:48 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-17-2009, 04:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-18-2009, 03:38 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-18-2009, 04:26 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-19-2009, 03:32 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-19-2009, 09:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-19-2009, 11:13 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-20-2009, 06:23 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-20-2009, 07:53 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-20-2009, 08:21 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-20-2009, 09:20 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-20-2009, 10:39 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-20-2009, 11:39 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-21-2009, 03:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-21-2009, 03:10 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-21-2009, 04:06 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-29-2009, 11:58 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-31-2009, 02:00 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-31-2009, 10:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-01-2009, 01:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-01-2009, 09:22 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-01-2009, 10:00 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-02-2009, 12:19 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-09-2009, 03:28 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-09-2009, 12:32 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-10-2009, 07:28 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-14-2009, 11:47 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-15-2009, 05:17 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-16-2009, 01:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-16-2009, 05:55 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-18-2009, 10:25 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-19-2009, 09:31 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-20-2009, 08:58 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-24-2009, 03:06 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-24-2009, 04:29 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-24-2009, 05:01 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-24-2009, 05:05 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-24-2009, 05:21 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-30-2009, 11:03 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-30-2009, 11:20 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-03-2009, 09:59 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-03-2009, 10:03 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-03-2009, 11:52 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-04-2009, 02:09 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-04-2009, 04:25 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-04-2009, 05:40 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-05-2009, 05:27 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-05-2009, 05:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-06-2009, 01:03 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-10-2009, 11:27 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-10-2009, 02:22 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-11-2009, 12:42 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-11-2009, 06:25 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-12-2009, 08:49 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-13-2009, 04:17 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-14-2009, 04:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-21-2009, 02:48 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-21-2009, 03:44 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-22-2009, 01:50 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-22-2009, 11:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-24-2009, 04:04 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-24-2009, 11:40 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-25-2009, 09:13 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-25-2009, 09:16 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-26-2009, 08:34 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-26-2009, 02:23 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-26-2009, 03:00 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-26-2009, 05:39 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-29-2009, 04:38 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-29-2009, 12:33 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-30-2009, 01:56 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-31-2009, 04:44 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-01-2009, 12:47 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-01-2009, 10:38 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-01-2009, 08:48 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-02-2009, 07:10 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-02-2009, 09:32 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-04-2009, 08:48 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-08-2009, 05:48 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-08-2009, 10:17 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-08-2009, 04:50 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-17-2009, 12:46 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-19-2009, 03:20 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-22-2009, 09:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-25-2009, 09:41 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-29-2009, 07:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-30-2009, 07:55 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-30-2009, 09:12 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-30-2009, 09:37 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-30-2009, 08:50 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-17-2009, 11:46 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-23-2009, 01:14 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-23-2009, 01:21 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-23-2009, 04:33 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-23-2009, 05:25 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-23-2009, 06:44 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-23-2009, 06:57 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-23-2009, 07:13 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-23-2009, 10:24 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-23-2009, 11:44 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-28-2009, 03:48 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-28-2009, 04:37 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-28-2009, 04:24 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-29-2009, 01:34 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-30-2009, 01:06 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-30-2009, 05:55 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-30-2009, 03:14 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-31-2009, 04:01 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-05-2009, 01:26 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-05-2009, 04:30 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-05-2009, 05:31 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-05-2009, 01:33 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-06-2009, 03:21 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-12-2009, 04:50 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-12-2009, 08:58 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-13-2009, 02:19 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-20-2009, 09:29 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-21-2009, 03:46 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-21-2009, 04:07 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-21-2009, 04:46 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-24-2009, 12:58 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-24-2009, 08:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-27-2009, 07:15 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-29-2009, 10:09 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-31-2009, 09:11 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-01-2009, 01:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-04-2009, 04:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-19-2009, 01:33 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-20-2009, 07:37 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-23-2009, 07:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-28-2009, 10:42 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 10-19-2009, 02:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 10-21-2009, 02:00 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 10-21-2009, 05:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 10-27-2009, 02:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 10-30-2009, 12:14 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 11-21-2009, 08:45 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 11-21-2009, 10:14 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 11-21-2009, 10:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 11-23-2009, 02:21 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-25-2009, 07:15 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-26-2009, 07:07 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-13-2010, 05:56 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-13-2010, 06:16 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-13-2010, 12:59 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-13-2010, 01:10 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-13-2010, 01:19 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-13-2010, 01:22 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-14-2010, 03:39 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-14-2010, 08:50 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-19-2010, 09:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-22-2010, 04:12 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-27-2010, 03:12 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-27-2010, 04:18 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-27-2010, 04:21 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2010, 05:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2010, 05:24 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2010, 06:47 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-04-2010, 10:13 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-10-2010, 04:51 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-10-2010, 05:10 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-10-2010, 05:23 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-22-2010, 04:47 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-22-2010, 11:50 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-25-2010, 11:32 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-26-2010, 12:46 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-27-2010, 10:40 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-11-2010, 01:47 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-25-2010, 10:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-25-2010, 02:41 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-26-2010, 04:08 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-26-2010, 05:41 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-30-2010, 12:39 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-06-2010, 02:35 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-07-2010, 12:32 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-07-2010, 05:19 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-21-2010, 05:52 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-13-2010, 10:58 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-13-2010, 11:46 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-14-2010, 03:36 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-14-2010, 06:24 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-14-2010, 09:20 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-16-2010, 11:01 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-27-2010, 08:16 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-29-2010, 05:43 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-30-2010, 06:03 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 09-30-2010, 06:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 10-04-2010, 01:25 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 10-05-2010, 10:34 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 10-06-2010, 02:04 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 10-06-2010, 02:46 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 11-04-2010, 05:57 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 11-04-2010, 07:05 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 11-04-2010, 08:26 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 11-04-2010, 09:13 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 11-05-2010, 01:38 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 12-20-2010, 01:09 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-30-2011, 02:09 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-31-2011, 06:14 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-31-2011, 06:56 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-31-2011, 08:56 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-15-2011, 01:02 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-21-2011, 09:47 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-19-2011, 09:05 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-20-2011, 04:42 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 03-20-2011, 10:37 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-22-2011, 01:00 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-30-2011, 12:55 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-30-2011, 10:48 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-31-2011, 01:31 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 05-31-2011, 03:48 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-06-2011, 10:56 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-06-2011, 11:06 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-06-2011, 09:22 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-17-2011, 04:54 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 07-27-2011, 11:27 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-17-2011, 07:50 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-17-2011, 11:01 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 08-18-2011, 02:32 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-05-2012, 03:00 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-16-2012, 09:04 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 04-16-2012, 10:26 PM
DX Auth 1.0.6 (Authentication library) - by El Forum - 06-02-2012, 10:29 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 01-01-2013, 03:22 AM
DX Auth 1.0.6 (Authentication library) - by El Forum - 02-12-2013, 11:48 PM



Theme © iAndrew 2016 - Forum software by © MyBB