diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm
index 91123c0c7f..35cf9f9440 100644
--- a/code/modules/mob/dead/new_player/new_player.dm
+++ b/code/modules/mob/dead/new_player/new_player.dm
@@ -16,6 +16,9 @@
//Used to make sure someone doesn't get spammed with messages if they're ineligible for roles
var/ineligible_for_roles = FALSE
+ //is there a result we want to read from the age gate
+ var/age_gate_result
+
/mob/dead/new_player/Initialize()
if(client && SSticker.state == GAME_STATE_STARTUP)
var/obj/screen/splash/S = new(client, TRUE, TRUE)
@@ -78,6 +81,43 @@
popup.set_content(output)
popup.open(FALSE)
+/mob/dead/new_player/proc/age_gate()
+ var/list/dat = list("
")
+ dat += "Enter your date of birth here, to confirm that you are over 18.
"
+ dat += "Your date of birth is not saved, only the fact that you are over/under 18 is.
"
+ dat += ""
+
+ dat += ""
+
+ winshow(src, "age_gate", TRUE)
+ var/datum/browser/popup = new(src, "age_gate", "Age Gate
", 400, 250)
+ popup.set_content(dat.Join())
+ popup.open(FALSE)
+ onclose(src, "age_gate")
+
+ while(age_gate_result == null)
+ stoplag(1)
+
+ popup.close()
+
+ return age_gate_result
+
/mob/dead/new_player/proc/age_verify()
if(CONFIG_GET(flag/age_verification) && !check_rights_for(client, R_ADMIN) && !(client.ckey in GLOB.bunker_passthrough)) //make sure they are verified
if(!client.set_db_player_flags())
@@ -86,10 +126,12 @@
else
var/dbflags = client.prefs.db_flags
if(dbflags & DB_FLAG_AGE_CONFIRMATION_INCOMPLETE) //they have not completed age gate
- var/age_verification = askuser(src, "Are you 18+", "Age Gate", "I am 18+", "I am not 18+", null, TRUE, null)
+ var/age_verification = age_gate()
if(age_verification != 1)
client.add_system_note("Automated-Age-Gate", "Failed automatic age gate process")
- qdel(client) //kick the user
+ //ban them and kick them
+ AddBan(client.ckey, client.computer_id, "SYSTEM BAN - Inputted date during join verification was under 18 years of age. Contact administration on discord for verification.", "SYSTEM", FALSE, null, client.address)
+ qdel(client)
return FALSE
else
//they claim to be of age, so allow them to continue and update their flags
@@ -107,6 +149,45 @@
if(!client)
return 0
+ //don't let people get to this unless they are specifically not verified
+ if(href_list["Month"] && (CONFIG_GET(flag/age_verification) && !check_rights_for(client, R_ADMIN) && !(client.ckey in GLOB.bunker_passthrough)))
+ var/player_month = text2num(href_list["Month"])
+ var/player_year = text2num(href_list["Year"])
+
+ var/current_time = world.realtime
+ var/current_month = text2num(time2text(current_time, "MM"))
+ var/current_year = text2num(time2text(current_time, "YYYY"))
+
+ var/player_total_months = (player_year * 12) + player_month
+
+ var/current_total_months = (current_year * 12) + current_month
+
+ var/months_in_eighteen_years = 18 * 12
+
+ var/month_difference = current_total_months - player_total_months
+ if(month_difference > months_in_eighteen_years)
+ age_gate_result = TRUE // they're fine
+ else
+ if(month_difference < months_in_eighteen_years)
+ age_gate_result = FALSE
+ else
+ //they could be 17 or 18 depending on the /day/ they were born in
+ var/current_day = text2num(time2text(current_time, "DD"))
+ var/days_in_months = list(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31)
+ if((player_year % 4) == 0) // leap year so february actually has 29 days
+ days_in_months[2] = 29
+ var/total_days_in_player_month = days_in_months[player_month]
+ var/list/days = list()
+ for(var/number in 1 to total_days_in_player_month)
+ days += number
+ var/player_day = input(src, "What day of the month were you born in.") as anything in days
+ if(player_day <= current_day)
+ //their birthday has passed
+ age_gate_result = TRUE
+ else
+ //it has NOT been their 18th birthday yet
+ age_gate_result = FALSE
+
if(!age_verify())
return