!7 cmodule MathBot1 > DynPrintLogAndEnabled { switchable S _user; switchable S _botToken; new Gazelle_GrabPostsLoop grabLoop; start-thread { dm_copyFieldsToObject(grabLoop, "_user", "_botToken", "enabled"); grabLoop.verbose = true; grabLoop.onChange(r change); grabLoop.handlePost = post -> { temp enter(); print("Have post: " + sfu(post)); gazelle_mathBot1_handlePost_2(_user, _botToken, post); }; grabLoop.run(); } }