Jump to content
MakeWebGames

Needed... v2 forums sql queries for the db


ajgraves

Recommended Posts

Re: Needed... v2 forums sql queries for the db

Hi Nyna,

There are in the original source pack, your right... but i am at work at the moment and have managed to drop the table....

So was hoping that someone could post it here so i could place it back into the game before i head home :cry:

Link to comment
Share on other sites

Re: Needed... v2 forums sql queries for the db

 

Aj Graves is not a noob at this

 

he used to own www.mafiacorruption.com

plus he works with a different engine

so i don't know why he wants the mccodes forum sql for..

Ok its time to pull that shambles of a post apart here...

The only thing that you got right about what you have siad there is that i am not a noob at this... I have owned games before and have worked from the mccodes v2 script for a while but have always looked to modify both the look of the site and the layout of the site to battle against having a game that is the same as most others... same mods... same old basically.

The reasoning i am asking is that i am at work and do not have access to the source codes to get the queries from.

As for i used to own mafiacorruption.... very close mate...

It was my brother who owned mafiacorruption, who then went on to sell the game and is now owner of www.prisonstruggle.com with a joint partner.

Wow, i have never found it to be so hard to get the help of some of the best mccoders out there... don't know if its the weather or what but.... :|

Link to comment
Share on other sites

Re: Needed... v2 forums sql queries for the db

Warning - while you were typing a new reply has been posted. You may wish to review your post.

Post Still Remians How It Was

 

Aj Graves is not a noob at this

 

he used to own www.mafiacorruption.com

plus he works with a different engine

so i don't know why he wants the mccodes forum sql for..

If you are telling the truth he wants to scam or fix his warezed codes

Link to comment
Share on other sites

Re: Needed... v2 forums sql queries for the db

 

Warning - while you were typing a new reply has been posted. You may wish to review your post.

Post Still Remians How It Was

 

Aj Graves is not a noob at this

 

he used to own www.mafiacorruption.com

plus he works with a different engine

so i don't know why he wants the mccodes forum sql for..

If you are telling the truth he wants to scam or fix his warezed codes

See above post on this one Karlos

Link to comment
Share on other sites

Re: Needed... v2 forums sql queries for the db

 

LAWL

 

Dude !

so Aj Graves is you and your brother is named Aj Graves

i have seen your name everywhere rambling about

and your grpg codes

I have no idea what you are talking about....

The owners of prisonstruggle are my brother Jordan Graves and his partner Telmo.

Seems that you think you know alot about me but really you know nothing.

Just coz my brother used my paypal to accept the donations into?

Pfft

Link to comment
Share on other sites

Re: Needed... v2 forums sql queries for the db

 

Hi Nyna,

There are in the original source pack, your right... but i am at work at the moment and have managed to drop the table....

So was hoping that someone could post it here so i could place it back into the game before i head home :cry:

Just give him the SQLS dabomstew cant be that bothered about this project or otherwise he would have secured it enough so people coulnt steal it and use it on other sites....

or he would have used PHPSHIELD to protect it..

Link to comment
Share on other sites

Re: Needed... v2 forums sql queries for the db

 

--
-- Table structure for table `forum_forums`
--

