You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// matching for this: and <wants to|will> pass the <HouseType> to <TransferReceiver> for <TransferPrice> gold
65
+
housePassingRegex=regexp.MustCompile(`and (wants to|will) pass the (house|guildhall) to (.*) for ([0-9]+) gold`)
66
+
// matching for this: <OwnerSex> will move out on <MovingDate> (
67
+
moveOutRegex=regexp.MustCompile(`(He|She) will move out on (.*?) \(`)
68
+
// matching for this: The <HouseType> has been rented by <Owner>. <OwnerSex> has paid the rent until <PaidUntil>.
69
+
paidUntilRegex=regexp.MustCompile(`The (house|guildhall) has been rented by (.*). (He|She) has paid.*until (.*?)\.`)
70
+
houseAuctionedRegex=regexp.MustCompile(`The (house|guildhall) is currently.*The auction (will end|has ended) at (.*)\. The.*is ([0-9]+) gold.*submitted by (.*)\.`)
casestrings.Contains(HouseData.Status.Original, "is currently being auctioned"):
142
147
// auctioned
143
148
HouseData.Status.IsAuctioned=true
144
-
145
149
// check if bid is going on
146
150
if!strings.Contains(HouseData.Status.Original, "No bid has been submitted so far.") {
147
-
regex2:=regexp.MustCompile(`The (house|guildhall) is currently.*The auction (will end|has ended) at (.*)\. The.*is ([0-9]+) gold.*submitted by (.*)\.`)
0 commit comments