Celestine Posted December 27, 2022 Posted December 27, 2022 (edited) Description This simple library demonstrates how one may integrate Discord's rich presence to their application (e.g. for game Lineage 2). Discord setup 1.navigate to Discord Developer Portal - Application i. if you've already created Discord app => open it there & skip other steps in this section ii. otherwise create new discord application: a. press New Application in the bottom right corner of the page b. set some Name for your application (TestAppDemo in the preview). E.g. server name/website like soverygoodserver.org c. read & agree to their terms, press Create d. you'll be redirected to your new Discord app 2. open OAuth2 -> General: i. inside Redirects section press Add Redirect ii. fill new field with http://127.0.0.1 iii. press Save Changes in the bottom half of the page 3. open Rich Presence -> Art Assets (you may skip this step in case you don't need any pics for your application): i. press Add Image(s) & select some image(s) (minimum image resolution is 512x512) you wish to use for your application ii. set some name(s) for your image(s) iii. press Save Changes in the bottom half of the page iv. THERE'S A CATCH: due to caching on the Discord's servers your image(s) may disappear (e.g. if you refresh this page). Don't panic and try to add them again, it's okay. Wait for a while (~5 mins) and they'll appear on their own 4. now you are ready to go Library setup 1. clone this repo 2. open Visual Studio 2022 (v143 toolset; Win 10.0+ SDK) solution L2DiscordPresence.sln 3. open L2DiscordPresence/main.cpp i. set APP_ID to your Discord's application ID, which you may find in Discord Developer Portal - Application ii. customize acitivity message in function updateActivity (you may comment out Assets and Timestamps sections if you don't want to display them): a. look at the preview in the description b. TestAppDemo = name of your Discord application c. very details = first row of text (activity.details) d. such state = second row of text (activity.state) e. big pic = name of the Art Asset from your Discord application (assets.large_image) f. hover text for big pic = some additional text when you hover cursor over it (assets.large_text) g. small pic = name of the Art Asset from your Discord application (assets.small_image) h. hover text for small pic = some additional text when you hover cursor over it (assets.small_text) 4. build project L2DiscordPresence with Release configuration for x86 platform 5. grab built L2DiscordPresence.dll (from $(OutDir), e.g. bin/VS_L2DiscordPresence_Release-Win32) with its dependency discord_game_sdk.dll (used v3.2.1 from Discord Developer Portal - Docs) 6. inject/import L2DiscordPresence.dll somehow to the target application i. if you have access to source code of the target application - simply link this dll & call Anchor somewhere ii. in case you don't (e.g. for game Lineage 2) - it's up to you how you manage to do it 7. launch Discord app, then launch the target application & you should see customized activity message "Playing a game" i. you have to be online in Discord ii. Display currenct activity as a status message in Settings -> Activity Privacy -> Activity Status should be enabled In this repo for game Lineage 2 (tested on Essence 362p) you may find modified ogg.dll which imports Anchor function from L2DiscordPresence.dll, thus triggering DllMain. So you can copy ogg.dll, L2DiscordPresence.dll and discord_game_sdk.dll to your client's system folder (replace ogg.dll) and that's it. Source: Source Author: zikdoz Edited January 10, 2023 by Vision 2 4 Quote
911reg Posted December 27, 2022 Posted December 27, 2022 (edited) been looking for this for a while great share edit: it's working perfectly fine Edited December 28, 2022 by 911reg 1 Quote
Celestine Posted December 28, 2022 Author Posted December 28, 2022 22 hours ago, 911reg said: been looking for this for a while great share Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.