!7 cmodule HomePageVisitors > DynBigNumber { start { setDescription("HOME PAGE VISITORS!"); ownTimer(doEveryAndNow(60000, r actualUpdate)); } void actualUpdate { int oldInt = parseIntOpt(str(value)); S value = or(firstIntAsString(ai1_cookiesToday()), "?"); setValue(value); int newInt = parseIntOpt(str(value)); setModuleName(n2_generic(value, " Visitor") + " on Home Page"); if (oldInt != 0 && newInt > oldInt) vmBus_send('newHomePageVisitors, newInt); } }