chaosx2x 0 Report post Posted July 1, 2005 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
Trojan 0 Report post Posted July 4, 2005 Never have I seen these programs before. As such I can't help you. But most likely driver error. Share this post Link to post Share on other sites
QBRADQ 0 Report post Posted August 12, 2005 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 [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
iGuest 3 Report post Posted August 18, 2008 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
iGuest 3 Report post Posted August 18, 2008 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