Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
33
Scripts/Services/18th Anniversary/Giver.cs
Normal file
33
Scripts/Services/18th Anniversary/Giver.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Misc
|
||||
{
|
||||
public class AnniversaryGiver18th : GiftGiver
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
GiftGiving.Register(new AnniversaryGiver18th());
|
||||
}
|
||||
|
||||
public override DateTime Start { get { return new DateTime(2016, 4, 08); } }
|
||||
public override DateTime Finish { get { return new DateTime(2016, 12, 31); } }
|
||||
public override TimeSpan MinimumAge { get { return TimeSpan.FromHours(12); } }
|
||||
|
||||
public override void GiveGift(Mobile mob)
|
||||
{
|
||||
Bag bag = new AnniversaryBag18th(mob);
|
||||
|
||||
switch (GiveGift(mob, bag))
|
||||
{
|
||||
case GiftResult.Backpack:
|
||||
mob.SendLocalizedMessage(1156142); // Happy 18th Anniversary! We have placed a gift for you in your backpack.
|
||||
break;
|
||||
case GiftResult.BankBox:
|
||||
mob.SendLocalizedMessage(1156143); // Happy 18th Anniversary! We have placed a gift for you in your bank box.
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user