Jump to content
xisto Community
Sign in to follow this  
chaosx2x

Runuo Programming

Recommended Posts

there is someone that know programming on runuo and ultima online? I was trying to make so that he could himself be created account through web but the script that I have for the game server (that he update the account stored in database and synchronize them with the database) gives an error to me: ( if someone is even than it helps me, it says to me that it does not find the data origin (i think the database that i specified) given that I have specified: ( perhaps mistake driver -. -

Share this post


Link to post
Share on other sites

Wow, it has been SO long since I messed with RunUO. It's a great program, but strickly against Origin's TOS. However, some of the best LAN parties I ever hosted involved a RunUO server, skill and stat gates, and lots of bloodshed.I really do wish I could help you with your problem, but alas, I cannot. Perhaps you should check out the RunUO forums. Last time I was there it was a hoppin' place.If not, you could try the EasyUO forums. It's a scripted input program for UO, but there are a lot of coders lurking around there that have a lot of experiance with RunUO.BTW, if you do see this reply, could you e-mail me with the IP of your server, or perhaps your URL? I'd love to stomp around for a while :D[EDIT]Oh, hey, I forgot to mention that you should check to make sure your server name, database name, table name, and all that is correct. Also check your function calls and make sure that your select and query calls are referancing the correct database connection.QBRADQ

Share this post


Link to post
Share on other sites

Doubt in C# program

Runuo Programming

 

Write a program to calculate the factorial of the number entered by a user.Create program by using static functions and static variables.

Hint:- The limit of users input should be 1-20.

 

Using System;

Using System.Collections.Generic;

Using System.Text;

 

Namespace Exercise_3

{

public class Fact

{

static int f;

public static int factorial(int and)

{

f = and;

int I;

for (I = and - 1; I >= 1; I--)

{

f = f * I;

}

return f;

}

 

}

class TestFactorial

{

static void Main(string[] args)

{

int I;

for(I=1;I<=2;I++)

{

Console.Write("Enter the number: ");

int num = Convert.ToInt16(Console.ReadLine());

 

Fact.Factorial(num);

}

Console.ReadLine();

}

}

}

Need the program to be executed successfully.

 

-reply by zeta

Share this post


Link to post
Share on other sites

Doubt in C# program

Runuo Programming

 

Write a program to calculate the factorial of the number entered by a user. Create this program by using static functions and static variables.

Hint:-The limit of users input shoul be 1-20

 

Using System;

Using System.Collections.Generic;

Using System.Text;

 

Namespace Exercise_3

{

public class Fact

{

static int f;

public static int factorial(int and)

{

f = and;

int I;

for (I = and - 1; I >= 1; I--)

{

f = f * I;

}

return f;

}

 

}

class TestFactorial

{

static void Main(string[] args)

{

int I;

for(I=1;I<=2;I++)

{

Console.Write("Enter the number: ");

int num = Convert.ToInt16(Console.ReadLine());

 

Fact.Factorial(num);

}

Console.ReadLine();

}

}

}

 

 

-question by zeta

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.