Welcome Guest ( Log In | Register )



 
Reply to this topicStart new topic
> Runuo Programming
chaosx2x
post Jul 1 2005, 03:21 PM
Post #1


Advanced Member
Group Icon

Group: Members
Posts: 109
Joined: 14-March 05
Member No.: 3,046



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 -. -
Go to the top of the page
 
+Quote Post
Trojan
post Jul 4 2005, 02:04 PM
Post #2


Member [ Level 1 ]
Group Icon

Group: Members
Posts: 39
Joined: 12-June 05
From: Anywhere you can be on the web.
Member No.: 6,112



Never have I seen these programs before. As such I can't help you. But most likely driver error.
Go to the top of the page
 
+Quote Post
QBRADQ
post Aug 12 2005, 02:46 AM
Post #3


Member [ Level 1 ]
Group Icon

Group: Members
Posts: 30
Joined: 12-August 05
Member No.: 7,787



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 biggrin.gif

[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
Go to the top of the page
 
+Quote Post
iGuest
post Aug 18 2008, 02:24 PM
Post #4


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



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
Go to the top of the page
 
+Quote Post
iGuest
post Aug 18 2008, 02:27 PM
Post #5


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



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
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Games Programming(30)
  2. Infinite Game Space(3)
  3. What Language Is Best For Game Programming?(27)
  4. Black Art Of Java Game Programming(0)
  5. What Are Some Good Game Programming Books ?(3)
  6. Help A Beginner Start On With Game Programming(8)
  7. C++ Game Programming Books For Beginners?(5)
  8. Good Java Game Programming Book(0)
  9. Recomend A Graphics Programming Book(1)


 



- Lo-Fi Version Time is now: 5th December 2008 - 12:00 PM