[OsRose(Evo)] Server Setup Guide

Page 2 of 37 FirstFirst 1234567891012 ... LastLast
Results 16 to 30 of 550
  1. #16
    bankai Zaraki Kenpachi is offline
    MemberRank
    Aug 2006 Join Date
    Soul SocietyLocation
    1,283Posts

    Re: [OsRose(Evo)] Server Setup Guide

    wonderful (:

  2. #17
    Apprentice meruR1 is offline
    MemberRank
    Nov 2009 Join Date
    5Posts

    Re: [OsRose(Evo)] Server Setup Guide

    Quote Originally Posted by Purpleyouko View Post
    NPCs are loaded from SQL table list_npc

    Did you load that into your database?
    if you are talking about navicat lite> mysql> tables> list_npcs or list_npcs_special

    i did it but aint working..

    what i did: [aint sure if its right thou]
    i went to navicat lite> roseon> tables
    then copied list_npcs and list_npcs_special
    then pasted it at navicat lite> mysql> tables

  3. #18
    Last of the OsRose Devs Purpleyouko is offline
    MemberRank
    Oct 2006 Join Date
    Missouri USALocation
    2,161Posts

    Re: [OsRose(Evo)] Server Setup Guide

    Quote Originally Posted by meruR1 View Post
    if you are talking about navicat lite> mysql> tables> list_npcs or list_npcs_special

    i did it but aint working..

    what i did: [aint sure if its right thou]
    i went to navicat lite> roseon> tables
    then copied list_npcs and list_npcs_special
    then pasted it at navicat lite> mysql> tables
    list_npcs.sql is a QUERY file
    A Query is a set of instructions for your database manager (navicat) to create a database table
    you can't just paste it into place.
    You have to "run" it as a query.

    personally I absolutely hate navicat and never use it.
    If you use Xampp as you web server then it already contains a database manager called phpmyadmin. All you have to do is copy the phpmyadmin folder into the htdocs folder then use a browser to go to localhost\phpmyadmin and you can import and export sql files so easily.

  4. #19
    Account Upgraded | Title Enabled! mirage99 is offline
    MemberRank
    Sep 2006 Join Date
    Fremont,CaLocation
    209Posts

    Re: [OsRose(Evo)] Server Setup Guide

    Can someone re post the Server Files Ver. 81 please, the link doesn't seem to be working

  5. #20
    Gamma GeNyaa is offline
    MemberRank
    Apr 2007 Join Date
    The NetherlandsLocation
    2,586Posts

    Re: [OsRose(Evo)] Server Setup Guide

    They are working...
    If I click the link it's still up and running...
    Just try it again ;)
    It works fine.

  6. #21
    Account Upgraded | Title Enabled! mirage99 is offline
    MemberRank
    Sep 2006 Join Date
    Fremont,CaLocation
    209Posts

    Re: [OsRose(Evo)] Server Setup Guide

    for some reason my firefox and my ie is not letting me download from those url links. Can you be kind to post some mirrors up please ?

  7. #22
    Gamma GeNyaa is offline
    MemberRank
    Apr 2007 Join Date
    The NetherlandsLocation
    2,586Posts

    Re: [OsRose(Evo)] Server Setup Guide

    I will reupload them when I get on my Server PC ;)
    That will be in the evening (Dutch Time)

  8. #23
    Apprentice meruR1 is offline
    MemberRank
    Nov 2009 Join Date
    5Posts

    Re: [OsRose(Evo)] Server Setup Guide

    Quote Originally Posted by Purpleyouko View Post
    list_npcs.sql is a QUERY file
    A Query is a set of instructions for your database manager (navicat) to create a database table
    you can't just paste it into place.
    You have to "run" it as a query.

    personally I absolutely hate navicat and never use it.
    If you use Xampp as you web server then it already contains a database manager called phpmyadmin. All you have to do is copy the phpmyadmin folder into the htdocs folder then use a browser to go to localhost\phpmyadmin and you can import and export sql files so easily.
    sorry if im buggin you but i still got some errors..
    in phpmyadmin
    i tried to run in query list_npcs and list_npcs_special
    but when i do an error says

    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`id``name``type``map``dir``x``y``dialogid``eventid``tempdialogid` LIMIT 0, 30' at line 1
    before going back here i tried to google search for this prob but none of them helped me ... i also tried to look for something
    in mysql folder.. but i didnt have much progress..

    now, npcs still arent working..

  9. #24
    Gamma GeNyaa is offline
    MemberRank
    Apr 2007 Join Date
    The NetherlandsLocation
    2,586Posts

    Re: [OsRose(Evo)] Server Setup Guide

    list_npcs del that in your database.
    And do what u did before ;)

  10. #25
    Last of the OsRose Devs Purpleyouko is offline
    MemberRank
    Oct 2006 Join Date
    Missouri USALocation
    2,161Posts

    Re: [OsRose(Evo)] Server Setup Guide

    yup
    My bet is that the SQl doesn't include the command to delete the table if it already exists.

    Try opening the SQL table in a text editor such as notepad++ (you can download this free. just google it)

    at the top of the file you will see this
    Code:
    SET FOREIGN_KEY_CHECKS=0;
    -- ----------------------------
    -- Table structure for list_npcs
    -- ----------------------------
    CREATE TABLE `list_npcs` (
    `id` int(11) NOT NULL auto_increment,
    `name` varchar(255) NOT NULL,
    `type` int(11) NOT NULL,
    `map` int(11) NOT NULL,
    `dir` float NOT NULL,
    `x` float NOT NULL,
     `y` float NOT NULL,
     `dialogid` int(11) NOT NULL default '0',
     `eventid` int(11) NOT NULL default '0',
     `tempdialogid` int(11) NOT NULL default '0',
     PRIMARY KEY  (`id`)
    ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
    INSERT INTO `list_npcs` VALUES (0, '[Livestock Farmer] Lampa', 1016, 1, 173.934, 5109.42, 5363.68, 116,0,0);
    followed by a couple of hundred lines of text loading the data into the DB table.

    What you need is this
    Code:
    SET FOREIGN_KEY_CHECKS=0;
    -- ----------------------------
    -- Table structure for list_npcs
    -- ----------------------------
    DROP TABLE IF EXISTS `list_npcs`;
    CREATE TABLE IF NOT EXISTS `list_npcs` (
    `id` int(11) NOT NULL auto_increment,
    `name` varchar(255) NOT NULL,
    `type` int(11) NOT NULL,
    `map` int(11) NOT NULL,
    `dir` float NOT NULL,
    `x` float NOT NULL,
     `y` float NOT NULL,
     `dialogid` int(11) NOT NULL default '0',
     `eventid` int(11) NOT NULL default '0',
     `tempdialogid` int(11) NOT NULL default '0',
     PRIMARY KEY  (`id`)
    ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
    INSERT INTO `list_npcs` VALUES (0, '[Livestock Farmer] Lampa', 1016, 1, 173.934, 5109.42, 5363.68, 116,0,0);
    Making these tiny changes will make the query automatically delete the existing table then create it new.

    OR

    You can manually delete teh table then run the existing query just as Aukemon0NL suggested

  11. #26
    Account Upgraded | Title Enabled! lmame is offline
    MemberRank
    Jun 2007 Join Date
    441Posts

    Re: [OsRose(Evo)] Server Setup Guide

    Yeah we never (well there shouldn't be any) drop the mysql table in our .sql file.
    We do this because a failure is better than just loosing the table and all the data inside (for example accounts, characters, items and so on) as some people just don't backup their data.

  12. #27
    Account Upgraded | Title Enabled! mirage99 is offline
    MemberRank
    Sep 2006 Join Date
    Fremont,CaLocation
    209Posts

    Re: [OsRose(Evo)] Server Setup Guide

    If you reupload your downloads, i am still unable to download them for some reason

  13. #28
    Gamma GeNyaa is offline
    MemberRank
    Apr 2007 Join Date
    The NetherlandsLocation
    2,586Posts

    Re: [OsRose(Evo)] Server Setup Guide

    http://www.hode.nl/rose/rev_81_server_files.zip
    That's the server files...
    If this 1 isn't working.
    I will upload them to Rapishare or something like that :)

  14. #29
    Account Upgraded | Title Enabled! mirage99 is offline
    MemberRank
    Sep 2006 Join Date
    Fremont,CaLocation
    209Posts

    Re: [OsRose(Evo)] Server Setup Guide

    Quote Originally Posted by Aukemon0NL View Post
    http://www.hode.nl/rose/rev_81_server_files.zip
    That's the server files...
    If this 1 isn't working.
    I will upload them to Rapishare or something like that :)
    May i request to have this uploaded to rapidshare or megaupload please

    that link you posted up, is still not working for me.

  15. #30
    Account Upgraded | Title Enabled! mirage99 is offline
    MemberRank
    Sep 2006 Join Date
    Fremont,CaLocation
    209Posts

    Re: [OsRose(Evo)] Server Setup Guide

    Were you able to upload some of your links to some mirrors. If your busy with other stuff, I can wait.



Page 2 of 37 FirstFirst 1234567891012 ... LastLast

Advertisement