iLeetz Posted November 27, 2010 Posted November 27, 2010 Does anyone have Way of the Mafia script? I just want it to start coding of it, thanks much. Quote
Dominion Posted November 27, 2010 Posted November 27, 2010 It was on here somewhere, however seems to have been removed. Sorry I cannot post it again as i have no idea why it was removed. Quote
Jordan Palmer Posted November 27, 2010 Posted November 27, 2010 If it's a paid engine it cannot be posted, however if its a free licensed (GNU) then I'm pretty sure it can be reposted. Quote
Slasher Posted August 23, 2011 Posted August 23, 2011 just go to the way of the mafia website theres a download link for it on there :) Quote
bineye Posted August 24, 2011 Posted August 24, 2011 Yeah just downloaded to have a nosy, and they say MCCodes user table is flooded? Jeez.... On logging in I get just over a page worth of errors, all linked to functions file. Maybe its just my server that hates it, I dunno... it's almost 3am, I'll take a closer inspection in the morning. Quote
Sim Posted August 24, 2011 Posted August 24, 2011 How's mine? CREATE TABLE `users` ( `userID` int(11) NOT NULL AUTO_INCREMENT, `userName` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `userPass` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `userRank` int(1) NOT NULL DEFAULT '0', `userEmail` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `userRef` int(11) NOT NULL DEFAULT '0', `userRefs` int(5) NOT NULL DEFAULT '0', `userLogins` int(5) NOT NULL DEFAULT '0', `userLastIP` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `userRegDate` int(13) NOT NULL DEFAULT '0', `userActCode` int(5) NOT NULL DEFAULT '0', `userLastActive` int(12) NOT NULL DEFAULT '0', `userLocation` int(11) NOT NULL DEFAULT '0', `userGender` enum('Male','Female') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Male', `userCredits` int(10) NOT NULL DEFAULT '0', `userCharSel` int(10) NOT NULL DEFAULT '0', `userPartySel` int(10) NOT NULL DEFAULT '0', `userTheme` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`userID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; CREATE TABLE `chars` ( `charID` int(11) NOT NULL AUTO_INCREMENT, `charUserID` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `charPartyID` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `charDunID` int(11) NOT NULL DEFAULT '0', `charDunMapID` int(11) NOT NULL DEFAULT '0', `charName` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `charStr` int(5) NOT NULL DEFAULT '0', `charInt` int(5) NOT NULL DEFAULT '0', `charDex` int(5) NOT NULL DEFAULT '0', `charConst` int(5) NOT NULL DEFAULT '0', `charLabour` int(5) NOT NULL DEFAULT '0', `charHP` int(5) NOT NULL DEFAULT '0', `charMP` int(5) NOT NULL DEFAULT '0', `charHunting` int(2) NOT NULL DEFAULT '10', `charFishing` int(2) NOT NULL DEFAULT '10', `charMining` int(2) NOT NULL DEFAULT '10', `charWoodCut` int(2) NOT NULL DEFAULT '10', `charFarming` int(2) NOT NULL DEFAULT '10', `charAlchemy` int(2) NOT NULL DEFAULT '10', `charHerbalism` int(2) NOT NULL DEFAULT '10', `charCrafting` int(2) NOT NULL DEFAULT '10', `charMaxStr` int(5) NOT NULL DEFAULT '0', `charMaxInt` int(5) NOT NULL DEFAULT '0', `charMaxDex` int(5) NOT NULL DEFAULT '0', `charMaxConst` int(5) NOT NULL DEFAULT '0', `charMaxLabour` int(5) NOT NULL DEFAULT '0', `charMaxHP` int(5) NOT NULL DEFAULT '0', `charMaxMP` int(5) NOT NULL DEFAULT '0', `charMaxHunting` int(2) NOT NULL DEFAULT '10', `charMaxFishing` int(2) NOT NULL DEFAULT '10', `charMaxMining` int(2) NOT NULL DEFAULT '10', `charMaxWoodCut` int(2) NOT NULL DEFAULT '10', `charMaxFarming` int(2) NOT NULL DEFAULT '10', `charMaxAlchemy` int(2) NOT NULL DEFAULT '10', `charMaxHerbalism` int(2) NOT NULL DEFAULT '10', `charMaxCrafting` int(2) NOT NULL DEFAULT '10', PRIMARY KEY (`charID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.