Hello guys,

i just tested this script Arya's auction system and i got one error:

Errors:
+ Customs / Auction System arya / Auction System / AuctionItem.cs:
CS1061: Line 436: 'Server.Items.TreasureMap' does not contain a definition for 'ChestMap' and no method of exte
Nsion 'ChestMap' accepting a first argument of type 'Server.Items.TreasureMap' was found (a directive using o
U Is an assembly reference missing?)
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.

can someone help plz.

ps: the file of script is attached
 

Attachments

  • Auction System arya.rar
    64.9 KB · Views: 22
Last edited:
best way is to comment out the map thing i had to do the same (kinda lazy way out lol) but to get it working till i or someone else can update it properly that is the easiest way
 
heya man,

i did that already but is kinda annoying, because this idea not solve the problem, so hope someone will update the script very soon :)
 
Last edited:
nvm guys just fixed the problem, thank you anyway, just need to replace:

#region Treasure Map

TreasureMap tm = item as TreasureMap;
sb.AppendFormat(AuctionSystem.ST[168], tm.ChestMap);

#endregion


with


#region Treasure Map

TreasureMap tm = item as TreasureMap;
sb.AppendFormat(AuctionSystem.ST[168], tm.Map);

#endregion



than the problem will solve.
 
Last edited:
Back