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!

Full instructions for myrunuo (02/13/04)

Zebit

Wanderer
I have a strange type of error with paperdoll.aspx.
If my players are private I can see the paperdoll. If they are public, I get the red X. I tried to debug it and it says that the line,
Code:
Bitmap bodyImage = Ultima.Gumps.GetGump( female ? 13 : 12 ); // Body graphic
is trying to access to a path that do not exist on my PC.
I can't find out wich path is, anyone can help me?
I followed all the instruction on the pdf and read all posts about MyRunUO, with no results.
 

Zulu

Wanderer
Zebit said:
I have a strange type of error with paperdoll.aspx.
If my players are private I can see the paperdoll. If they are public, I get the red X. I tried to debug it and it says that the line,
Code:
Bitmap bodyImage = Ultima.Gumps.GetGump( female ? 13 : 12 ); // Body graphic
is trying to access to a path that do not exist on my PC.
I can't find out wich path is, anyone can help me?
I followed all the instruction on the pdf and read all posts about MyRunUO, with no results.

You need to make sure the asp.net has access to your uo directory. You might have to uninstall UO, delete old UO directory. Re-install and give asp.net access.

on my pdf instructions, read page 6.
 

jaynigs

Wanderer
No need to reinstall, best way is to do this..

Start pc in safe mode and remove all ownership of your uo directory, then add your admin account and aspnet as owners. Then share the ultima online directory under sharing and security..

Works every time..
 

Zebit

Wanderer
This suggestions seem not to work, is it possible that I have to install the 2D version? I installed the 3D only.
 

Zulu

Wanderer
I have posted an update to myrunuo. This version supports RunUO-1.0-RC0.

I have also created tables for mysql and ms sql server.

In the config.asp, paperdoll.aspx and Config.cs file, now has support for mysql and sql server.

See the first message to download the new version. Please post any comments or problems on this thread.
 

Zulu

Wanderer
Zebit said:
This suggestions seem not to work, is it possible that I have to install the 2D version? I installed the 3D only.


Yes, there is a few imports files that are missing from the 3D version.
 

Thrain

Wanderer
how do u change the port number your system connects through i have mysql server on port 35000 and canot use the normal one, i tried using for eks. address:35000 and didnt work any tips?
 

Zulu

Wanderer
Thrain said:
how do u change the port number your system connects through i have mysql server on port 35000 and canot use the normal one, i tried using for eks. address:35000 and didnt work any tips?

I have just updated the myrunuo system that supports ports. You will have to redoownload the system.
 

Tz'arken

Wanderer
Whenever i try to enter myrunuo_guilds.sql into my sql database i get this error:

Code:
mysql> CREATE TABLE myrunuo_guilds (
    -> guild_id varchar(3) UNSIGNED,
    -> guild_name VARCHAR(150),
    -> guild_abbreviation VARCHAR(4),
    -> guild_website VARCHAR(150),
    -> guild_charter VARCHAR(250),
    -> guild_type VARCHAR(8),
    -> guild_wars Int(3) UNSIGNED,
    -> guild_members Int(3) UNSIGNED,
    -> guild_master Int(12) UNSIGNED );
ERROR 1064: You have an error in your SQL syntax.  Check the manual that corresp
onds to your MySQL server version for the right syntax to use near 'UNSIGNED,
guild_name VARCHAR(150),
guild_abbreviation VARCHAR

All the other files work perfect, so im just a little confused on this, wondering if I did something wrong.
 

jaynigs

Wanderer
Zulu said:
there is a problem with that hue. either your server *.mul files are not up-to-date as the client files or the player has an 'illegal color'

Well the hue number that produces that graphic glitch on my shard is

33826 (0x8422)

this isnt an illegal hue... :eek:

Maybe could be some other problem?
 

jaynigs

Wanderer
Tz'arken said:
Whenever i try to enter myrunuo_guilds.sql into my sql database i get this error:

Code:
mysql> CREATE TABLE myrunuo_guilds (
    -> guild_id varchar(3) UNSIGNED,
    -> guild_name VARCHAR(150),
    -> guild_abbreviation VARCHAR(4),
    -> guild_website VARCHAR(150),
    -> guild_charter VARCHAR(250),
    -> guild_type VARCHAR(8),
    -> guild_wars Int(3) UNSIGNED,
    -> guild_members Int(3) UNSIGNED,
    -> guild_master Int(12) UNSIGNED );
ERROR 1064: You have an error in your SQL syntax.  Check the manual that corresp
onds to your MySQL server version for the right syntax to use near 'UNSIGNED,
guild_name VARCHAR(150),
guild_abbreviation VARCHAR

All the other files work perfect, so im just a little confused on this, wondering if I did something wrong.

Well it should be:


CREATE TABLE myrunuo_guilds (
guild_id Int(12) UNSIGNED,
guild_name VARCHAR(150),
guild_abbreviation VARCHAR(4),
guild_website VARCHAR(150),
guild_charter VARCHAR(250),
guild_type VARCHAR(8),
guild_wars Int(3) UNSIGNED,
guild_members Int(3) UNSIGNED,
guild_master Int(12) UNSIGNED );

so yes you have done something wrong, you used a varchar instead of an int on the guild_id
 

Zulu

Wanderer
try this one.

CREATE TABLE myrunuo_guilds (
guild_id varchar(4),
guild_name VARCHAR(150),
guild_abbreviation VARCHAR(4),
guild_website VARCHAR(150),
guild_charter VARCHAR(250),
guild_type VARCHAR(8),
guild_wars Int(3) UNSIGNED,
guild_members Int(3) UNSIGNED,
guild_master Int(12) UNSIGNED );
 

jevansfl

Wanderer
It looks possible in VB but I havent mastered it yet. Maybe sometime this weekend, got a friend coming over that may be able to help. I dont think it is possible in C# from what I have read.
 
Top