--Too much Lua, not enough:
function human_contact_init(e)
spoken_to_human_in_last_24_hours = 0
end
function human_contact_main(e)
if spoken_to_human_in_last_24_hours == 0 then
Prompt("What the heck are you doing?!!!")
else
Prompt("Well done! Enjoy!")
end
if I GET A GRIP ON REALITY then
spoken_to_human_in_last_24_hours = 1
else
spoken_to_human_in_last_24_hours = 0
end
end
Anyone know how to fix this?
Julian