CREATE TABLE IF NOT EXISTS `forum_forums` (
 `ff_id` int(11) NOT NULL auto_increment,
 `ff_name` varchar(255) NOT NULL default '',
 `ff_desc` varchar(255) NOT NULL default '',
 `ff_posts` int(11) NOT NULL default '0',
 `ff_topics` int(11) NOT NULL default '0',
 `ff_lp_time` int(11) NOT NULL default '0',
 `ff_lp_poster_id` int(11) NOT NULL default '0',
 `ff_lp_poster_name` text NOT NULL,
 `ff_lp_t_id` int(11) NOT NULL default '0',
 `ff_lp_t_name` varchar(255) NOT NULL default '',
 `ff_auth` enum('public','gang','staff') NOT NULL default 'public',
 `ff_owner` int(11) NOT NULL default '0',
 PRIMARY KEY  (`ff_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `forum_forums`
--

--
-- Table structure for table `forum_posts`
--

CREATE TABLE IF NOT EXISTS `forum_posts` (
 `fp_id` int(11) NOT NULL auto_increment,
 `fp_topic_id` int(11) NOT NULL default '0',
 `fp_forum_id` int(11) NOT NULL default '0',
 `fp_poster_id` int(11) NOT NULL default '0',
 `fp_poster_name` text NOT NULL,
 `fp_time` int(11) NOT NULL default '0',
 `fp_subject` varchar(255) NOT NULL default '',
 `fp_text` text NOT NULL,
 `fp_editor_id` int(11) NOT NULL default '0',
 `fp_editor_name` text NOT NULL,
 `fp_editor_time` int(11) NOT NULL default '0',
 `fp_edit_count` int(11) NOT NULL default '0',
 PRIMARY KEY  (`fp_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `forum_posts`
--

--
-- Table structure for table `forum_topics`
--

CREATE TABLE IF NOT EXISTS `forum_topics` (
 `ft_id` int(11) NOT NULL auto_increment,
 `ft_forum_id` int(11) NOT NULL default '0',
 `ft_name` varchar(255) NOT NULL default '',
 `ft_desc` varchar(255) NOT NULL default '',
 `ft_posts` int(11) NOT NULL default '0',
 `ft_owner_id` int(11) NOT NULL default '0',
 `ft_owner_name` text NOT NULL,
 `ft_start_time` int(11) NOT NULL default '0',
 `ft_last_id` int(11) NOT NULL default '0',
 `ft_last_name` text NOT NULL,
 `ft_last_time` int(11) NOT NULL default '0',
 `ft_pinned` tinyint(4) NOT NULL default '0',
 `ft_locked` tinyint(4) NOT NULL default '0',
 PRIMARY KEY  (`ft_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `forum_topics`
--
Link to comment
Share on other sites

Re: Needed... v2 forums sql queries for the db

 

--
-- Table structure for table `forum_forums`
--

CREATE TABLE IF NOT EXISTS `forum_forums` (
 `ff_id` int(11) NOT NULL auto_increment,
 `ff_name` varchar(255) NOT NULL default '',
 `ff_desc` varchar(255) NOT NULL default '',
 `ff_posts` int(11) NOT NULL default '0',
 `ff_topics` int(11) NOT NULL default '0',
 `ff_lp_time` int(11) NOT NULL default '0',
 `ff_lp_poster_id` int(11) NOT NULL default '0',
 `ff_lp_poster_name` text NOT NULL,
 `ff_lp_t_id` int(11) NOT NULL default '0',
 `ff_lp_t_name` varchar(255) NOT NULL default '',
 `ff_auth` enum('public','gang','staff') NOT NULL default 'public',
 `ff_owner` int(11) NOT NULL default '0',
 PRIMARY KEY  (`ff_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `forum_forums`
--

--
-- Table structure for table `forum_posts`
--

CREATE TABLE IF NOT EXISTS `forum_posts` (
 `fp_id` int(11) NOT NULL auto_increment,
 `fp_topic_id` int(11) NOT NULL default '0',
 `fp_forum_id` int(11) NOT NULL default '0',
 `fp_poster_id` int(11) NOT NULL default '0',
 `fp_poster_name` text NOT NULL,
 `fp_time` int(11) NOT NULL default '0',
 `fp_subject` varchar(255) NOT NULL default '',
 `fp_text` text NOT NULL,
 `fp_editor_id` int(11) NOT NULL default '0',
 `fp_editor_name` text NOT NULL,
 `fp_editor_time` int(11) NOT NULL default '0',
 `fp_edit_count` int(11) NOT NULL default '0',
 PRIMARY KEY  (`fp_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `forum_posts`
--

--
-- Table structure for table `forum_topics`
--

CREATE TABLE IF NOT EXISTS `forum_topics` (
 `ft_id` int(11) NOT NULL auto_increment,
 `ft_forum_id` int(11) NOT NULL default '0',
 `ft_name` varchar(255) NOT NULL default '',
 `ft_desc` varchar(255) NOT NULL default '',
 `ft_posts` int(11) NOT NULL default '0',
 `ft_owner_id` int(11) NOT NULL default '0',
 `ft_owner_name` text NOT NULL,
 `ft_start_time` int(11) NOT NULL default '0',
 `ft_last_id` int(11) NOT NULL default '0',
 `ft_last_name` text NOT NULL,
 `ft_last_time` int(11) NOT NULL default '0',
 `ft_pinned` tinyint(4) NOT NULL default '0',
 `ft_locked` tinyint(4) NOT NULL default '0',
 PRIMARY KEY  (`ft_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `forum_topics`
--

 

Thanks for this.

At least some people are here to help, not just go off topic.

Thanks again

Link to comment
Share on other sites

Re: Needed... v2 forums sql queries for the db

 

Lol the reluctance of posting was basically thinking about mc since the script is not ours to publicly post.

I know the new owner of MC but not the old, prison struggle is a nice game.

The new owner of MCcodes bieng coldblooded right?

Mc has in Mafia corruption no Mono Country im sorry i never made that clear :-P

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...