ATutor

Learning Management Tools







Pages:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


GameMe Gamification Released


  • 2017-01-11 18:29:39

    GameMe Gamification Released

    The first release of GameMe in now available. GameMe is an ATutor Gamification Module. Use the default game elements it offers, or customize course specific game elements like events, levels, badges, alerts, and a leaderboard, to tailor gamification to each course.

    See the release notice on GitHub for details
    http://github.com/atutor/gameme/releases/tag/gameme_1_0

  • 2017-09-11 06:29:41

    Re: GameMe Gamification Released

    Please, how can I reset the table of points made by participants in a course that has been completed?

    Situation: I have established 6 levels, with their respective badges and points, for a course that has had 22 students. I've set up the leaderboard to show the top 20 scores.

    The course has ended, students have been disenrolled from the list of participants but the table of positions continues to show the scores but if the student ID.

    I need to: delete the records of students who are no longer participating in the course and who have been removed from the list of enrollees, if possible without altering the points and badges that are receiving new students.

    Thank you

    Mario

  • 2017-09-11 18:37:38

    Re: GameMe Gamification Released

    There isn't an easy way to do what you describe. This version of Gameme is more suited for courses that start with a new course shell each semester.

    To create a new shell, make a backup of your current course (Manage>Backups), go to My Courses and create a new course, choosing the backup you just created in the restore from backup area.

    Or, depending on how may students you need to remove, you may be able remove them manually from the database. Scores are in the gm_user_scores table. You could search/delete by user id and course id from a tool like phpMyAdmin, or run some SQL.

    For SQL, make a backup of the table, then run something like:

    [green]SELECT * FROM AT_gm_user_scores WHERE id_user = 23 AND course_id = 7[/green]

    If the data returned looks right for deletion, run

    [green]DELETE FROM AT_gm_user_scores WHERE id_user = 23 AND course_id = 7[/green]

    Maybe there is someone out there who could add a new feature for this.

  • 2017-09-12 08:10:01

    Re: GameMe Gamification Released

    Thank you very much. The procedure for manually removing records from the database has been successful.

    Best Regards,

    Mario