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!

Auction System

Merlin*

Super Newb Moderator
Arya said:
I would really appreciate if this conversation stopped, thank you. I doubt anyone modified the script to allow staff to bid, and considering how busy I am these days, I'm not going to do it myself. I'm sorry, but I'm afraid you'll need to do it on your own.

Please respect Arys's wishes here.


ShinjiKatsuro said:
Well all the admins get pissy when I ask if theres a way to edit the code. They pounce on members whenever they get the chance, and its wrong.


Please take this up with me in pm or IRC
 
I only got 1 error..

Code:
 - Error: Scripts\Customs Folder\Auction\Auction System\Items\MobileStatuette.cs
: CS0117: (line 140, column 27) 'Server.Mobiles.AnimalTrainer' does not contain
a definition for 'GetMaxStabled'
 

Arya

Wanderer
Copy that method from a default RunUO distro and place it in the AnimalTamer class I guess. I'm not really sure what else that package does though.
 

Talion

Wanderer
Plz HELP !!!

- Error: Scripts\Custom\Auction\AuctionItem.cs: CS0246: (line 5, column 7) The
type or namespace name 'Ultima' could not be found (are you missing a using dire
ctive or an assembly reference?)
- Error: Scripts\Custom\Auction\AuctionItem.cs: CS0246: (line 215, column 18) T
he type or namespace name 'StringList' could not be found (are you missing a usi
ng directive or an assembly reference?)

what to do?
 

ssalter

Account Terminated
Talion: You need the Ultima.dll file. It probably was part of the package. If not, it is easy to find by Google-ing. Put it in your main Runuo root.
 

ivnexcel

Wanderer
Crashed

Hey guys,
Ayra I love your script, it is amazing. However, I was playing with it and tried to use Razor to automate my labor (i was playing an alchemist). Well when I tried to play back the macro it crashed the server.

Here are the server logs:

Code:
Server Crash Report
===================

RunUO Version 1.0.0, Build 36918
Operating System: Microsoft Windows NT 5.2.3790.0
.NET Framework: 1.1.4322.2032
Time: 4/9/2005 8:14:26 AM
Mobiles: 11895
Items: 108417
Clients:
- Count: 1
+ 68.58.199.00: (account = myplayer) (mobile = 0x2E0 'Potter')

Exception:
System.IndexOutOfRangeException: Index was outside the bounds of the array.
   at Arya.Auction.NewAuctionGump.OnResponse(NetState sender, RelayInfo info)
   at Server.Network.PacketHandlers.DisplayGumpResponse(NetState state, PacketReader pvSrc)
   at Server.Network.MessagePump.HandleReceive(NetState ns)
   at Server.Network.MessagePump.Slice()
   at Server.Core.Main(String[] args)

Thanks again Ayra.
 

Lokigom92

Wanderer
simple question

Just a simple question folks...my players have commented that there is no way for them to end or cancel their own auction, or to even change the starting bid if they made a mistake. Is there a way for them to do this that I am missing or do I have to script it in myself?
 

arul

Sorceror
You can buy bonded pets through the auction system.
Here is a clue:

AuctionItem.cs
Code:
                // Line 1189
		Pet.ControlTarget = null;
		Pet.ControlOrder = OrderType.Stay;
		Pet.Internalize();

                [COLOR=Red]Pet.IsBonded = false;[/COLOR]
                [COLOR=Red]Pet.BondingBegin = DateTime.MinValue;[/COLOR]

                Pet.SetControlMaster( null );
		Pet.SummonMaster = null;
 

Joeku

Lord
Code:
 - Error: Scripts\New Scripts\Systems\Auction\AuctionItem.cs: CS0246: (line 5, c
olumn 7) The type or namespace name 'Ultima' could not be found (are you missing
 a using directive or an assembly reference?)
 - Error: Scripts\New Scripts\Systems\Auction\AuctionItem.cs: CS0246: (line 215,
 column 18) The type or namespace name 'StringList' could not be found (are you
missing a using directive or an assembly reference?)
using System;
using System.Collections;
using System.IO;
using System.Text.RegularExpressions;
using Ultima;
using System.Text;
using Server;
using Server.Network;
using Server.Accounting;
if ( bw.DamageLevel != WeaponDamageLevel.Regular )
What's wrong?
 

Alari

Wanderer
Did you add Ultima.dll to your Data\Assemblies.cfg file and copy Ultima.dll to your RunUO root directory?
 

Joeku

Lord
Hey that might be a smart thing to do... sorry I didn't look in previous posts in the thread, I would have had it solved without having to post. Oh well, thank you!
 

Swerve_jnr

Wanderer
when i done this i started up my shard and got this error:

Code:
 - Error: : CS0006: (line 0, column 0) Metadata file 'System.Ultima.dll' could n
ot be found

i did put a copy off ultima.dll in my root runuo folder and this is what i changed my asseblies to:

Code:
System.dll
System.Web.dll
System.Xml.dll
System.Data.dll
System.Drawing.dll
System.Windows.Forms.dll
System.Ultima.dll


so whats wrong?


Edit: don't worry i got it working
 
Top