v90 Source/Repack Request.

Results 1 to 18 of 18
  1. #1
    Member TsukiRoot is offline
    MemberRank
    Jan 2013 Join Date
    In your closet.Location
    54Posts

    v90 Source/Repack Request.

    Hey, does anyone have a working v90 Source/Repack? If so, could I please have it?
    I'm creating a server with another person, and we'd like to make a server that is v90, because after v90 Nexon just seriously fucked up MapleStory completely after our opinion (aka Big Bang).

    We've tried Delphi Source (alot of errors), TropikMS (No SQL file?) and nothing else ^^.


  2. #2
    Omega sunnyboy is offline
    MemberRank
    Mar 2010 Join Date
    6,108Posts

    Re: v90 Source/Repack Request.

    I don't have a v 90, but I have a v99 if that helps

  3. #3
    Member TsukiRoot is offline
    MemberRank
    Jan 2013 Join Date
    In your closet.Location
    54Posts

    Re: v90 Source/Repack Request.

    Thanks but, as I said, we'd like to do a server before Nexon completely butt fucked MapleStory (which was after big bang), but thanks anyways ^^.

  4. #4
    Enthusiast quic is offline
    MemberRank
    Jul 2013 Join Date
    30Posts

  5. #5
    Member TsukiRoot is offline
    MemberRank
    Jan 2013 Join Date
    In your closet.Location
    54Posts

    Re: v90 Source/Repack Request.

    As I said, we've used TropikMS, no SQL file.

  6. #6
    Account Upgraded | Title Enabled! oxysoft is offline
    MemberRank
    Nov 2008 Join Date
    Canada, QCLocation
    1,400Posts

    Re: v90 Source/Repack Request.

    Quote Originally Posted by TsukiRoot View Post
    As I said, we've used TropikMS, no SQL file.
    There is one, but it's not updated. Use it and add the missing columns as the console spews out errors

  7. #7
    Member TsukiRoot is offline
    MemberRank
    Jan 2013 Join Date
    In your closet.Location
    54Posts

    Re: v90 Source/Repack Request.

    Quote Originally Posted by oxysoft View Post
    There is one, but it's not updated. Use it and add the missing columns as the console spews out errors
    Code:
    --
    -- Definition of table `customquestinfo`
    --
    
    
    DROP TABLE IF EXISTS `customquestinfo`;
    CREATE TABLE `customquestinfo` (
      `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
      `questid` int(11) NOT NULL,
      `skillid` int(11) NOT NULL,
      `startReqs` varchar(255) NOT NULL DEFAULT '0,0,0',
      `completeReqs` varchar(255) NOT NULL DEFAULT '0,0,0',
      `comments` varchar(45) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=latin1;
    
    
    --
    -- Dumping data for table `customquestinfo`
    --
    
    
    /*!40000 ALTER TABLE `customquestinfo` DISABLE KEYS */;
    INSERT INTO `customquestinfo` (`id`,`questid`,`skillid`,`startReqs`,`completeReqs`,`comments`) VALUES 
     (1,190000,0,'0,0,0','0,0,0','Family Buff'),
     (2,190001,0,'0,0,0','0,0,0','Family Buff'),
     (3,190002,0,'0,0,0','0,0,0','Family Buff'),
     (4,190003,0,'0,0,0','0,0,0','Family Buff'),
     (5,190004,0,'0,0,0','0,0,0','Family Buff'),
     (6,190005,0,'0,0,0','0,0,0','Family Buff'),
     (7,190006,0,'0,0,0','0,0,0','Family Buff'),
     (8,190007,0,'0,0,0','0,0,0','Family Buff'),
     (9,190008,0,'0,0,0','0,0,0','Family Buff'),
     (10,190009,0,'0,0,0','0,0,0','Family Buff'),
     (11,190010,0,'0,0,0','0,0,0','Family Buff'),
     (12,100000,0,'0,0,0','0,0,0','First Storyline quest, start at Agent P'),
     (13,100001,0,'0,0,0','0,0,0','Start at OSSS Researcher, complete at Dr.Bing'),
     (14,100002,0,'0,0,0','mob,100100,30;item,4000019,15','Help Dr Bing hunt Snail and Snail shells'),
     (15,100003,0,'0,0,0','item,4001458,5','Get Crystanol Fragments from Reactors'),
     (16,100004,0,'0,0,0','0,0,0','Start laboratory quest, someone looking.'),
     (17,200000,0,'0,0,0','0,0,0','All storyline done check.'),
     (18,150000,0,'0,0,0','0,0,0','Mulung Resting Map save'),
     (19,170000,0,'0,0,0','0,0,0','Quick Slot Data'),
     (20,170001,0,'0,0,0','0,0,0','Pet Ignore Tag'),
     (21,170002,0,'0,0,0','0,0,0','Pet Auto HP'),
     (22,170003,0,'0,0,0','0,0,0','Pet Auto MP'),
     (23,170004,0,'0,0,0','0,0,0','Report'),
     (24,170005,0,'0,0,0','0,0,0','Fixed Skills on KeyMap'),
     (25,190011,0,'0,0,0','0,0,0','Speed Quiz'),
     (26,100005,0,'0,0,0','item,4032708,10','Deep sea\'s hunting mainboard'),
     (27,100006,0,'0,0,0','0,0,0','Choose occupation.'),
     (28,100007,0,'0,0,0','item,4031752,20','Unblock 2nd portal and hunt TM part'),
     (29,100008,0,'0,0,0','item,4001459,1','Go to future after time machine fixed'),
     (31,100009,0,'0,0,0','0,0,0','Find osss Boss'),
     (33,190012,0,'0,0,0','0,0,0','@clone command time log'),
     (34,190013,0,'0,0,0','0,0,0','@Bomb NX Whores'),
     (35,190014,0,'0,0,0','0,0,0','@Heal <name>'),
     (36,190015,0,'0,0,0','0,0,0','@Strip <name>'),
     (37,190016,0,'0,0,0','0,0,0','@Kill <name>');
    /*!40000 ALTER TABLE `customquestinfo` ENABLE KEYS */;
    That is what's inside the SQL file. You expect me to add every single other table that is missing? How exactly should I know what columns are missing without doing extreme edits/research through the entire resource pack?

  8. #8
    BloopBloop Hilia is offline
    MemberRank
    Aug 2012 Join Date
    905Posts

    Re: v90 Source/Repack Request.

    Quote Originally Posted by TsukiRoot View Post
    Code:
    --
    -- Definition of table `customquestinfo`
    --
    
    
    DROP TABLE IF EXISTS `customquestinfo`;
    CREATE TABLE `customquestinfo` (
      `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
      `questid` int(11) NOT NULL,
      `skillid` int(11) NOT NULL,
      `startReqs` varchar(255) NOT NULL DEFAULT '0,0,0',
      `completeReqs` varchar(255) NOT NULL DEFAULT '0,0,0',
      `comments` varchar(45) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=latin1;
    
    
    --
    -- Dumping data for table `customquestinfo`
    --
    
    
    /*!40000 ALTER TABLE `customquestinfo` DISABLE KEYS */;
    INSERT INTO `customquestinfo` (`id`,`questid`,`skillid`,`startReqs`,`completeReqs`,`comments`) VALUES 
     (1,190000,0,'0,0,0','0,0,0','Family Buff'),
     (2,190001,0,'0,0,0','0,0,0','Family Buff'),
     (3,190002,0,'0,0,0','0,0,0','Family Buff'),
     (4,190003,0,'0,0,0','0,0,0','Family Buff'),
     (5,190004,0,'0,0,0','0,0,0','Family Buff'),
     (6,190005,0,'0,0,0','0,0,0','Family Buff'),
     (7,190006,0,'0,0,0','0,0,0','Family Buff'),
     (8,190007,0,'0,0,0','0,0,0','Family Buff'),
     (9,190008,0,'0,0,0','0,0,0','Family Buff'),
     (10,190009,0,'0,0,0','0,0,0','Family Buff'),
     (11,190010,0,'0,0,0','0,0,0','Family Buff'),
     (12,100000,0,'0,0,0','0,0,0','First Storyline quest, start at Agent P'),
     (13,100001,0,'0,0,0','0,0,0','Start at OSSS Researcher, complete at Dr.Bing'),
     (14,100002,0,'0,0,0','mob,100100,30;item,4000019,15','Help Dr Bing hunt Snail and Snail shells'),
     (15,100003,0,'0,0,0','item,4001458,5','Get Crystanol Fragments from Reactors'),
     (16,100004,0,'0,0,0','0,0,0','Start laboratory quest, someone looking.'),
     (17,200000,0,'0,0,0','0,0,0','All storyline done check.'),
     (18,150000,0,'0,0,0','0,0,0','Mulung Resting Map save'),
     (19,170000,0,'0,0,0','0,0,0','Quick Slot Data'),
     (20,170001,0,'0,0,0','0,0,0','Pet Ignore Tag'),
     (21,170002,0,'0,0,0','0,0,0','Pet Auto HP'),
     (22,170003,0,'0,0,0','0,0,0','Pet Auto MP'),
     (23,170004,0,'0,0,0','0,0,0','Report'),
     (24,170005,0,'0,0,0','0,0,0','Fixed Skills on KeyMap'),
     (25,190011,0,'0,0,0','0,0,0','Speed Quiz'),
     (26,100005,0,'0,0,0','item,4032708,10','Deep sea\'s hunting mainboard'),
     (27,100006,0,'0,0,0','0,0,0','Choose occupation.'),
     (28,100007,0,'0,0,0','item,4031752,20','Unblock 2nd portal and hunt TM part'),
     (29,100008,0,'0,0,0','item,4001459,1','Go to future after time machine fixed'),
     (31,100009,0,'0,0,0','0,0,0','Find osss Boss'),
     (33,190012,0,'0,0,0','0,0,0','@clone command time log'),
     (34,190013,0,'0,0,0','0,0,0','@Bomb NX Whores'),
     (35,190014,0,'0,0,0','0,0,0','@Heal <name>'),
     (36,190015,0,'0,0,0','0,0,0','@Strip <name>'),
     (37,190016,0,'0,0,0','0,0,0','@Kill <name>');
    /*!40000 ALTER TABLE `customquestinfo` ENABLE KEYS */;
    That is what's inside the SQL file. You expect me to add every single other table that is missing? How exactly should I know what columns are missing without doing extreme edits/research through the entire resource pack?

    Run the server and a miracle will happen:
    The console will tell you what columns can't be found because they throw a exception.

  9. #9
    Member TsukiRoot is offline
    MemberRank
    Jan 2013 Join Date
    In your closet.Location
    54Posts

    Re: v90 Source/Repack Request.

    Quote Originally Posted by Hilia View Post
    Run the server and a miracle will happen:
    The console will tell you what columns can't be found because they throw a exception.
    That will basically take ages to add all the columns and etc.

  10. #10
    Novice Sosna is offline
    MemberRank
    Sep 2013 Join Date
    1Posts

    Re: v90 Source/Repack Request.

    I searching v90 source/repack too. ;/

  11. #11
    Account Upgraded | Title Enabled! blkancientss is offline
    MemberRank
    Oct 2009 Join Date
    248Posts

    Re: v90 Source/Repack Request.

    Use a v83 source, take all the opcodes and handlers from the v90 one and update anything else. Or run a v83 sql and change were needed.

  12. #12
    desk.getCoffee().drink(); AngelSpirit is offline
    MemberRank
    Jul 2010 Join Date
    CanadaLocation
    318Posts

    Re: v90 Source/Repack Request.

    Most, if not all sources use the same SQL tables and columns with minor differences. Run an SQL from a v83 source, find the differences as they occur (console errors), done. Much less work.

  13. #13
    Account Upgraded | Title Enabled! oxysoft is offline
    MemberRank
    Nov 2008 Join Date
    Canada, QCLocation
    1,400Posts

    Re: v90 Source/Repack Request.

    sql

    for some reasons, the SQL got overwritten or some shit in the original zip file and I never noticed
    Last edited by oxysoft; 26-10-13 at 04:58 PM.

  14. #14
    Member TsukiRoot is offline
    MemberRank
    Jan 2013 Join Date
    In your closet.Location
    54Posts

    Re: v90 Source/Repack Request.

    Quote Originally Posted by oxysoft View Post
    sql

    for some reasons, the SQL got overwritten or some shit in the original zip file and I never noticed
    Thanks!

    Even though I can't get the source working as you deleted your CustomQuest java code in the source.
    So I guess I'll just stick with v83.

  15. #15
    Account Upgraded | Title Enabled! Syre is offline
    MemberRank
    Jan 2013 Join Date
    700Posts

    Re: v90 Source/Repack Request.

    Downgrade lithium. b pr0

  16. #16
    Valued Member sGrands is offline
    MemberRank
    Sep 2013 Join Date
    104Posts

    Re: v90 Source/Repack Request.

    Quote Originally Posted by Syre View Post
    Downgrade lithium. b pr0
    Or instead use a v55 source :D

  17. #17
    Member DoorBell is offline
    MemberRank
    May 2012 Join Date
    97Posts

    Re: v90 Source/Repack Request.

    there is a lot outside

  18. #18
    Valued Member sGrands is offline
    MemberRank
    Sep 2013 Join Date
    104Posts

    Re: v90 Source/Repack Request.

    Quote Originally Posted by DoorBell View Post
    there is a lot outside
    .............. He has already stated he saw the sources however they were missing SQL, etc............. Therefore your post is utterly useless.



Advertisement