Phenomenal Posted July 18, 2016 Share Posted July 18, 2016 This is a short guide on how to configure your server and edit things: Config.xml by going to server/resources/config.xml you can open it in notepad or notepad ++ and you can then edit: MOTD Game Name The Port A bunch of server stuff  Intersect.db First download sqlite and then open up server/resources/Intersect.db and you can then edit all the server files by right clicking and choosing modify table and do things such as: Change characters sprites,levels,names,items,exp and most other things Quests Skills Maps Events And most other things in the game Pigot and PhacanuJs 2 Link to comment Share on other sites More sharing options...
Damian666 Posted July 18, 2016 Share Posted July 18, 2016 moved to more appropriate forum Link to comment Share on other sites More sharing options...
Phenomenal Posted July 18, 2016 Author Share Posted July 18, 2016 Thanks @Damian666! Didn't realise there were subforums in the guides bit Link to comment Share on other sites More sharing options...
gaveitatry Posted July 18, 2016 Share Posted July 18, 2016 It means that I wanted to delete my post since it was no longer needed, but I did not know how. I saw someone *SNIP* something before, and I think *SNIP* means that you cut that part out with a pair of scissors like *SNIP SNIP*. I was recommending that this thread be moved, and Damian666 moved it already. Link to comment Share on other sites More sharing options...
Phenomenal Posted July 18, 2016 Author Share Posted July 18, 2016 oh xDÂ Link to comment Share on other sites More sharing options...
Ariel Posted July 26, 2016 Share Posted July 26, 2016 Thanks man. Link to comment Share on other sites More sharing options...
Stx Posted January 15, 2017 Share Posted January 15, 2017 Not fully sure how to use sqlite? Anyone got any advise? Link to comment Share on other sites More sharing options...
Chronos Posted January 15, 2017 Share Posted January 15, 2017 @Essence, What do you need to know exactly? It's basically a miniature Sql database in file format. Â As such you'll likely want to use a browser to look at the data. (e.g. SQLiteBrowser) Â Be aware that most things outside of userdatais stored in blob format, which is basically just a binary dump of the object and simply can't be used without the base class/type. You can still change most data related to users though. Link to comment Share on other sites More sharing options...
Stx Posted January 15, 2017 Share Posted January 15, 2017 5 minutes ago, Chronos said: @Essence, What do you need to know exactly? It's basically a miniature Sql database in file format.  As such you'll likely want to use a browser to look at the data. (e.g. SQLiteBrowser)  Be aware that most things outside of userdatais stored in blob format, which is basically just a binary dump of the object and simply can't be used without the base class/type. You can still change most data related to users though. I have SQLiteBrowser But I'm not sure how to edit information such as player levels etc. Link to comment Share on other sites More sharing options...
Chronos Posted January 15, 2017 Share Posted January 15, 2017 15 minutes ago, Essence said: I have SQLiteBrowser But I'm not sure how to edit information such as player levels etc.  Ah! that's fairly simple, and we can do this two ways.. The query based method, or the manual way. The Query based method assumes you know what your databse columns are named, and are easier for things like bulk actions. The manual way works for novice and expert alike, though might be slower for large edits.  Before you do anything though, open your database with the Open Database button up top. You'll see a few tabs to choose from, we'll start with the Execute SQL tab. This is where you can enter queries to edit or check certain things. I won't bore you with a full laydown on how to use Sql (there's plenty of better resources for that on Google! Though be aware that SQLite only has basic functionality) but a basic query to edit a character's level is as follows: UPDATE characters SET level=2 WHERE name='Chronos' That's it, simple enough right? We're updating the Characters table, and setting the Level column for the character Chronos. To execute this just hit the Run button above the query input.  The second way you could do this is in the Browse Data tab, which looks a bit like this:  As you can see, I've already selected the Characters table, but there's  alot more to explore. To change the level however, all you need to do is find the character who's level you want to edit, click the field and edit it on the panel to the right. Hit Apply and you're good to go!  (Because SQLite is a file based Database you need to hit the Write Changes button up top to commit them to the disk, do be aware that doing this while the server is running might corrupt things as the server might be saving data to the database after you've loaded it which are lost when you save your older version of the loaded database on top of it!)  And that's basically how you can start editing values in your database! Link to comment Share on other sites More sharing options...
Stx Posted January 15, 2017 Share Posted January 15, 2017 7 minutes ago, Chronos said:  Ah! that's fairly simple, and we can do this two ways.. The query based method, or the manual way. The Query based method assumes you know what your databse columns are named, and are easier for things like bulk actions. The manual way works for novice and expert alike, though might be slower for large edits.  Before you do anything though, open your database with the Open Database button up top. You'll see a few tabs to choose from, we'll start with the Execute SQL tab. This is where you can enter queries to edit or check certain things. I won't bore you with a full laydown on how to use Sql (there's plenty of better resources for that on Google! Though be aware that SQLite only has basic functionality) but a basic query to edit a character's level is as follows:  UPDATE characters SET level=2 WHERE name='Chronos'  That's it, simple enough right? We're updating the Characters table, and setting the Level column for the character Chronos.  The second way you could do this is in the Browse Data tab, which looks a bit like this:  As you can see, I've already selected the Characters table, but there's  alot more to explore. To change the level however, all you need to do is find the character who's level you want to edit, click the field and edit it on the panel to the right. Hit Apply and you're good to go!  (Because SQLite is a file based Database you need to hit the Write Changes button up top to commit them to the disk, do be aware that doing this while the server is running might corrupt things as the server might be saving data to the database after you've loaded it which are lost when you save your older version of the loaded database on top of it!)  And that's basically how you can start editing values in your database! Sweet, got it! Cheers. Link to comment Share on other sites More sharing options...
Gallus Posted January 31, 2017 Share Posted January 31, 2017 Editing the server configuration file didn't seem to do anything for me. Unsure if I did it incorrectly, or if I'm missing a step. Link to comment Share on other sites More sharing options...
Miharukun Posted January 31, 2017 Share Posted January 31, 2017 20 minutes ago, Gallus said: Editing the server configuration file didn't seem to do anything for me. Unsure if I did it incorrectly, or if I'm missing a step. For the game name and motd? Link to comment Share on other sites More sharing options...
Gallus Posted January 31, 2017 Share Posted January 31, 2017 4 minutes ago, Miharukun said: For the game name and motd? Â Both actually. I saw no difference when I changed the two. Link to comment Share on other sites More sharing options...
Miharukun Posted January 31, 2017 Share Posted January 31, 2017 7 minutes ago, Gallus said: Â Both actually. I saw no difference when I changed the two. Â Here ya go! Â Link to comment Share on other sites More sharing options...
Gallus Posted January 31, 2017 Share Posted January 31, 2017 15 minutes ago, Miharukun said: Here ya go! Â Â Â Thank you for that! Â But, would you also know how to get rid of this? Â Link to comment Share on other sites More sharing options...
Miharukun Posted January 31, 2017 Share Posted January 31, 2017 8 minutes ago, Gallus said:   Thank you for that!  But, would you also know how to get rid of this?   No idea about that ahaha maybe we need to change it from the source. Link to comment Share on other sites More sharing options...
Chronos Posted January 31, 2017 Share Posted January 31, 2017 @Gallus @Miharukun That should be removed in Beta 3 if they remember to do so. It's a remnant of an old version that have never been removed. Link to comment Share on other sites More sharing options...
Gibier Posted January 31, 2017 Share Posted January 31, 2017 Normally this should be able to change with an edit of config.xml. But this not working, it's the old MOTD who was replace by the event editor. Maybe they forgot to delete it or didn't fix it. Link to comment Share on other sites More sharing options...
Gallus Posted January 31, 2017 Share Posted January 31, 2017 @Chronos  Thank you for the information! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now