Go Back   RunUO - Ultima Online Emulation > RunUO > New Join Forum

New Join Forum So your new to RunUO and looking to work with people that are new, this is the place.

Reply
 
Thread Tools Display Modes
Old 01-15-2007, 01:55 PM   #1 (permalink)
Forum Newbie
 
Join Date: Jan 2007
Posts: 8
Default Errors in starting Runuo 2.0

Hello, good friends.
I cannot even create adminstrative account in Runuo due to an error like below;

Errors :
+ Mobiles/PlayerMobile.cs :
CS1002: Line 3180: ; expected
CS1002: Line 3181: ; expected
CS1002: Line 3184: ; expected
CS1528: Line 3185: ; Expected ; or = <cannot specify constructor arguments in declaration>

Please tell me what I should do !!
monandol is offline   Reply With Quote
Old 01-15-2007, 01:58 PM   #2 (permalink)
Forum Expert
 
Nott32's Avatar
 
Join Date: Feb 2006
Location: In front of my computer...
Age: 17
Posts: 562
Send a message via MSN to Nott32 Send a message via Yahoo to Nott32
Default

Are you using the SVN or RC1?
__________________
Everytime a puppy gets hit by a car from me smoking I take another drag, point, and laugh.
Nott32 is offline   Reply With Quote
Old 01-15-2007, 02:01 PM   #3 (permalink)
Forum Newbie
 
Join Date: Jan 2007
Posts: 8
Default Yes, I downloaded Runuo 2.0 RC1.

Quote:
Originally Posted by Nott32 View Post
Are you using the SVN or RC1?
Yes, I do.
monandol is offline   Reply With Quote
Old 01-15-2007, 02:02 PM   #4 (permalink)
Forum Expert
 
Nott32's Avatar
 
Join Date: Feb 2006
Location: In front of my computer...
Age: 17
Posts: 562
Send a message via MSN to Nott32 Send a message via Yahoo to Nott32
Default

Send me the file ill correct the errors if I can....
__________________
Everytime a puppy gets hit by a car from me smoking I take another drag, point, and laugh.
Nott32 is offline   Reply With Quote
Old 01-15-2007, 02:03 PM   #5 (permalink)
Forum Expert
 
wieganka's Avatar
 
Join Date: Oct 2004
Location: Chesterton, IN
Age: 29
Posts: 288
Default

Quote:
Originally Posted by monandol View Post
Hello, good friends.
I cannot even create adminstrative account in Runuo due to an error like below;

Errors :
+ Mobiles/PlayerMobile.cs :
CS1002: Line 3180: ; expected
CS1002: Line 3181: ; expected
CS1002: Line 3184: ; expected
CS1528: Line 3185: ; Expected ; or = <cannot specify constructor arguments in declaration>

Please tell me what I should do !!

Open up PlayerMobile.cs. Look at lines 3180, 3181, 3184, and 3185....they seem to be missing the required semicolon end-of-line token necessary in the C# programming language....you need to add them in where they belong.

If you want, paste in lines 3170 to 3190 or so, so that we can take a look.
wieganka is offline   Reply With Quote
Old 01-15-2007, 02:05 PM   #6 (permalink)
Forum Newbie
 
Join Date: Jan 2007
Posts: 8
Default By what?

By e-mail or....


Thanks.
monandol is offline   Reply With Quote
Old 01-15-2007, 02:05 PM   #7 (permalink)
Forum Expert
 
Nott32's Avatar
 
Join Date: Feb 2006
Location: In front of my computer...
Age: 17
Posts: 562
Send a message via MSN to Nott32 Send a message via Yahoo to Nott32
Default

Email Works...
__________________
Everytime a puppy gets hit by a car from me smoking I take another drag, point, and laugh.
Nott32 is offline   Reply With Quote
Old 01-15-2007, 02:09 PM   #8 (permalink)
Forum Newbie
 
Join Date: Jan 2007
Posts: 8
Default Here comes the file !

Thanks.................
Attached Files
File Type: cs PlayerMobile.cs (97.3 KB, 8 views)
monandol is offline   Reply With Quote
Old 01-15-2007, 02:14 PM   #9 (permalink)
Forum Expert
 
Nott32's Avatar
 
Join Date: Feb 2006
Location: In front of my computer...
Age: 17
Posts: 562
Send a message via MSN to Nott32 Send a message via Yahoo to Nott32
Default

This is the code that needs to be fixed....It completey stumps me why it wants a ";" on line 3181....I just relized also that this computer dosnt have Visual C# anyone have any ideas?
Code:
if ( storeID == -1 ) 
****		{
********		storeID = hair ? HairItemID : FacialHairItemID;
********		storeHue = hair ? HairHue : FacialHairHue;
****		}
****		CreateHair( hair, id, 0 );
		}
EDIT: the **** is VBulliten doing that -_-
__________________
Everytime a puppy gets hit by a car from me smoking I take another drag, point, and laugh.
Nott32 is offline   Reply With Quote
Old 01-15-2007, 02:19 PM   #10 (permalink)
Forum Expert
 
mordero's Avatar
 
Join Date: Nov 2003
Location: Illinois, USA
Age: 22
Posts: 2,911
Default

Quote:
Originally Posted by Nott32 View Post
This is the code that needs to be fixed....It completey stumps me why it wants a ";" on line 3181....I just relized also that this computer dosnt have Visual C# anyone have any ideas?
Code:
if ( storeID == -1 ) 
****        {
********        storeID = hair ? HairItemID : FacialHairItemID;
********        storeHue = hair ? HairHue : FacialHairHue;
****        }
****        CreateHair( hair, id, 0 );
        }
EDIT: the **** is VBulliten doing that -_-
Ive seen that before on a playermobile.cs when I was helping someone out on here and he said that he didnt put it there, I wonder what is causing it.

Edit: lol just saw your edit, so why is it putting them there?
mordero is offline   Reply With Quote
Old 01-15-2007, 02:20 PM   #11 (permalink)
Forum Expert
 
Nott32's Avatar
 
Join Date: Feb 2006
Location: In front of my computer...
Age: 17
Posts: 562
Send a message via MSN to Nott32 Send a message via Yahoo to Nott32
Default

Trying to keep the text aligned.......
__________________
Everytime a puppy gets hit by a car from me smoking I take another drag, point, and laugh.
Nott32 is offline   Reply With Quote
Old 01-15-2007, 02:23 PM   #12 (permalink)
Forum Expert
 
mordero's Avatar
 
Join Date: Nov 2003
Location: Illinois, USA
Age: 22
Posts: 2,911
Default

hmmm weird cause it only happens at that spot..
mordero is offline   Reply With Quote
Old 01-15-2007, 06:49 PM   #13 (permalink)
Forum Expert
 
wieganka's Avatar
 
Join Date: Oct 2004
Location: Chesterton, IN
Age: 29
Posts: 288
Default

Really strange...that is the exact code that's on my server, and it compiles fine.

Hrm. *stumped*.

Do you have the latest SVN?
May I also suggest downloading Visual C# Express, and seeing if using the IDE will help sort out the error?
wieganka is offline   Reply With Quote
Old 01-15-2007, 06:56 PM   #14 (permalink)
Forum Newbie
 
Join Date: Jan 2007
Posts: 8
Default

I have to say that I don't know anything about programming. However, thanks guys.
monandol is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5