RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Newbie Proof Walk Through

psz

Administrator
He would more than likely give you the same advice I will give you:

Wait until the RunUO Dev version is released.
 

belzepub

Wanderer
now the problem is that i cannot contact my SQL server on 'localhost' from SQL nor server.exe everything else seems to be fine....does the SQL server have to be turned on or sumthing i really am sooooooo noob :p
 

belzepub

Wanderer
using System;
using System.Threading;

namespace Server.Engines.MyRunUO
{
public class Config
{
// Is MyRunUO enabled?
public static bool Enabled = true;

// Details required for database connection string
public static string DatabaseDriver =

"{MySQL ODBC 3.51 Driver}";
public static string DatabaseServer =

"localhost";
public static string DatabaseName =

"MyRunUO";
public static string DatabaseUserID =

"root";
public static string DatabasePassword = "yeah";

// Should the database use transactions? This is recommended
public static bool UseTransactions = true;

// Database communication is done in a seperate thread. This

value is the 'priority' of that thread, or, how much CPU it will try to use
public static ThreadPriority DatabaseThreadPriority =

ThreadPriority.BelowNormal;

// Any character with an AccessLevel equal to or higher than

this will not be displayed
public static AccessLevel HiddenAccessLevel =

AccessLevel.Counselor;

// Export character database every 30 minutes
public static TimeSpan CharacterUpdateInterval =

TimeSpan.FromMinutes( 30.0 );

// Export online list database every 5 minutes
public static TimeSpan StatusUpdateInterval =

TimeSpan.FromMinutes( 5.0 );

public static string CompileConnectionString()
{
string connectionString = String.Format(

"DRIVER={0};SERVER={1};DATABASE={2};UID={3};PASSWORD={4};",
DatabaseDriver, DatabaseServer, DatabaseName,

DatabaseUserID, DatabasePassword );

return connectionString;
}
}
}
 

belzepub

Wanderer
i tried it but wont work.........Run Uo seems to accept it after i change
bool connected = false
to
bool connected = true

in RunUO-Beta-36\Scripts\Engines\MyRunUO\databasecommandqueue.cs

what does it really do cause my SQL cant contact the database?
 

doe90

Wanderer
if does connect to the database players can't get to there player or even make one

will that what i think.....
 

bean56

Wanderer
kerrick718 said:
just thought i would bump this back to the top for new people (like myself) to find easily

You shouldn't bump it to the top if it was that good it would be stickied.
 
OK I followed the pdf to the letter, still get red x

the only thing i can find that is odd is that my server is part of a domain and the aspnet user is not on the domain therefore i gave it the local machines aspnet user with full rights to the ultima online 2d folder. Im pretty sure its something to do with the domain, can any one offer any pointers?
 

Quantos

Lord
More than likely by disabling MYRunUO and SQL. They are not necessary for RunUO to work. I would only recommend using them after the development team has included them in the distribution release of RunUO. That however is only my personal opinion.

Hint.

If it's not distribution, it's probably buggy.
 

AlleyKat

Wanderer
ACK... Noob Here

Hellow every1.. trying to run this on my computer, and I am stuck. I am sure it's a simple noob thing to fix, just not sure what it is..

I downloaded the program, went to no-ip.com (I am behind a router) made the changed to the code (switched to true, added in IP addy that the no-ip program gave me)

tried to compile, and it gave me following error:

Error: Scripts\Misc\ServerList.cs: CS1002: (line 23, col 39) ; Expected
Scripts: One or more scripts failed to compile or no scripts were found.
Press return to exit, or R to try again.

checking the code, line 23 is the IP addy, is it not?


Garret
 
Top