View Single Post
Old 05-18-2009, 04:35 AM   #13 (permalink)
Hawkins
Forum Novice
 
Join Date: Aug 2003
Location: Hong Kong
Posts: 574
Send a message via ICQ to Hawkins
Default

Quote:
Originally Posted by rusmixx View Post
Error

Code:
Errors:
 + Mobiles/VendorManager.cs:
    CS0117: Line 2535: 'Server.Mobiles.BaseCreature' does not contain a definiti
on for 'Allured'
Yep, that's something from Erica. It might not be in the SVN itself, but rather in either MalGanis' ML or somehow Callandor2k's RunUO package, off which my development is based.

So in case you don't the have "Allured" defined, you may make the following change in VendorManager.cs, line 2535,

from:
PHP Code:
if ( pet.Deleted || pet.IsDeadPet || pet.Summoned || pet.Allured || !pet.Controlled || !( pet.ControlMaster == from ) )
    return; 
and change to:
PHP Code:
if ( pet.Deleted || pet.IsDeadPet || pet.Summoned || !pet.Controlled || !( pet.ControlMaster == from ) )
    return; 
that is, with "|| pet.Allured" removed from the line.
Hawkins is offline   Reply With Quote