- ServUO Version
- Publish Unknown
- Ultima Expansion
- Endless Journey
I know this should be sooooo easy..IF you are on THIS quest...I can't give you this quest...
I am doing a renew of the Book of Truth but do not want to run into the 1 turn in and 10 turn in.
I am doing a renew of the Book of Truth but do not want to run into the 1 turn in and 10 turn in.
Code:
{
if ( Owner.InProgress( quest.GetType( VeracitysPleaQuest ) ) )
{
Owner.SendLocalizedMessage( 1077455 ); // Thou hast already begun collecting books for someone else.
return false;
}
if ( quest.GetType( VeritaesPleaQuest ) != InProgress );
{
Owner.SendLocalizedMessage( 1077455 ); // Thou hast already begun collecting books for someone else.
return false;
}
return true;
}
public override bool CanOffer()
{
return Owner.Quests( !InProgress( VeracitysPleaQuest || VeritaesPleaQuest ) )
}
*/
[{/end]