1) Delete the world Db u have now...create a new world Db...extract MileStone-0.3.x.rar(you can find thet in the "NCDB.rar\Releases\Milestones\MileStone-0.3.x") extract the Database.rar and execute Database.sql in the world Db.
2) Edit the Tool.bat :
Code:
@ECHO off
REM ############################################################################
REM #
REM # B A S I C U S E R C O N F I G U R A T I O N A R E A
REM #
REM ############################################################################
set user=root
set pass=pass
REM wdb - is the World Database
REM cdb - is the Character Database
REM If you do not have them seperated then set them to the same values
set wdb=world
set cdb=character
REM ############################################################################
REM #
REM # A D V A N C E D U S E R C O N F I G U R A T I O N A R E A
REM #
REM ############################################################################
set port=3306
set server=localhost
set devpath=.\Development\Database
set pubpath=.\Releases
set mysqlpath=.\Development\Database\MYSQL
REM ############################################################################
REM #
REM # D O N O T M O D I F Y B E Y O N D T H I S P O I N T
REM #
REM ############################################################################
if %user% == CHANGEME GOTO id10t
if %pass% == CHANGEME GOTO id10t
:menu
cls
ECHO.
ECHO.
ECHO ####################################
ECHO ####### Next Chapter #######
ECHO ###### Database ######
ECHO ####### Import Tool #######
ECHO ####################################
ECHO.
ECHO Please type the letter for the option:
ECHO.
ECHO Q = Install NCDB World (Quests tables).
ECHO.
ECHO x - Exit
ECHO.
set /p l= Enter Letter:
if %l%==* goto error
if %l%==q goto quest
if %l%==Q goto quest
goto error
:quest
CLS
ECHO.
ECHO.
ECHO [Importing] Started...
ECHO [Importing] Quests tables
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\gameobject_quest_finisher.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\gameobject_quest_starter.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\creature_quest_finisher.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\creature_quest_starter.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\quests.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\gameobject_quest_item_binding.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\gameobject_quest_pickup_binding.sql
ECHO [Importing] Reputation On Kill Tables
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\reputation_creature_onkill.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\reputation_faction_onkill.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\reputation_instance_onkill.sql
ECHO [Importing] PlayerCreateInfo Tables
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\playercreateinfo.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\playercreateinfo_bars.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\playercreateinfo_items.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\playercreateinfo_skills.sql
%mysqlpath%\mysql -h %server% --user=%user% --password=%pass% --port=%port% %wdb% < %devpath%\tables_world\playercreateinfo_spells.sql
ECHO.
just delete what you have in the tool.bat and past this cod.
edit the usre and pass!!!
3) Update the world Db whit the SQL files in you "WowServer/SQL/world/" folder