Need some help badly

Results 1 to 7 of 7
  1. #1
    Apprentice princemast is offline
    MemberRank
    Jan 2012 Join Date
    5Posts

    Need some help badly

    I need some help i started making a fiesta private server an i'm at a point where i don't no what to do. i need to no what do i have to change in this note.



    #DEFINE WORLD_NAME
    <INTEGER> ; World No
    <STRING> ; Name
    <STRING> ; Data path
    #ENDDEFINE

    #DEFINE SERVER_INFO ; Listen socket information
    <STRING> ; Name
    <INTEGER> ; Server ID
    <INTEGER> ; Server World No
    <INTEGER> ; Server Zone No
    <INTEGER> ; From Server ID
    <STRING> ; IP Address == '' then Use my IP Address
    <INTEGER> ; Port Number
    <INTEGER> ; Backlog Count == 0 then Use SOMAXCONN
    <INTEGER> ; Maximum of accept socket
    #ENDDEFINE

    #DEFINE ODBC_INFO
    <STRING> ; DB Name
    <INTEGER> ; DB ID
    <INTEGER> ; World No
    <STRING> ; ODBC Connection info
    <STRING> ; DB Startup command
    #ENDDEFINE

    ;-----------------------------------------------------------------------------------
    ; Server ID
    ;-----------------------------------------------------------------------------------

    ; 0 SERVER_ID_DB_ACCOUNT
    ; 1 SERVER_ID_DB_ACCOUNTLOG
    ; 2 SERVER_ID_DB_CHARACTER
    ; 3 SERVER_ID_DB_GAMELOG

    ; 4 SERVER_ID_LOGIN
    ; 5 SERVER_ID_WORLDMANAGER
    ; 6 SERVER_ID_ZONE

    ; 7 SERVER_ID_PATCH
    ; 8 SERVER_ID_OPTOOL
    ; 9 SERVER_ID_WEB
    ; 10 SERVER_ID_UNKNOWN

    ; 19 SERVER_ID_LAUNCHER
    ; 20 SERVER_ID_CLIENT

    ;-----------------------------------------------------------------------------------
    ; DB ID
    ;-----------------------------------------------------------------------------------

    ;define DB_ID_ACCOUNT 0
    ;define DB_ID_ACCOUNTLOG 1
    ;define DB_ID_STATICSTICS 2
    ;define DB_ID_OPTOOL_LOG 3
    ;define DB_ID_CHARACTER 10
    ;define DB_ID_GAMELOG 11

    ;-----------------------------------------------------------------------------------
    ; DEFINE WORLD NAME
    ;-----------------------------------------------------------------------------------

    WORLD_NAME 0, "Beta-Server", "../_CONF/Data"

    ;-----------------------------------------------------------------------------------
    ; CJC SERVER INFO
    ;-----------------------------------------------------------------------------------

    ;
    ; [ID] = Server ID, [W] = World No, [Z] = Zone No, [F] = From Server ID
    ;
    ; [Name] [ID, W, Z, F] [IP] [Port] [Backlog] [Maximum of accept socket]
    ;
    ; DB Login server ------------------------------------------------------------
    SERVER_INFO "PG_Account_DB", 0, 0, 0, 0, "0.0.0.0", 9000, 1, 100 ; From ALL
    SERVER_INFO "PG_AccountLog_DB", 1, 0, 0, 0, "0.0.0.0", 9005, 1, 100 ; From ALL

    SERVER_INFO "PG_Login_Server", 4, 0, 0,20, "0.0.0.0", 9010, 10, 2000 ; From Client
    SERVER_INFO "PG_Login_Server", 4, 0, 0, 5, "0.0.0.0", 9015, 1, 50 ; From World manager
    SERVER_INFO "PG_Login_Server", 4, 0, 0, 8, "0.0.0.0", 9016, 1, 30 ; From OPTOOL

    ; World #0 -------------------------------------------------------------------
    SERVER_INFO "PG_Char_DB", 2, 0, 0, 0, "0.0.0.0", 9100, 1, 100 ; From ALL
    SERVER_INFO "PG_GameLog_DB", 3, 0, 0, 0, "0.0.0.0", 9101, 1, 100 ; From ALL

    SERVER_INFO "PG_World_Manager_Server", 5, 0, 0,20, "0.0.0.0", 9110, 10, 2000 ; From Client
    SERVER_INFO "PG_World_Manager_Server", 5, 0, 0, 6, "0.0.0.0", 9115, 1, 100 ; From Zone
    SERVER_INFO "PG_World_Manager_Server", 5, 0, 0, 8, "0.0.0.0", 9116, 1, 30 ; From OPTOOL

    SERVER_INFO "PG_Zone_00", 6, 0, 0,20, "0.0.0.0", 9120, 10, 2000 ; From Client
    SERVER_INFO "PG_Zone_00", 6, 0, 0, 8, "0.0.0.0", 9121, 1, 30 ; From OPTOOL

    SERVER_INFO "PG_Zone_01", 6, 0, 1,20, "0.0.0.0", 9122, 10, 2000 ; From Client
    SERVER_INFO "PG_Zone_01", 6, 0, 1, 8, "0.0.0.0", 9123, 1, 30 ; From OPTOOL

    SERVER_INFO "PG_Zone_02", 6, 0, 2,20, "0.0.0.0", 9124, 10, 2000 ; From Client
    SERVER_INFO "PG_Zone_02", 6, 0, 2, 8, "0.0.0.0", 9125, 1, 30 ; From OPTOOL


    ;-----------------------------------------------------------------------------------
    ; ODBC INFO
    ;-----------------------------------------------------------------------------------
    ; NAME nDBID nWorldNoConnection INFO Startup Command
    ODBC_INFO "Account", 0, 0, "DSN=Account; UID=sa; PWD=12345", "USE Account; SET LOCK_TIMEOUT 5000"
    ODBC_INFO "AccountLog", 1, 0, "DSN=AccountLog;UID=sa; PWD=12345", "USE AccountLog; SET LOCK_TIMEOUT 5000"
    ODBC_INFO "Statistics", 2, 0, "DSN=Statistics;UID=sa; PWD=12345", "USE StatisticsData; SET LOCK_TIMEOUT 5000"
    ODBC_INFO "OPTool", 3, 0, "DSN=OPTool; UID=sa; PWD=12345", "USE OperatorTool; SET LOCK_TIMEOUT 5000"
    ODBC_INFO "Character", 10, 0, "DSN=Character; UID=sa; PWD=12345", "USE World00_Character; SET LOCK_TIMEOUT 5000"
    ODBC_INFO "GameLog", 11, 0, "DSN=GameLog; UID=sa; PWD=12345", "USE World00_GameLog; SET LOCK_TIMEOUT 5000"

    #END



    any type of help will be good :)

    get me at skype : princewalcott


  2. #2
    Success and nothing less Manova is offline
    MemberRank
    Nov 2011 Join Date
    936Posts

    Re: Need some help badly

    Google around for a fiesta server guide. If you come back empty handed, I'll help you out. :)

  3. #3
    Apprentice princemast is offline
    MemberRank
    Jan 2012 Join Date
    5Posts

    Re: Need some help badly

    thats the thing i'm not sure what to google

  4. #4
    cats addicted Zorno is offline
    MemberRank
    Apr 2010 Join Date
    GermanyLocation
    1,465Posts

    Re: Need some help badly

    All you need to change are those ip adresses. ( The 0.0.0.0 ones to the ip of your machine )
    Some will say you need to change the password but you dont.

  5. #5
    Apprentice princemast is offline
    MemberRank
    Jan 2012 Join Date
    5Posts

    Re: Need some help badly

    thanks alot :)

  6. #6
    Apprentice princemast is offline
    MemberRank
    Jan 2012 Join Date
    5Posts

    Re: Need some help badly

    Ok thanks to Zorno i got pass that hard part in setup, but now i have new problem.

    I got to log in the game i made an account killed some slimes but i would like to no how to use GM tools 0_0 can any one help out here.

  7. #7
    cats addicted Zorno is offline
    MemberRank
    Apr 2010 Join Date
    GermanyLocation
    1,465Posts

    Re: Need some help badly

    Quote Originally Posted by princemast View Post
    Ok thanks to Zorno i got pass that hard part in setup, but now i have new problem.

    I got to log in the game i made an account killed some slimes but i would like to no how to use GM tools 0_0 can any one help out here.
    GM Tools are not working. Just make yourself GM ( Adminlevel in characters database ) and use the commands ( http://forum.ragezone.com/f591/gm-commands-815669/ )



Advertisement