{"id":22055366,"url":"https://github.com/sogladev/mod-deathroll-aio","last_synced_at":"2025-03-23T16:14:40.935Z","repository":{"id":249681582,"uuid":"832229040","full_name":"sogladev/mod-deathroll-aio","owner":"sogladev","description":"module that implements Deathroll with ElunaLUA and AIO, compatible for AzerothCore, ElunaTrinityWotlk","archived":false,"fork":false,"pushed_at":"2024-07-31T23:55:06.000Z","size":146,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-28T22:20:17.467Z","etag":null,"topics":["azerothcore-lua","lua-scripts","trinitycore-lua"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sogladev.png","metadata":{"files":{"readme":".github/README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"sogla","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"custom":null}},"created_at":"2024-07-22T15:22:45.000Z","updated_at":"2024-11-27T05:30:30.000Z","dependencies_parsed_at":"2024-08-01T03:06:49.173Z","dependency_job_id":null,"html_url":"https://github.com/sogladev/mod-deathroll-aio","commit_stats":null,"previous_names":["sogladev/mod-deathroll-aio"],"tags_count":5,"template":false,"template_full_name":"azerothcore/skeleton-module","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sogladev%2Fmod-deathroll-aio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sogladev%2Fmod-deathroll-aio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sogladev%2Fmod-deathroll-aio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sogladev%2Fmod-deathroll-aio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sogladev","download_url":"https://codeload.github.com/sogladev/mod-deathroll-aio/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245128130,"owners_count":20565206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azerothcore-lua","lua-scripts","trinitycore-lua"],"created_at":"2024-11-30T16:06:44.829Z","updated_at":"2025-03-23T16:14:40.906Z","avatar_url":"https://github.com/sogladev.png","language":"Lua","funding_links":["https://ko-fi.com/sogla"],"categories":[],"sub_categories":[],"readme":"# Module Deathroll\n\nThis is a module compatible for [AzerothCore](http://www.azerothcore.org), [ElunaTrinityWotlk](https://github.com/ElunaLuaEngine/ElunaTrinityWotlk) that implements Deathroll with ElunaLUA and AIO\n\n## Features\n- challenge other player to a deathroll\n- set bet in gold\n- set start roll\n- mode to roll to the death\n- no need to be grouped\n- timeout after a set amount, refund players or award winner\n- database persistence\n- automatically awards winning player, if winnings are too large then gold is send through ingame mail\n\nui:\n\n![deathroll_ui](https://github.com/user-attachments/assets/1fbe1299-3366-45fc-87c5-6b194272fa46)\n\n\nto the death example:\n\nhttps://github.com/user-attachments/assets/50a748df-52c2-429a-90e5-02596d377733\n\n\nchallenge and to the death example: https://www.youtube.com/watch?v=2YXcdoI8CQ0\n\n## Configuration\n- removeGoldAtStart: enable to take gold from players upon start of the game\n- enableDB: enable database persistence, if removeGoldAtStart is enabled, on restart will refund games that were still in progress\n- customize strings\n- allowToTheDeath: enable/hide skull button\n- set timeouts: how much time is allowed between rolls\n\n## Tested with\nAzerothCore\nElunaTrinityWotlk\n\n## How to play:\n- `.dr` to open the window\n- `.dra` to accept a challenge\n- `.drd` to decline a challenge, challenge can automatically timeout and decline\n- `.drroll` to roll without using the gui\n- `.drrefund` request refund if there was a server issue\n\nTarget another player and click \"Challenge\" or the \"Skull\". Skull will do \"Challenge\" and kill the losing player\n\n## Requirements\nAIO https://github.com/Rochet2/AIO/tree/master\n\n## Database\nIf config enabled, requires a table `deathroll`. This table will be auto generated on launch.\n\nThese will be auto-executed on launch with `ac_eluna` changes based on your config\n\nRecorded data\n\nstores completed and in progress deathrolls\n```\n|id|challengerGUID|targetGUID|wager|status|time|\n|--|--------------|----------|-----|------|----|\n|1|94|70|10000|3|2024-07-24 21:37:43|\n```\n\n## License\n\n[LICENSE](./../LICENSE)\n\n## How to create your own module\n\n1. Use the script `create_module.sh` located in [`modules/`](https://github.com/azerothcore/azerothcore-wotlk/tree/master/modules) to start quickly with all the files you need and your git repo configured correctly (heavily recommended).\n1. You can then use these scripts to start your project: https://github.com/azerothcore/azerothcore-boilerplates\n1. Do not hesitate to compare with some of our newer/bigger/famous modules.\n1. Edit the `README.md` and other files (`include.sh` etc...) to fit your module. Note: the README is automatically created from `README_example.md` when you use the script `create_module.sh`.\n1. Publish your module to our [catalogue](https://github.com/azerothcore/modules-catalogue).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsogladev%2Fmod-deathroll-aio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsogladev%2Fmod-deathroll-aio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsogladev%2Fmod-deathroll-aio/lists"}