Quote:
Originally Posted by asmodeus812
This zRohan Item Mall is not full here. There are some databases missing from this zip file! So in order to run that you need the DB with items(and god knows what else is not there) which is probably a MySQL DB !
|
Quote:
Originally Posted by PenguinJoe
for those that really want to make the shared zrohan im work, you are going to have to make your own database tables. It works with both a private mysql database and at one private mssql database as well as the standard Rohan game tables (i.e. RohanMall).
Look in the sqlmall.php file. There will be all kinds of select, update and create statements in there. Your task is to :
1. Find out which statement affects which database.
2. Look at each statement and figure out what tables it works with and create those tables.
3. Look at each statement and figure out what columns are needed in each table to satisfy that sql statement. Create them.
4. Look at the kind of data each column is expected to work with and set the column types of your tables accordingly.
If you want to make that script work, you are going to have to work at it for yourself. If you don't know sql well enough to know what an INSERT, SELECT or UPDATE statement does, study up on it.
A challenge: Nothing says you HAVE to use two different DBMS systems. There is no reason at all why a creative PHP/SQL developer can't move all the MySQL databases in the MS-SQL database. You just need to look at the code and understand what it is doing.
Reverse engineering folks. That is the name of the game if you want to develop Rohan game servers.
|
<---- THIS ---->
Just a Hint: If i were you I would build something from scratch . To Rebuild a new IM + Exchange Market personaly i will need somewhere between 3~5 days of normal everyday work ! Its much easier when you do it yourself and much more satisfying.
Looking for tables, columns names and etc is pain in the ass , besides you never know what else is missing from those files. It could be 1 file, and it can screw everything up !