mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-21 12:19:15 +12:00
Add birthday tokens lol
This commit is contained in:
parent
efdd02214e
commit
37c4c679a3
6 changed files with 79 additions and 6 deletions
|
@ -68,6 +68,7 @@ namespace HISP.Game.Items
|
|||
public static int WishingCoin;
|
||||
public static int FishingPole;
|
||||
public static int Earthworm;
|
||||
public static int BirthdayToken;
|
||||
|
||||
public static ItemInformation[] GetAllWishableItems()
|
||||
{
|
||||
|
|
|
@ -186,6 +186,7 @@ namespace HISP.Game
|
|||
public string TypeFlag;
|
||||
}
|
||||
public static Time ServerTime = new Time();
|
||||
public static int StartDate;
|
||||
|
||||
public static List<Waypoint> Waypoints = new List<Waypoint>();
|
||||
public static List<Isle> Isles = new List<Isle>();
|
||||
|
@ -221,7 +222,9 @@ namespace HISP.Game
|
|||
ServerTime.PreciseMinutes = Database.GetServerTime();
|
||||
ServerTime.Days = Database.GetServerDay();
|
||||
ServerTime.Years = Database.GetServerYear();
|
||||
StartDate = Database.GetServerStartTime();
|
||||
Logger.InfoPrint("It is " + ServerTime.Minutes / 60 + ":" + ServerTime.Minutes % 60 + " on Day " + ServerTime.Days + " in Year " + ServerTime.Years + "!!!");
|
||||
|
||||
}
|
||||
|
||||
public static bool InZone(int x, int y)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue